aboutsummaryrefslogtreecommitdiffstats
path: root/erts
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2017-10-13 10:30:54 +0200
committerGitHub <[email protected]>2017-10-13 10:30:54 +0200
commit805c5b9b4627eacc2fb13d234c553ae476a2c3dd (patch)
tree52e3d4570430adb0914c4cdfa488ef3e6a17ab55 /erts
parent0c481d9002311aaf71305b207b85cb1546d145a9 (diff)
parent5bc8c741897b9af4cfcdd80f3efcedbe6dc2c04e (diff)
downloadotp-805c5b9b4627eacc2fb13d234c553ae476a2c3dd.tar.gz
otp-805c5b9b4627eacc2fb13d234c553ae476a2c3dd.tar.bz2
otp-805c5b9b4627eacc2fb13d234c553ae476a2c3dd.zip
Merge pull request #1599 from kostis/exception_SUITE
Explicitly disable HiPE's range analysis
Diffstat (limited to 'erts')
-rw-r--r--erts/emulator/test/exception_SUITE.erl4
1 files changed, 4 insertions, 0 deletions
diff --git a/erts/emulator/test/exception_SUITE.erl b/erts/emulator/test/exception_SUITE.erl
index 0f27251fcb..be9b63d534 100644
--- a/erts/emulator/test/exception_SUITE.erl
+++ b/erts/emulator/test/exception_SUITE.erl
@@ -31,6 +31,10 @@
-include_lib("common_test/include/ct.hrl").
-import(lists, [foreach/2]).
+%% The range analysis of the HiPE compiler results in a system limit error
+%% during compilation instead of at runtime, so do not perform this analysis.
+-compile([{hipe, [no_icode_range]}]).
+
suite() ->
[{ct_hooks,[ts_install_cth]},
{timetrap, {minutes, 1}}].