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/z_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/z_SUITE.erl')
-rw-r--r-- | lib/compiler/test/z_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler/test/z_SUITE.erl b/lib/compiler/test/z_SUITE.erl index 150ab26ff8..bfa8e279e8 100644 --- a/lib/compiler/test/z_SUITE.erl +++ b/lib/compiler/test/z_SUITE.erl @@ -26,13 +26,13 @@ suite() -> [{ct_hooks,[ts_install_cth]}]. all() -> - test_lib:recompile(?MODULE), [loaded]. groups() -> []. init_per_suite(Config) -> + test_lib:recompile(?MODULE), Config. end_per_suite(_Config) -> |