diff options
author | Björn Gustavsson <[email protected]> | 2013-04-02 08:13:32 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2013-04-03 16:38:31 +0200 |
commit | 45e356fb7b5d381a6e3c9ec83bf20fe9cefe8e4b (patch) | |
tree | a99935a0f4177b4871eed258d8d5ce44354f1c58 /lib/asn1/test/asn1_SUITE.erl | |
parent | 98bad864871eada14c948d27be9998bed36e2f50 (diff) | |
download | otp-45e356fb7b5d381a6e3c9ec83bf20fe9cefe8e4b.tar.gz otp-45e356fb7b5d381a6e3c9ec83bf20fe9cefe8e4b.tar.bz2 otp-45e356fb7b5d381a6e3c9ec83bf20fe9cefe8e4b.zip |
Don't lose the extension mark for object set parameters
When an object set is an actual parameter, the extension marker
for the object set could get lost.
Diffstat (limited to 'lib/asn1/test/asn1_SUITE.erl')
-rw-r--r-- | lib/asn1/test/asn1_SUITE.erl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/asn1/test/asn1_SUITE.erl b/lib/asn1/test/asn1_SUITE.erl index 12569273bd..be3a6c52c2 100644 --- a/lib/asn1/test/asn1_SUITE.erl +++ b/lib/asn1/test/asn1_SUITE.erl @@ -812,8 +812,9 @@ testInfObjectClass(Config, Rule, Opts) -> testParameterizedInfObj(Config) -> test(Config, fun testParameterizedInfObj/3). testParameterizedInfObj(Config, Rule, Opts) -> - asn1_test_lib:compile("Param", Config, [Rule|Opts]), - testParameterizedInfObj:main(Rule). + Files = ["Param","Param2"], + asn1_test_lib:compile_all(Files, Config, [Rule|Opts]), + testParameterizedInfObj:main(Config, Rule). testMergeCompile(Config) -> test(Config, fun testMergeCompile/3). testMergeCompile(Config, Rule, Opts) -> |