diff options
author | Björn Gustavsson <[email protected]> | 2013-09-09 09:42:35 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2013-09-18 10:22:30 +0200 |
commit | ba4c69eea9062e79fb570b8045e1266e05c3f69a (patch) | |
tree | 19f7ae65e892fb115ee97ff077efc4fa05c9ed7f /lib/asn1/test/testChoExternal.erl | |
parent | a37aee55dccc5ea35ef9b5568cff4bd0364f4b1c (diff) | |
download | otp-ba4c69eea9062e79fb570b8045e1266e05c3f69a.tar.gz otp-ba4c69eea9062e79fb570b8045e1266e05c3f69a.tar.bz2 otp-ba4c69eea9062e79fb570b8045e1266e05c3f69a.zip |
Remove unused compile() functions
Diffstat (limited to 'lib/asn1/test/testChoExternal.erl')
-rw-r--r-- | lib/asn1/test/testChoExternal.erl | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/asn1/test/testChoExternal.erl b/lib/asn1/test/testChoExternal.erl index 5fdee48add..f6b7345026 100644 --- a/lib/asn1/test/testChoExternal.erl +++ b/lib/asn1/test/testChoExternal.erl @@ -18,25 +18,11 @@ %% %% -module(testChoExternal). - - --export([compile/3]). -export([external/1]). -include_lib("test_server/include/test_server.hrl"). -include("External.hrl"). - - -compile(Config, Rules, Optimize) -> - DataDir = ?config(data_dir, Config), - CaseDir = ?config(case_dir, Config), - true = code:add_patha(CaseDir), - ok = asn1ct:compile(DataDir ++ "ChoExternal", - [Rules, {outdir, CaseDir}] ++ Optimize). - - - external(_Rules) -> roundtrip('ChoXCho', {boolCho,true}), roundtrip('ChoXCho', {intCho,77}), |