aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2013-02-06 13:12:19 +0100
committerBjörn Gustavsson <[email protected]>2013-02-06 13:12:19 +0100
commit24522845d50866782a939f3c8fbafa99e70d9f44 (patch)
tree0cbe73380fc1fdb055e082339ea9832a81026c2c /lib
parente7cc9b2e81128632d3cd0a1d357527b7f5faa5f8 (diff)
downloadotp-24522845d50866782a939f3c8fbafa99e70d9f44.tar.gz
otp-24522845d50866782a939f3c8fbafa99e70d9f44.tar.bz2
otp-24522845d50866782a939f3c8fbafa99e70d9f44.zip
testX420: Pass Options to the ASN.1 compiler
When the caller passed the 'der' option, it was ignored.
Diffstat (limited to 'lib')
-rw-r--r--lib/asn1/test/testX420.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asn1/test/testX420.erl b/lib/asn1/test/testX420.erl
index abdbbfe536..b222b15204 100644
--- a/lib/asn1/test/testX420.erl
+++ b/lib/asn1/test/testX420.erl
@@ -37,7 +37,7 @@ compile_loop(Erule, [Spec|Specs], Options, Config)
when Erule == ber; Erule == ber_bin; Erule == ber_bin_v2; Erule == per ->
CaseDir = ?config(case_dir, Config),
asn1_test_lib:compile(filename:join([x420, Spec]), Config,
- [Erule, {i, CaseDir}]),
+ [Erule, {i, CaseDir} | Options]),
compile_loop(Erule, Specs, Options, Config);
compile_loop(_Erule, _Specs, _Options, _Config) ->
ok.