diff options
author | fche <fche> | 2005-08-05 19:06:50 +0000 |
---|---|---|
committer | fche <fche> | 2005-08-05 19:06:50 +0000 |
commit | 4369b1270c2adb39c8945e897274a0f27f03768d (patch) | |
tree | b71d463bc97b504408ec6b5a02f29a2c58f95290 | |
parent | 39bcd429b1a48d677bc237ebe92d9e6e0a3bf8aa (diff) | |
download | systemtap-steved-4369b1270c2adb39c8945e897274a0f27f03768d.tar.gz systemtap-steved-4369b1270c2adb39c8945e897274a0f27f03768d.tar.xz systemtap-steved-4369b1270c2adb39c8945e897274a0f27f03768d.zip |
2005-08-05 Frank Ch. Eigler <fche@elastic.org>
* runtest.sh: Keep around log files from crashed processes,
those whose rc is neither 0 nor 1.
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | runtest.sh | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,10 @@ 2005-08-05 Frank Ch. Eigler <fche@elastic.org> + * runtest.sh: Keep around log files from crashed processes, + those whose rc is neither 0 nor 1. + +2005-08-05 Frank Ch. Eigler <fche@elastic.org> + * tapsets.cxx (query_statement|function|cu|module): Add explicit nested try/catch, since elfutils iteration seems to block exception catching. @@ -26,7 +26,7 @@ if expr $1 : '.*ok/.*' >/dev/null; then rm -f $logfile.out $logfile.err fi else - if [ $rc -ne 0 ]; then + if [ $rc -eq 1 ]; then rm -f $logfile.out $logfile.err fi fi |