diff options
-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 |