diff options
author | Björn Gustavsson <[email protected]> | 2013-02-07 13:15:15 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2013-02-07 13:15:15 +0100 |
commit | f7eed05cb052fd479efaa7607118bf74b523ec33 (patch) | |
tree | 72b8ec5e4ae350b52fb58c75613b0d19ab7611e7 /lib/asn1/test/asn1_SUITE.erl | |
parent | 2ec63b31743a177446884ed12736607d3fbea1ef (diff) | |
parent | d45c6b727da8db7664d2cc08a16ef8ca68fe46df (diff) | |
download | otp-f7eed05cb052fd479efaa7607118bf74b523ec33.tar.gz otp-f7eed05cb052fd479efaa7607118bf74b523ec33.tar.bz2 otp-f7eed05cb052fd479efaa7607118bf74b523ec33.zip |
Merge branch 'maint'
* maint:
Prepare release
Don't run testX420/1 on old slow Sparc systems
testX420: Pass Options to the ASN.1 compiler
asn1_erl_nif: Correct broken length encoding
asn1_SUITE: Mend broken test_modified_x420/1
Revert "Prepare release"
Conflicts:
lib/asn1/doc/src/notes.xml
lib/asn1/test/asn1_SUITE.erl
Diffstat (limited to 'lib/asn1/test/asn1_SUITE.erl')
-rw-r--r-- | lib/asn1/test/asn1_SUITE.erl | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/lib/asn1/test/asn1_SUITE.erl b/lib/asn1/test/asn1_SUITE.erl index 644cba8c3c..be9b82cddf 100644 --- a/lib/asn1/test/asn1_SUITE.erl +++ b/lib/asn1/test/asn1_SUITE.erl @@ -1043,17 +1043,24 @@ testDoubleEllipses(Config, Rule, Opts) -> testDoubleEllipses:main(Rule). test_modified_x420(Config) -> + test(Config, fun test_modified_x420/3, [ber]). +test_modified_x420(Config, Rule, Opts) -> Files = [filename:join(modified_x420, F) || F <- ["PKCS7", "InformationFramework", "AuthenticationFramework"]], - asn1_test_lib:compile_all(Files, Config, [der]), - test_modified_x420:test_io(Config). + asn1_test_lib:compile_all(Files, Config, [Rule,der|Opts]), + test_modified_x420:test(Config). testX420() -> [{timetrap,{minutes,90}}]. testX420(Config) -> - test(Config, fun testX420/3, [ber]). + case erlang:system_info(system_architecture) of + "sparc-sun-solaris2.10" -> + {skip,"Too slow for an old Sparc"}; + _ -> + test(Config, fun testX420/3, [ber]) + end. testX420(Config, Rule, Opts) -> testX420:compile(Rule, [der|Opts], Config), ok = testX420:ticket7759(Rule, Config), |