diff options
author | Björn Gustavsson <[email protected]> | 2014-01-21 09:48:18 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2014-01-24 16:24:55 +0100 |
commit | 1658a7fdd1dfa08a4fa2b9c94fb2d07799e15b20 (patch) | |
tree | 7bd12f90ec12368c2b260bbf5302282bcd8f7469 /lib/asn1/test/asn1_SUITE.erl | |
parent | 435322bb05045b2e5b667569162b405996067d08 (diff) | |
download | otp-1658a7fdd1dfa08a4fa2b9c94fb2d07799e15b20.tar.gz otp-1658a7fdd1dfa08a4fa2b9c94fb2d07799e15b20.tar.bz2 otp-1658a7fdd1dfa08a4fa2b9c94fb2d07799e15b20.zip |
asn1 test suite: Modernize testTimer_* and testTimer.erl
Diffstat (limited to 'lib/asn1/test/asn1_SUITE.erl')
-rw-r--r-- | lib/asn1/test/asn1_SUITE.erl | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/asn1/test/asn1_SUITE.erl b/lib/asn1/test/asn1_SUITE.erl index 83bd66a631..2809c8020b 100644 --- a/lib/asn1/test/asn1_SUITE.erl +++ b/lib/asn1/test/asn1_SUITE.erl @@ -1128,21 +1128,21 @@ END ok = asn1ct:compile(File, [{outdir, PrivDir}]). -timer_compile(Config, Rule, Opts) -> +timer_compile(Config, Rule) -> asn1_test_lib:compile_all(["H235-SECURITY-MESSAGES", "H323-MESSAGES"], - Config, [Rule|Opts]). + Config, [no_ok_wrapper,Rule]). testTimer_ber(Config) -> - timer_compile(Config,ber,[]), - testTimer:go(Config,ber). + timer_compile(Config, ber), + testTimer:go(). testTimer_per(Config) -> - timer_compile(Config,per,[]), - testTimer:go(Config,per). + timer_compile(Config, per), + testTimer:go(). testTimer_uper(Config) -> - timer_compile(Config,uper,[]), - {comment,_} = testTimer:go(Config,uper). + timer_compile(Config, uper), + testTimer:go(). %% Test of multiple-line comment, OTP-8043 testComment(suite) -> []; |