diff options
author | Gustav Simonsson <[email protected]> | 2012-02-14 17:47:27 +0100 |
---|---|---|
committer | Gustav Simonsson <[email protected]> | 2012-02-14 17:47:27 +0100 |
commit | da3d4c3bc803a8697c2e35c95d05417ac39ad497 (patch) | |
tree | a4cf14cf0a8eb972aff1c597d0fd6e8fbc014f80 /lib | |
parent | c8699e75489d99dad8ec9430a621a39030da3659 (diff) | |
download | otp-da3d4c3bc803a8697c2e35c95d05417ac39ad497.tar.gz otp-da3d4c3bc803a8697c2e35c95d05417ac39ad497.tar.bz2 otp-da3d4c3bc803a8697c2e35c95d05417ac39ad497.zip |
Change test to use CT Config PrivDir
Diffstat (limited to 'lib')
-rw-r--r-- | lib/asn1/test/asn1_SUITE.erl.src | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/lib/asn1/test/asn1_SUITE.erl.src b/lib/asn1/test/asn1_SUITE.erl.src index dd24feeda9..3f51b125ec 100644 --- a/lib/asn1/test/asn1_SUITE.erl.src +++ b/lib/asn1/test/asn1_SUITE.erl.src @@ -2370,11 +2370,11 @@ test_modules() -> "LDAP" ]. -test_OTP_9688(_Config) -> +test_OTP_9688(Config) -> Asn1Mod = "OTP-9688.asn1", - Files = [Asn1Mod, "OTP-9688.asn1db", "OTP-9688.beam", "OTP-9688.erl", "OTP-9688.hrl"], - Data = - " + %%DataDir = ?config(data_dir,Config), + PrivDir = ?config(priv_dir,Config), + Data = " OTP-9688 DEFINITIONS ::= BEGIN foo INTEGER ::= 1 @@ -2385,9 +2385,8 @@ OTP-9688 DEFINITIONS ::= BEGIN END ", - file:write_file(Asn1Mod, Data), + File = filename:join(PrivDir,Asn1Mod), + ok = file:write_file(File, Data), %% Does it compile with changes to asn1ct_check and asn1ct_gen_per_rt2ct? %% (see ticket) - ok = asn1ct:compile(Asn1Mod), - [file:delete(File) || File <- Files], - ok.
\ No newline at end of file + ok = asn1ct:compile(File, [{outdir, PrivDir}]). |