diff options
author | Björn Gustavsson <[email protected]> | 2018-07-06 10:49:22 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2018-07-06 10:49:22 +0200 |
commit | 1d13ab8ebfc47f2cfdb344949d14ed8c10b0d6a8 (patch) | |
tree | 13c2c3cc8762f10d81164bee7d5cb83e56fac620 /lib/compiler/test/overridden_bif_SUITE.erl | |
parent | 8de2daee2d38bb020973261130ede01ba0e3e097 (diff) | |
parent | 005e4720b46ca6e69c6b589038460a1311eeb073 (diff) | |
download | otp-1d13ab8ebfc47f2cfdb344949d14ed8c10b0d6a8.tar.gz otp-1d13ab8ebfc47f2cfdb344949d14ed8c10b0d6a8.tar.bz2 otp-1d13ab8ebfc47f2cfdb344949d14ed8c10b0d6a8.zip |
Merge branch 'maint'
* maint:
Call test_lib:recompile/1 from init_per_suite/1
beam_debug: Fix printing of floating point registers
Diffstat (limited to 'lib/compiler/test/overridden_bif_SUITE.erl')
-rw-r--r-- | lib/compiler/test/overridden_bif_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler/test/overridden_bif_SUITE.erl b/lib/compiler/test/overridden_bif_SUITE.erl index ce18916515..a46abe8dcf 100644 --- a/lib/compiler/test/overridden_bif_SUITE.erl +++ b/lib/compiler/test/overridden_bif_SUITE.erl @@ -36,7 +36,6 @@ suite() -> {timetrap,{minutes,1}}]. all() -> - test_lib:recompile(?MODULE), [{group,p}]. groups() -> @@ -45,6 +44,7 @@ groups() -> ]}]. init_per_suite(Config) -> + test_lib:recompile(?MODULE), Config. end_per_suite(_Config) -> |