summaryrefslogtreecommitdiff
path: root/t/thread_it.pl
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2013-08-20 13:05:04 -0700
committerFather Chrysostomos <sprout@cpan.org>2013-08-20 18:00:46 -0700
commit58b6d14529f6fc63106891ef1df5542662023561 (patch)
treeeef5b305f27d071eda4c35835fffed185c9b46b3 /t/thread_it.pl
parente2eec1d7ee007c8c2dc11a4750050be865a0c120 (diff)
downloadperl-58b6d14529f6fc63106891ef1df5542662023561.tar.gz
thread_it.pl: Increase Mac stack
At Vincent’s suggestion (<5213ABBE.9080706@profvince.com>), increase the Mac stack size to 1000000.
Diffstat (limited to 't/thread_it.pl')
-rw-r--r--t/thread_it.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/thread_it.pl b/t/thread_it.pl
index 8450ad9314..751d76499e 100644
--- a/t/thread_it.pl
+++ b/t/thread_it.pl
@@ -32,7 +32,7 @@ note('running tests in a new thread');
# On Mac OS X under gcc and g++, the default stack size is also too small.
my $curr = threads->create({
stack_size => $^O eq 'hpux' ? 524288 :
- $^O eq 'darwin' ? 847873 : 0,
+ $^O eq 'darwin' ? 1000000: 0,
}, sub {
run_tests();
return defined &curr_test ? curr_test() : ()