In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/a5ba45410beb64969d89cc1ea5f29ed2c18ccd73?hp=96644a2c903dd02546994c154d580ce95f830f3b>
- Log ----------------------------------------------------------------- commit a5ba45410beb64969d89cc1ea5f29ed2c18ccd73 Author: Karl Williamson <[email protected]> Date: Wed Dec 23 11:29:08 2015 -0700 t/thread_it.pl: Increase stack size for AIX This is enough to get the smoker to pass t/re/pat_thr.t ----------------------------------------------------------------------- Summary of changes: t/thread_it.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/t/thread_it.pl b/t/thread_it.pl index 7fc145a..6dcc807 100644 --- a/t/thread_it.pl +++ b/t/thread_it.pl @@ -31,10 +31,12 @@ note('running tests in a new thread'); # recurses heavily, and busts the default stack size (65536 on PA-RISC) # On Mac OS X under gcc and g++, the default stack size is also too small. # Ditto on VMS, although threshold varies by platform and -Dusevmsdebug. +# Same on AIX my $curr = threads->create({ stack_size => $^O eq 'hpux' ? 524288 : $^O eq 'darwin' ? 1000000: - $^O eq 'VMS' ? 150000 : 0, + $^O eq 'VMS' ? 150000 : + $^O eq 'aix' ? 1000000 : 0, }, sub { run_tests(); return defined &curr_test ? curr_test() : () -- Perl5 Master Repository
