diff options
author | Sverker Eriksson <[email protected]> | 2014-01-10 16:04:06 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2014-01-10 16:04:06 +0100 |
commit | 5737a9a1d0d2fdafe9fc34dd35e07233c70b53c4 (patch) | |
tree | f2ed2e7601b7102a4c53fde7c9716d7cb07d04d6 | |
parent | c97dd5af565567d0de3c5df33aa5dc1c3146d650 (diff) | |
download | otp-5737a9a1d0d2fdafe9fc34dd35e07233c70b53c4.tar.gz otp-5737a9a1d0d2fdafe9fc34dd35e07233c70b53c4.tar.bz2 otp-5737a9a1d0d2fdafe9fc34dd35e07233c70b53c4.zip |
erts: Run binary_SUITE:trapping even for 32bit
Not sure why it was disabled for 32bit in the first place?
-rw-r--r-- | erts/emulator/test/binary_SUITE.erl | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/erts/emulator/test/binary_SUITE.erl b/erts/emulator/test/binary_SUITE.erl index 8b5a6d08a2..f493f8c1ac 100644 --- a/erts/emulator/test/binary_SUITE.erl +++ b/erts/emulator/test/binary_SUITE.erl @@ -1337,15 +1337,10 @@ run_otp_8180(Name) -> %% Test that exit and GC during trapping term_to_binary and binary_to_term %% does not crash. trapping(Config) when is_list(Config)-> - case erlang:system_info(wordsize) of - N when N < 8 -> - {skipped, "Only on 64bit machines"}; - _ -> - do_trapping(5, term_to_binary, - fun() -> [lists:duplicate(2000000,2000000)] end), - do_trapping(5, binary_to_term, - fun() -> [term_to_binary(lists:duplicate(2000000,2000000))] end) - end. + do_trapping(5, term_to_binary, + fun() -> [lists:duplicate(2000000,2000000)] end), + do_trapping(5, binary_to_term, + fun() -> [term_to_binary(lists:duplicate(2000000,2000000))] end). do_trapping(0, _, _) -> ok; |