Skip to content

Commit

Permalink
Adding missign option to testsuite shell
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Nov 4, 2010
1 parent 224f65a commit 1c37751
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cake/console/shells/testsuite.php
Expand Up @@ -99,9 +99,12 @@ public function getOptionParser() {
))->addOption('stderr', array(
'help' => __('Write to STDERR instead of STDOUT.'),
'boolean' => true
))->addOption('stop-on-failure', array(
))->addOption('stop-on-error', array(
'help' => __('Stop execution upon first error or failure.'),
'boolean' => true
))->addOption('stop-on-failure', array(
'help' => __('Stop execution upon first failure.'),
'boolean' => true
))->addOption('stop-on-skipped ', array(
'help' => __('Stop execution upon first skipped test.'),
'boolean' => true
Expand Down

0 comments on commit 1c37751

Please sign in to comment.