1e9611e732
* For **tests that _source_ shell scripts**: **option `-s <shell>`** now tells urchin to invoke test scripts with the specified shell (only shebang-less and `#!/bin/sh` tests scripts). * For **tests that _invoke_ schell scripts**: instruct users to write their tests to always **invoke via environment variable `TEST_SHELL` (e.g., `$TEST_SHELL ../foo`)**, and invoke urchin with that variable defined as needed, e.g., `TEST_SHELL=ksh urchin ./tests`; urchin defaults `TEST_SHELL` to `/bin/sh`. See updated `readme.md` for details.
11 lines
242 B
Plaintext
Executable File
11 lines
242 B
Plaintext
Executable File
# By design, this file has no shebang line.
|
|
|
|
# Assuming that urchin was invoked with `-s bash`, this script should be being run with bash.
|
|
|
|
this_shell=$(ps -o comm= -p $$ && :)
|
|
|
|
echo "Running shell: $this_shell"
|
|
|
|
[ "$this_shell" = 'bash' ]
|
|
|