summaryrefslogtreecommitdiff
path: root/t/thread_it.pl
Commit message (Collapse)AuthorAgeFilesLines
* t/thread_it.pl: Increase stack size on AIXKarl Williamson2018-04-161-1/+1
| | | | This is starting to core dump. I increased it arbitrarily by 50%.
* fixup tests under t/ that assumed '.' in @INCDavid Mitchell2017-04-071-1/+1
|
* t/thread_it.pl: Increase Darwin stack sizeKarl Williamson2016-07-291-1/+1
| | | | | The next commit causes one test in the suite to use more than the previously allowed max.
* t/thread_it.pl: Increase stack size for AIXKarl Williamson2015-12-231-1/+3
| | | | This is enough to get the smoker to pass t/re/pat_thr.t
* More stack for pat_thr.t on VMS as well.Craig A. Berry2013-11-071-1/+3
| | | | Follow-up to 66478a1b30 and 58b6d14529f.
* thread_it.pl: Increase Mac stackFather Chrysostomos2013-08-201-1/+1
| | | | | At Vincent’s suggestion (<5213ABBE.9080706@profvince.com>), increase the Mac stack size to 1000000.
* thread_it.pl: Tweak stack sizesFather Chrysostomos2013-08-201-1/+3
| | | | | | | The stack size appropriate to HP-UX is too small for some systems, where the default is fine. (See <20130816182909.GA14081@iabyn.com>.) On Mac OS X, the size appropriate to HP-UX is too small, as is the default.
* Set a large thread stack when running the regex tests in a thread.Nicholas Clark2013-08-011-1/+6
| | | | | | | | | | | For testing ithreads cloning, all the regex tests are run twice. Once "normally", and once in a child ithread, to verify that all regex constructions can be cloned. The recently added tests for backreferences starting with 8 or 9 causes a lot of C recursion in the child thread, enough to bust the default thread stack size on (at least) HP-UX. So set a large explicit thread stack size. It doesn't matter that it's large, as we are only running one child thread.
* Simplify the logic in t/thread_it.pl, as the callers' filenames are uniform.Nicholas Clark2011-03-081-21/+19
| | | | | | VMS invokes TEST with Unix-style filenames, so using / as a separator inside t/thread_it.pl should not pose a portability problem. ':' is irrelevant now that MacOS Classic is very "special biologist word".
* Refactor t/thread_it.pl to use test.pl's skip_all_*() functions.Nicholas Clark2011-03-071-9/+8
|
* Variants of several regression tests that run the actul tests insideNicholas Clark2008-01-091-0/+39
a new thread, to test ithread's cloning, particularly of regexps. p4raw-id: //depot/perl@32931