diff options
author | Björn Gustavsson <[email protected]> | 2016-06-23 13:20:57 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-06-29 11:37:31 +0200 |
commit | b23b3f903e2cfac2f9b9faac7c7fa19c0ec8f625 (patch) | |
tree | 23cf5b1ef64b23c1909ea6ec0f1e23052df31e39 /lib/compiler/test/Makefile | |
parent | 1c7526a30444a0e3f0bc038ae5894d63b7914e46 (diff) | |
download | otp-b23b3f903e2cfac2f9b9faac7c7fa19c0ec8f625.tar.gz otp-b23b3f903e2cfac2f9b9faac7c7fa19c0ec8f625.tar.bz2 otp-b23b3f903e2cfac2f9b9faac7c7fa19c0ec8f625.zip |
compiler: Eliminate num_bif_SUITE
num_bif_SUITE.erl was originally copied from the emulator test
suite. It does not test much of the compiler.
Therefore, remove num_bif_SUITE. Add a new test to bif_SUITE
to test trunc/1 and round/1 in contexts that could be tricky
for the compiler to handle correctly. Note that there is no
need to test abs/1 in bif_SUITE, since it is tested in many
other places (e.g. in guard_SUITE).
Diffstat (limited to 'lib/compiler/test/Makefile')
-rw-r--r-- | lib/compiler/test/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/compiler/test/Makefile b/lib/compiler/test/Makefile index f0185acbc7..365f4c295e 100644 --- a/lib/compiler/test/Makefile +++ b/lib/compiler/test/Makefile @@ -36,7 +36,6 @@ MODULES= \ map_SUITE \ match_SUITE \ misc_SUITE \ - num_bif_SUITE \ receive_SUITE \ record_SUITE \ regressions_SUITE \ @@ -67,7 +66,6 @@ NO_OPT= \ map \ match \ misc \ - num_bif \ receive \ record \ trycatch @@ -78,6 +76,7 @@ INLINE= \ beam_block \ beam_bool \ beam_utils \ + bif \ bs_bincomp \ bs_bit_binaries \ bs_construct \ @@ -91,7 +90,6 @@ INLINE= \ map \ match \ misc \ - num_bif \ receive \ record |