diff options
author | Björn Gustavsson <[email protected]> | 2013-09-05 06:03:27 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2013-09-18 10:22:29 +0200 |
commit | 5598cb640c11078692a1b221ab4950e395e622e0 (patch) | |
tree | 691922811203dd87db3a1a934c85fe8e3c713d38 /lib/asn1/test/asn1_SUITE.erl | |
parent | 589a9ed126d205007e79c22053d1b156a383d99f (diff) | |
download | otp-5598cb640c11078692a1b221ab4950e395e622e0.tar.gz otp-5598cb640c11078692a1b221ab4950e395e622e0.tar.bz2 otp-5598cb640c11078692a1b221ab4950e395e622e0.zip |
asn1_SUITE: Remove useless test_driver_load/1 test case
The PER back-end no longer use a driver (or even a NIF),
and the test case would not fail if it didn't work because the
spawned processed were not linked.
Diffstat (limited to 'lib/asn1/test/asn1_SUITE.erl')
-rw-r--r-- | lib/asn1/test/asn1_SUITE.erl | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/asn1/test/asn1_SUITE.erl b/lib/asn1/test/asn1_SUITE.erl index 9a149a495a..a86c58582f 100644 --- a/lib/asn1/test/asn1_SUITE.erl +++ b/lib/asn1/test/asn1_SUITE.erl @@ -70,7 +70,6 @@ groups() -> {group, ber}, % Uses 'P-Record', 'Constraints', 'MEDIA-GATEWAY-CONTROL'... {group, [], [parse, - test_driver_load, test_undecoded_rest, specialized_decodes, special_decode_performance, @@ -972,13 +971,6 @@ special_decode_performance(Config, Rule, Opts) -> asn1_test_lib:compile_all(Files, Config, [Rule, asn1config|Opts]), test_special_decode_performance:go(all). - -test_driver_load(Config) -> - test(Config, fun test_driver_load/3, [per]). -test_driver_load(Config, Rule, Opts) -> - asn1_test_lib:compile("P-Record", Config, [Rule|Opts]), - test_driver_load:test(5). - test_ParamTypeInfObj(Config) -> asn1_test_lib:compile("IN-CS-1-Datatypes", Config, [ber]). |