aboutsummaryrefslogtreecommitdiffstats
path: root/lib/erl_interface
diff options
context:
space:
mode:
authorBjörn-Egil Dahlberg <[email protected]>2010-06-03 12:14:27 +0200
committerRaimo Niskanen <[email protected]>2010-06-07 13:24:13 +0200
commit8b19e4d231a3e8c46719435dffa20d64463891bb (patch)
tree399ae94199bbc34ed9ce0b340a63655d0481966f /lib/erl_interface
parenta6a8805b906dc9be2ec3ecba647997335e345182 (diff)
downloadotp-8b19e4d231a3e8c46719435dffa20d64463891bb.tar.gz
otp-8b19e4d231a3e8c46719435dffa20d64463891bb.tar.bz2
otp-8b19e4d231a3e8c46719435dffa20d64463891bb.zip
Fix ei_tmo to restrict dflags to NEW_FLOAT_EXT
Erl_Interface is updated to restrict distribution to NEW_FLOAT_EXT only. The testsuite ei_tmo is updated to reflect that.
Diffstat (limited to 'lib/erl_interface')
-rw-r--r--lib/erl_interface/test/ei_tmo_SUITE.erl4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/erl_interface/test/ei_tmo_SUITE.erl b/lib/erl_interface/test/ei_tmo_SUITE.erl
index 0c211aa148..4f863922e1 100644
--- a/lib/erl_interface/test/ei_tmo_SUITE.erl
+++ b/lib/erl_interface/test/ei_tmo_SUITE.erl
@@ -349,10 +349,12 @@ make_and_check_dummy() ->
-define(DFLAG_ATOM_CACHE,2).
-define(DFLAG_EXTENDED_REFERENCES,4).
-define(DFLAG_EXTENDED_PIDS_PORTS,16#100).
+-define(DFLAG_NEW_FLOATS,16#800).
-define(DFLAG_DIST_MONITOR,8).
%% From R9 and forward extended references is compulsory
--define(COMPULSORY_DFLAGS, (?DFLAG_EXTENDED_REFERENCES bor ?DFLAG_EXTENDED_PIDS_PORTS)).
+%% From 14 and forward new float is compulsory
+-define(COMPULSORY_DFLAGS, (?DFLAG_EXTENDED_REFERENCES bor ?DFLAG_EXTENDED_PIDS_PORTS bor ?DFLAG_NEW_FLOATS)).
-define(shutdown(X), exit(X)).
-define(int16(X), [((X) bsr 8) band 16#ff, (X) band 16#ff]).