diff options
author | Rickard Green <[email protected]> | 2010-10-27 17:08:03 +0200 |
---|---|---|
committer | Rickard Green <[email protected]> | 2010-10-27 17:08:03 +0200 |
commit | e6f87189ab73c9ae857543b51c19a047947f1533 (patch) | |
tree | e0fcc389bc9aff91e4964d1160dfd2400312c133 /erts/emulator/test | |
parent | 17224a3d31d25ce6daa4de63b52b26bee9564bcd (diff) | |
download | otp-e6f87189ab73c9ae857543b51c19a047947f1533.tar.gz otp-e6f87189ab73c9ae857543b51c19a047947f1533.tar.bz2 otp-e6f87189ab73c9ae857543b51c19a047947f1533.zip |
Fix ERL_DRV_INT and ERL_DRV_UINT in halfword emulator
Diffstat (limited to 'erts/emulator/test')
-rw-r--r-- | erts/emulator/test/send_term_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/test/send_term_SUITE.erl b/erts/emulator/test/send_term_SUITE.erl index 5fd01a9ac5..819aa34886 100644 --- a/erts/emulator/test/send_term_SUITE.erl +++ b/erts/emulator/test/send_term_SUITE.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2005-2009. All Rights Reserved. +%% Copyright Ericsson AB 2005-2010. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -61,7 +61,7 @@ basic(Config) when is_list(Config) -> ?line ExpectExt2Term = term(P, 5), %% ERL_DRV_INT, ERL_DRV_UINT - ?line case erlang:system_info(wordsize) of + ?line case erlang:system_info({wordsize, external}) of 4 -> ?line {-1, 4294967295} = term(P, 6); 8 -> |