in reply to How would I make Test::Harness fail-fast?
prove -v --state=failed,fast,save /my/Desktop/Math-Pari/Math-Pari-2.010800/t
--state - asks prove to remember the state of previous runs failed - runs only the tests that failed on the last run fast - runs the tests in fastest to slowest order save - saves the state on exit -v - means verbose
If you would like to add a timer, then
prove -v --state=failed,fast,save -p --timer
Update: added "fast"
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How would I make Test::Harness fail-fast?
by dekimsey (Sexton) on Jun 01, 2009 at 02:11 UTC | |
by Khen1950fx (Canon) on Jun 01, 2009 at 02:42 UTC |