projects
/
monkeysphere.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5d6d207
)
tests/common: enable a single subshell in the test environment before cleanup on...
author
Daniel Kahn Gillmor
<dkg@fifthhorseman.net>
Thu, 12 Feb 2009 23:34:08 +0000
(18:34 -0500)
committer
Daniel Kahn Gillmor
<dkg@fifthhorseman.net>
Thu, 12 Feb 2009 23:34:08 +0000
(18:34 -0500)
tests/common
patch
|
blob
|
history
diff --git
a/tests/common
b/tests/common
index adc96a24924961de855342b2ed4ac5d88f1de121..0f9050015cde858c58224dd387a57568ede5a00b 100644
(file)
--- a/
tests/common
+++ b/
tests/common
@@
-3,7
+3,10
@@
failed_cleanup() {
# FIXME: can we be more verbose here?
echo 'FAILED!'
- read -p "press enter to cleanup and remove tmp:"
+ read -p "press enter to cleanup and remove tmp (or type bash for a subshell to examine): " XX
+ if [ "$XX" = bash ] ; then
+ bash
+ fi
cleanup
}