projects
/
exim.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
54e3e5b
)
Adjust runtest -CONTINUE to work everywhere
author
Todd Lyons
<tlyons@exim.org>
Fri, 18 Oct 2013 18:49:57 +0000
(11:49 -0700)
committer
Todd Lyons
<tlyons@exim.org>
Fri, 18 Oct 2013 18:49:57 +0000
(11:49 -0700)
test/runtest
patch
|
blob
|
blame
|
history
diff --git
a/test/runtest
b/test/runtest
index 6623d3b4b62c80d80a5621d1050db7eb640089a9..27fe3719978383380caebf8f6bc497f090f9ff40 100755
(executable)
--- a/
test/runtest
+++ b/
test/runtest
@@
-1083,7
+1083,7
@@
if (! -e $sf)
for (;;)
{
print "Continue, Show, or Quit? [Q] ";
- $_ = <T>;
+ $_ =
$force_continue ? "c" :
<T>;
tests_exit(1) if /^q?$/i;
log_failure($log_failed_filename, $testno, $rf) if (/^c$/i && $force_continue);
return 0 if /^c$/i;
@@
-3252,7
+3252,7
@@
closedir(DIR);
open(T, "/dev/tty") || tests_exit(-1, "Failed to open /dev/tty: $!");
print "\nPress RETURN to run the tests: ";
-$_ = <T>;
+$_ =
$force_continue ? "c" :
<T>;
print "\n";
$lasttestdir = "";