diff options
author | Adam Lindberg <[email protected]> | 2012-02-06 11:57:35 +0100 |
---|---|---|
committer | Adam Lindberg <[email protected]> | 2012-02-28 14:59:32 +0100 |
commit | 659fcc5ebd03b72a4081bf0853538800ddf16f86 (patch) | |
tree | 4353be135a4cd2e718d5a918cf3e06cd5c925743 /lib/asn1/test/test_undecoded_rest.erl | |
parent | aa4e27ebac9eb287069fab859fe5dcdab82c75bf (diff) | |
download | otp-659fcc5ebd03b72a4081bf0853538800ddf16f86.tar.gz otp-659fcc5ebd03b72a4081bf0853538800ddf16f86.tar.bz2 otp-659fcc5ebd03b72a4081bf0853538800ddf16f86.zip |
[asn1] Parallelize test suites
Diffstat (limited to 'lib/asn1/test/test_undecoded_rest.erl')
-rw-r--r-- | lib/asn1/test/test_undecoded_rest.erl | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/lib/asn1/test/test_undecoded_rest.erl b/lib/asn1/test/test_undecoded_rest.erl index 277bad3a0a..0c248a840a 100644 --- a/lib/asn1/test/test_undecoded_rest.erl +++ b/lib/asn1/test/test_undecoded_rest.erl @@ -19,25 +19,16 @@ %% -module(test_undecoded_rest). --export([compile/3,test/2]). +-export([test/2]). -include_lib("test_server/include/test_server.hrl"). %% testing OTP-5104 -compile(Config,Rules,Opt) -> - - ?line DataDir = ?config(data_dir,Config), - ?line OutDir = ?config(priv_dir,Config), - ?line true = code:add_patha(?config(priv_dir,Config)), - - ?line ok = asn1ct:compile(DataDir ++ "P-Record",[Rules,{outdir,OutDir}]++Opt). - - test(Opt, Config) -> ?line {ok,Msg} = asn1ct:value('P-Record','PersonnelRecord', - [{i, ?config(priv_dir, Config)}]), + [{i, ?config(case_dir, Config)}]), ?line {ok,Bytes} = asn1_wrapper:encode('P-Record','PersonnelRecord',Msg), Bytes2 = fun(B) when is_list(B) -> |