aboutsummaryrefslogtreecommitdiffstats
path: root/script/spec-all-pairs
Commit message (Collapse)AuthorAgeLines
* Suppress stderr output from rake db:test:prepareRobin Houston2012-01-31-1/+1
|
* Use db:test:prepare to prepare the way for testsRobin Houston2012-01-31-2/+1
|
* fix shell syntax in scriptRobin Houston2012-01-31-2/+2
|
* More flexible input syntaxRobin Houston2012-01-29-1/+2
| | | | | Accept test pairs on stdin even if they are not prefixed with the string "* FAILED: ".
* Ignore non-matching linesRobin Houston2012-01-24-5/+12
| | | | | | | When reading a list of test pairs from standard input, ignore lines that do not match the expected format * FAILED: test1 test2
* Make it possible to test just particular pairsRobin Houston2012-01-24-12/+46
| | | | | | | For example to re-run all the failed pairs including general_controller_spec.rb: fgrep /general_controller_spec ../test-pair-failures.txt | script/spec-all-pairs -
* Print successes as well as failuresRobin Houston2012-01-23-2/+7
| | | | | As a larger proportion of these tests start to pass, it becomes helpful to print information about successes as well as failures.
* Suppress stderr too, while running testsRobin Houston2012-01-23-1/+1
|
* Tweaks to spec-all-pairsRobin Houston2012-01-22-7/+4
| | | | | 1. Suppress irrelevant output; 2. Check that running the same spec twice doesn’t cause failures either.
* Script to find order-dependent test failuresRobin Houston2012-01-22-0/+23
This script runs all (ordered) pairs of tests, and reports which pairs result in a test failure.