diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2009-02-21 16:31:21 -0500 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2009-02-21 16:31:21 -0500 |
commit | 062f4e0273404c14b31216442308f14b30d34947 (patch) | |
tree | 5648b8f7ef5426da07c74e36e97d2d12e2b9213a /tests | |
parent | 29c9d56d32df40c947b8cb2e67987b682b5184fe (diff) |
making entry into subshell after failed test run more explicit (thanks for the suggestion, Ross!)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/common | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/common b/tests/common index 0f90500..30c6a82 100644 --- a/tests/common +++ b/tests/common @@ -5,6 +5,8 @@ failed_cleanup() { echo 'FAILED!' read -p "press enter to cleanup and remove tmp (or type bash for a subshell to examine): " XX if [ "$XX" = bash ] ; then + echo "Entering subshell..." + cd "$TEMPDIR" bash fi |