diff options
author | Björn Gustavsson <[email protected]> | 2012-01-25 17:17:10 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2012-01-25 17:17:10 +0100 |
commit | 716f6e4c99dd03ee48087bbebe37bfb42c08835e (patch) | |
tree | 65e13ec09b3d217534ff2982badbe0f0f59696a5 | |
parent | cbd04034742fbd5f330eb51944d19b99c14ec3f4 (diff) | |
parent | 1695be3437010b4e18c51dc184e058a29c3ed8de (diff) | |
download | otp-716f6e4c99dd03ee48087bbebe37bfb42c08835e.tar.gz otp-716f6e4c99dd03ee48087bbebe37bfb42c08835e.tar.bz2 otp-716f6e4c99dd03ee48087bbebe37bfb42c08835e.zip |
Merge branch 'maint'
* maint:
compile_SUITE: Eliminate race condition
-rw-r--r-- | lib/compiler/test/compile_SUITE.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/compiler/test/compile_SUITE.erl b/lib/compiler/test/compile_SUITE.erl index 32d53add53..640849f2ec 100644 --- a/lib/compiler/test/compile_SUITE.erl +++ b/lib/compiler/test/compile_SUITE.erl @@ -813,9 +813,9 @@ sys_pre_attributes(Config) -> {ok,Mod,_} = compile:file(File, PreOpts ++ CommonOpts), {ok,Mod,_} = compile:file(File, [{attribute,replace,replaced,42}|CommonOpts]), - {ok,Mod,Code} = compile:file(File, PrePostOpts ++ PreOpts ++ - PostOpts ++ CommonOpts -- - [report,verbose]), + {ok,Mod,_} = compile:file(File, PrePostOpts ++ PreOpts ++ + PostOpts ++ CommonOpts -- + [report,verbose]), ok. %%% |