diff options
author | Todd Lyons <tlyons@exim.org> | 2013-10-19 07:17:36 -0700 |
---|---|---|
committer | Todd Lyons <tlyons@exim.org> | 2013-10-19 07:17:36 -0700 |
commit | b3e39dd7f0113be4aeeab16dbe18b9eef8c1caad (patch) | |
tree | f90accd0620d09a3c6e2e91481f5bb5d2b2ad269 | |
parent | 3d41333d24cf553a5a23a9522586b4f44d859416 (diff) |
Tests: Don't delete patched exim if -KEEP is used
-rwxr-xr-x | test/runtest | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/runtest b/test/runtest index 27fe37199..443d7fcf4 100755 --- a/test/runtest +++ b/test/runtest @@ -193,7 +193,8 @@ close(T); system("sudo /bin/rm -rf ./spool test-* ./dnszones/*") if ($rc == 0 && !$save_output); -system("sudo /bin/rm -rf ./eximdir/*"); +system("sudo /bin/rm -rf ./eximdir/*") + if (!$save_output); print "\nYou were in test $test at the end there.\n\n" if defined $test; exit $rc if ($rc >= 0); |