diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2016-05-22 13:38:08 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2016-05-22 13:38:41 +0100 |
commit | ba59b14d895cc44ddb548eb1f70f75377655b638 (patch) | |
tree | 96cef6570b891bd806669c932029e5c632114a67 | |
parent | b0d68adc8b45e42b425c23e7dbf195b772878b9a (diff) |
Testsuite: fix for 0574
-rwxr-xr-x | test/runtest | 2 | ||||
-rw-r--r-- | test/src/cf.c | 9 |
2 files changed, 6 insertions, 5 deletions
diff --git a/test/runtest b/test/runtest index 2389efafe..3403d78de 100755 --- a/test/runtest +++ b/test/runtest @@ -1415,7 +1415,7 @@ $munges = 'rejectlog' => 's/^(.* SMTP protocol synchronization error .* next input=.{8}).*$/$1<suppressed>/'}, 'debuglog_stdout' => - { 'stdout' => 's/^\d\d:\d\d:\d\d* \d+ //; + { 'stdout' => 's/^\d\d:\d\d:\d\d\s+\d+ //; s/Process \d+ is ready for new message/Process pppp is ready for new message/' }, }; diff --git a/test/src/cf.c b/test/src/cf.c index 1fce2e351..2b982f10f 100644 --- a/test/src/cf.c +++ b/test/src/cf.c @@ -41,6 +41,7 @@ Translated back into C, March 1990! */ #define version 8 #define defaultstore 100000 /* default recovery buffer size */ #define minstore 500 /* minimum recovery buffer size */ +#define SHOWMAX 20 /* maximum number of diff lines to display */ /* ----- misc defines ----- */ @@ -258,11 +259,11 @@ else if (t1 < 0 && t2 < 0) if (echo) { rule('-', 10); - if (-t1-s1 < 21) write_lines(rootline_one, tline_one); - else fprintf(f_out, "... <more than 20 lines> ...\n"); + if (-t1-s1 < SHOWMAX+1) write_lines(rootline_one, tline_one); + else fprintf(f_out, "... <more than %d lines> ...\n", SHOWMAX); rule('-', 10); - if (-t2-s2 < 21) write_lines(rootline_two, tline_two); - else fprintf(f_out, "... <more than 20 lines> ...\n"); + if (-t2-s2 < SHOWMAX+1) write_lines(rootline_two, tline_two); + else fprintf(f_out, "... <more than %d lines> ...\n", SHOWMAX); } } |