aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/test/run_pcre_tests.erl
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/stdlib/test/run_pcre_tests.erl
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/stdlib/test/run_pcre_tests.erl')
-rw-r--r--lib/stdlib/test/run_pcre_tests.erl2
1 files changed, 2 insertions, 0 deletions
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]),