work on setup teardown

This commit is contained in:
Thomas Levine 2016-02-28 22:36:45 +00:00
parent 58f2f754b5
commit 06952c7761
2 changed files with 4 additions and 4 deletions

View File

@ -1,3 +1,3 @@
#!/bin/sh #!/bin/sh
$TEST_SHELL ../../urchin --run-in-series .test ../../urchin --disable-cycling --run-in-series .test

6
urchin
View File

@ -422,8 +422,8 @@ do
case "$1" in case "$1" in
-b|--run-in-series) run_in_series=true;; -b|--run-in-series) run_in_series=true;;
-e|--exit-on-fail) exit_on_not_ok=true;; -e|--exit-on-fail) exit_on_not_ok=true;;
-f) force=true;; -f|--force) force=true;;
-s) -s|--shell)
shift shift
shell_for_sh_tests=$1 shell_for_sh_tests=$1
@ -441,7 +441,7 @@ you don't need to quote the TEST_SHELL variable." > /dev/stderr
echo "$shell_for_sh_tests" >> "$shell_list" echo "$shell_for_sh_tests" >> "$shell_list"
;; ;;
-n) cycle_shell=false;; -n|--disable-cycling) cycle_shell=false;;
-t|--tap) tap_format=true;; -t|--tap) tap_format=true;;
-h|--help) urchin_help -h|--help) urchin_help
exit 0;; exit 0;;