aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2010-01-24 17:04:12 +0100
committerBjörn Gustavsson <[email protected]>2010-01-30 16:34:53 +0100
commit24e2773f82975b6d7f88512c5f73777edc9522c0 (patch)
treee752c04c50abc039b1ea539744100f247842a925 /lib
parentfe14832ebff7b4ef1ec9ded348c77e8779098c36 (diff)
downloadotp-24e2773f82975b6d7f88512c5f73777edc9522c0.tar.gz
otp-24e2773f82975b6d7f88512c5f73777edc9522c0.tar.bz2
otp-24e2773f82975b6d7f88512c5f73777edc9522c0.zip
re tests: disable native-code compilation for huge modules
Two generated modules contains too big functions for the native-code compiler to handle (even the BEAM compiler struggles when compiling them).
Diffstat (limited to 'lib')
-rw-r--r--lib/stdlib/test/re_testoutput1_replacement_test.erl1
-rw-r--r--lib/stdlib/test/re_testoutput1_split_test.erl1
-rw-r--r--lib/stdlib/test/run_pcre_tests.erl2
3 files changed, 4 insertions, 0 deletions
diff --git a/lib/stdlib/test/re_testoutput1_replacement_test.erl b/lib/stdlib/test/re_testoutput1_replacement_test.erl
index fcd57f8f24..69cb140e0d 100644
--- a/lib/stdlib/test/re_testoutput1_replacement_test.erl
+++ b/lib/stdlib/test/re_testoutput1_replacement_test.erl
@@ -18,6 +18,7 @@
%%
-module(re_testoutput1_replacement_test).
-compile(export_all).
+-compile(no_native).
-include("test_server.hrl").
%% This file is generated by running run_pcre_tests:gen_repl_test("re_SUITE_data/testoutput1")
run() ->
diff --git a/lib/stdlib/test/re_testoutput1_split_test.erl b/lib/stdlib/test/re_testoutput1_split_test.erl
index 294cfc33c4..e86a04b008 100644
--- a/lib/stdlib/test/re_testoutput1_split_test.erl
+++ b/lib/stdlib/test/re_testoutput1_split_test.erl
@@ -18,6 +18,7 @@
%%
-module(re_testoutput1_split_test).
-compile(export_all).
+-compile(no_native).
-include("test_server.hrl").
%% This file is generated by running run_pcre_tests:gen_split_test("re_SUITE_data/testoutput1")
join([]) -> [];
diff --git a/lib/stdlib/test/run_pcre_tests.erl b/lib/stdlib/test/run_pcre_tests.erl
index 8c6424e708..78b4803fc8 100644
--- a/lib/stdlib/test/run_pcre_tests.erl
+++ b/lib/stdlib/test/run_pcre_tests.erl
@@ -987,6 +987,7 @@ gen_split_test(OneFile) ->
{ok,F}= file:open(ErlFileName,[write]),
io:format(F,"-module(~s).~n",[ErlModule]),
io:format(F,"-compile(export_all).~n",[]),
+ io:format(F,"-compile(no_native).~n",[]),
io:format(F,"-include(\"test_server.hrl\").~n",[]),
%io:format(F,"-define(line,erlang:display(?LINE),).~n",[]),
io:format(F,"%% This file is generated by running ~w:gen_split_test(~p)~n",
@@ -1068,6 +1069,7 @@ gen_repl_test(OneFile) ->
{ok,F}= file:open(ErlFileName,[write]),
io:format(F,"-module(~s).~n",[ErlModule]),
io:format(F,"-compile(export_all).~n",[]),
+ io:format(F,"-compile(no_native).~n",[]),
io:format(F,"-include(\"test_server.hrl\").~n",[]),
io:format(F,"%% This file is generated by running ~w:gen_repl_test(~p)~n",
[?MODULE,OneFile]),