| Commit message (Collapse) | Author | Age | Lines |
| |
|
| |
|
|
|
|
|
|
| |
Make it possible to log the output of failed pairs, so we have some
hope of determining the cause of failure in cases where it does not
turn out to be reproducible.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Accept test pairs on stdin even if they are not prefixed with the
string "* FAILED: ".
|
|
|
|
|
|
|
| |
When reading a list of test pairs from standard input, ignore lines
that do not match the expected format
* FAILED: test1 test2
|
|
|
|
|
|
|
| |
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 -
|
|
|
|
|
| |
As a larger proportion of these tests start to pass, it becomes
helpful to print information about successes as well as failures.
|
| |
|
|
|
|
|
| |
1. Suppress irrelevant output;
2. Check that running the same spec twice doesn’t cause failures either.
|
|
This script runs all (ordered) pairs of tests, and reports which pairs
result in a test failure.
|