summaryrefslogtreecommitdiff
path: root/runtests.SH
Commit message (Collapse)AuthorAgeFilesLines
* add shebangs where missingSawyer X2012-09-221-0/+2
|
* Make everything exec-bit.txt lists executableFlorian Ragwitz2010-08-191-0/+0
| | | | | | | All these files used to be executable in the release tarballs. Apparently things also work without that in the repository, but I'd rather add this possibly unecessary change to blead instead of breaking the upcoming release. This should probably be looked into again afterwards.
* runtests should write to t/rantests on successful completion.Nicholas Clark2009-09-231-0/+2
|
* Move t/perl symlink creation back to the test_prep target of the MakefileNicholas Clark2009-09-221-7/+5
| | | | | | | | | | | | But not in the way it was done before with a recursive call to $(MAKE) - instead create it directly in the current make invocation as an action for test_prep, and create the link for perl.third directly as an action for test_prep.third Also, make it optional to pass the perl to run into runtests, by providing a default of ./perl$(EXE_EXT) This feels simpler and still Don't Repeat Yourself.
* Fix my bash-ism in 9988b539d419b6c4 - test takes a single =, not ==.Nicholas Clark2009-09-211-3/+3
| | | | | Annoyingly bash just accepts it, and dash generates a diagnostic to stderr but carries on, hence why I didn't spot the problem initially.
* Move the Makefile targets _test{,_prep,_tty,_notty} into a script runtests.Nicholas Clark2009-09-201-0/+73
This avoids a recursive call to $(MAKE) in the top level directory, which feels over-complicated when all the targets invoked have no dependencies.