From d525c1793ba26c14230f75a3505cb357d582193f Mon Sep 17 00:00:00 2001 From: Thomas Levine <_@thomaslevine.com> Date: Mon, 25 Jan 2016 13:35:53 +0000 Subject: [PATCH] remove "urchin -x" unnecessary now that shall exists --- urchin | 9 --------- 1 file changed, 9 deletions(-) diff --git a/urchin b/urchin index 60b7d84..e13e011 100755 --- a/urchin +++ b/urchin @@ -112,10 +112,6 @@ $USAGE Go to https://github.com/tlevine/urchin for documentation on writing tests. EOF - # [Experimental -x option left undocumented for now.] - # -x [Experimental; not meant for direct invocation, but for use in - # the shebang line of test scripts] - # Run with "\$TEST_SHELL", falling back on /bin/sh. } plural () { @@ -183,11 +179,6 @@ do shell_for_sh_tests=$1 which "$shell_for_sh_tests" >/dev/null || { echo "Cannot find specified shell: '$shell_for_sh_tests'" >&2; urchin_help >&2; exit 2; } ;; - -x) # [EXPERIMENTAL; UNDOCUMENTED FOR NOW] `urchin -x ` in a test script's shebang line is equivalent to invoking that script with `"$TEST_SHELL" ` - shift - urchinsh=${TEST_SHELL:-/bin/sh} - "$urchinsh" "$@" - exit $?;; -h|--help) urchin_help exit 0;; -*) urchin_help >&2