diff options
author | Björn Gustavsson <[email protected]> | 2014-08-14 12:41:39 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2014-08-14 12:41:39 +0200 |
commit | 5159961b2b9c23e764ee27dd2806432794764d46 (patch) | |
tree | f0a5abcf2439aff9e141a7344b287876a07dda17 /lib/compiler/test | |
parent | 2202cd030279566911c17d1474f815538dd64214 (diff) | |
parent | e4767774e363520178d7f5c4fd7d7f8798a54e04 (diff) | |
download | otp-5159961b2b9c23e764ee27dd2806432794764d46.tar.gz otp-5159961b2b9c23e764ee27dd2806432794764d46.tar.bz2 otp-5159961b2b9c23e764ee27dd2806432794764d46.zip |
Merge branch 'nox/compiler/improve-core-lint'
* nox/compiler/improve-core-lint:
Remove obsolete comment in core_lint
Handle return mismatches for calls and primops
Check for more return mismatches
Use +clint0 in compiler's test suites
Diffstat (limited to 'lib/compiler/test')
-rw-r--r-- | lib/compiler/test/Makefile | 2 | ||||
-rw-r--r-- | lib/compiler/test/compilation_SUITE.erl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/compiler/test/Makefile b/lib/compiler/test/Makefile index 0b56a49cd6..892a401c75 100644 --- a/lib/compiler/test/Makefile +++ b/lib/compiler/test/Makefile @@ -108,7 +108,7 @@ RELSYSDIR = $(RELEASE_PATH)/compiler_test # ---------------------------------------------------- ERL_MAKE_FLAGS += -ERL_COMPILE_FLAGS += -I$(ERL_TOP)/lib/test_server/include +clint +ERL_COMPILE_FLAGS += -I$(ERL_TOP)/lib/test_server/include +clint +clint0 EBIN = . diff --git a/lib/compiler/test/compilation_SUITE.erl b/lib/compiler/test/compilation_SUITE.erl index f7b1dbdddf..8711f35e8e 100644 --- a/lib/compiler/test/compilation_SUITE.erl +++ b/lib/compiler/test/compilation_SUITE.erl @@ -436,7 +436,7 @@ self_compile_1(Config, Prefix, Opts) -> %% Compile the compiler. (In this node to get better coverage.) ?line CompA = make_compiler_dir(Priv, Prefix++"compiler_a"), ?line VsnA = Version ++ ".0", - ?line compile_compiler(compiler_src(), CompA, VsnA, [clint|Opts]), + compile_compiler(compiler_src(), CompA, VsnA, [clint0,clint|Opts]), %% Compile the compiler again using the newly compiled compiler. %% (In another node because reloading the compiler would disturb cover.) |