diff options
author | Björn Gustavsson <[email protected]> | 2018-07-06 10:41:34 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2018-07-06 10:41:34 +0200 |
commit | 005e4720b46ca6e69c6b589038460a1311eeb073 (patch) | |
tree | 9785133e0f7ab1a6e616d57e414109910b7a7e74 /lib/compiler/test/compilation_SUITE.erl | |
parent | 4188cd5b4b511af979fe85ec9b87967a34bec02d (diff) | |
parent | 9995d639dc39e05e6c88d28cca0cf6de79ee291e (diff) | |
download | otp-005e4720b46ca6e69c6b589038460a1311eeb073.tar.gz otp-005e4720b46ca6e69c6b589038460a1311eeb073.tar.bz2 otp-005e4720b46ca6e69c6b589038460a1311eeb073.zip |
Merge branch 'bjorn/compiler/cuddle-with-tests' into maint
* bjorn/compiler/cuddle-with-tests:
Call test_lib:recompile/1 from init_per_suite/1
Diffstat (limited to 'lib/compiler/test/compilation_SUITE.erl')
-rw-r--r-- | lib/compiler/test/compilation_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler/test/compilation_SUITE.erl b/lib/compiler/test/compilation_SUITE.erl index a4de125d32..3ba3ce7cdf 100644 --- a/lib/compiler/test/compilation_SUITE.erl +++ b/lib/compiler/test/compilation_SUITE.erl @@ -66,7 +66,6 @@ suite() -> {timetrap,{minutes,10}}]. all() -> - test_lib:recompile(?MODULE), [self_compile_old_inliner,self_compile, {group,p}]. @@ -88,6 +87,7 @@ groups() -> string_table,otp_8949_a,split_cases]}]. init_per_suite(Config) -> + test_lib:recompile(?MODULE), Config. end_per_suite(_Config) -> |