From 5bc8c741897b9af4cfcdd80f3efcedbe6dc2c04e Mon Sep 17 00:00:00 2001 From: Kostis Sagonas Date: Tue, 10 Oct 2017 23:33:59 +0200 Subject: Explicitly disable HiPE's range analysis when/if compiling this file to native code to check its exception behaiour. Related to the discussion in #1586. --- erts/emulator/test/exception_SUITE.erl | 4 ++++ 1 file changed, 4 insertions(+) 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}}]. -- cgit v1.2.3