diff options
author | Björn Gustavsson <[email protected]> | 2017-11-10 06:26:51 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2017-11-10 06:51:22 +0100 |
commit | 9fc2d48a6de8b95b0d36c4439bff8e59710f4360 (patch) | |
tree | 6b6784b235c1b886c05968c2dead1eff853aeb8c /lib/compiler/test/compile_SUITE.erl | |
parent | 4ab56cf93ca4824d087b10085dec5edf64c8be69 (diff) | |
download | otp-9fc2d48a6de8b95b0d36c4439bff8e59710f4360.tar.gz otp-9fc2d48a6de8b95b0d36c4439bff8e59710f4360.tar.bz2 otp-9fc2d48a6de8b95b0d36c4439bff8e59710f4360.zip |
Recognize 'deterministic' when given in a -compile() attribute
The compiler option 'deterministic' was only recognized when given
as an option to the compiler, not when it was specified in a
-compile() attribute in the source file.
https://bugs.erlang.org/browse/ERL-498
Diffstat (limited to 'lib/compiler/test/compile_SUITE.erl')
-rw-r--r-- | lib/compiler/test/compile_SUITE.erl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/compiler/test/compile_SUITE.erl b/lib/compiler/test/compile_SUITE.erl index f647a4030d..5e35dc1d02 100644 --- a/lib/compiler/test/compile_SUITE.erl +++ b/lib/compiler/test/compile_SUITE.erl @@ -119,9 +119,19 @@ file_1(Config) when is_list(Config) -> true = exists(Target), passed = run(Target, test, []), + %% Test option 'deterministic' as a compiler attribute. + Det = deterministic_module, + {DetPath, DetTarget} = get_files(Config, Det, "det_target"), + {ok,Det,DetCode} = compile:file(DetPath, [binary]), + {module,Det} = code:load_binary(Det, "", DetCode), + [{version,_}] = Det:module_info(compile), + true = code:delete(Det), + false = code:purge(Det), + %% Cleanup. ok = file:delete(Target), ok = file:del_dir(filename:dirname(Target)), + ok = file:del_dir(filename:dirname(DetTarget)), %% There should not be any messages in the messages. receive |