summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtest/bbackupd/testfiles/extcheck1.pl.in8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/bbackupd/testfiles/extcheck1.pl.in b/test/bbackupd/testfiles/extcheck1.pl.in
index 74884dd8..5b70c677 100755
--- a/test/bbackupd/testfiles/extcheck1.pl.in
+++ b/test/bbackupd/testfiles/extcheck1.pl.in
@@ -8,7 +8,7 @@ unless(open IN,"../../bin/bbackupquery/bbackupquery -Wwarning " .
"-l testfiles/query4.log " .
"\"compare -ac$flags\" quit 2>&1 |")
{
- print "Couldn't open compare utility\n";
+ print "FAIL: opening compare utility\n";
exit 2;
}
@@ -48,7 +48,11 @@ while(<IN>)
close IN;
-$ret = 2 unless $seen;
+unless ($seen)
+{
+ print "FAIL: missing line matching continousupdate\n";
+ $ret = 2;
+}
exit $ret;