summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2007-12-15 17:04:24 +0000
committerChris Wilson <chris+github@qwirx.com>2007-12-15 17:04:24 +0000
commitf5d99a3d47fd8a99ba41d909d01efdeecfddcc74 (patch)
tree33aad0096f984925c006a213862a9131b39ed82c
parent5f468e8bb4c9c2c93ed035353593818ed755bf0e (diff)
Report line of test where failed to kill internal daemon during SSL
keepalive tests.
-rw-r--r--test/bbackupd/testbbackupd.cpp16
1 files changed, 9 insertions, 7 deletions
diff --git a/test/bbackupd/testbbackupd.cpp b/test/bbackupd/testbbackupd.cpp
index 0624944c..a0732c21 100644
--- a/test/bbackupd/testbbackupd.cpp
+++ b/test/bbackupd/testbbackupd.cpp
@@ -701,9 +701,11 @@ int start_internal_daemon()
return pid;
}
-void stop_internal_daemon(int pid)
+bool stop_internal_daemon(int pid)
{
- TEST_THAT(KillServer(pid));
+ bool killed_server = KillServer(pid);
+ TEST_THAT(killed_server);
+ return killed_server;
/*
int status;
@@ -844,7 +846,7 @@ int test_bbackupd()
int pid = start_internal_daemon();
wait_for_backup_operation();
- stop_internal_daemon(pid);
+ TEST_THAT(stop_internal_daemon(pid));
// two-second delay on the first read() of f1
// should mean that a single keepalive is sent,
@@ -865,7 +867,7 @@ int test_bbackupd()
// can't test whether intercept was triggered, because
// it's in a different process.
// TEST_THAT(intercept_triggered());
- stop_internal_daemon(pid);
+ TEST_THAT(stop_internal_daemon(pid));
// check that keepalive was written to logs, and
// diff was not aborted, i.e. upload was a diff
@@ -935,7 +937,7 @@ int test_bbackupd()
// can't test whether intercept was triggered, because
// it's in a different process.
// TEST_THAT(intercept_triggered());
- stop_internal_daemon(pid);
+ TEST_THAT(stop_internal_daemon(pid));
// check that the diff was aborted, i.e. upload was not a diff
found1 = false;
@@ -995,7 +997,7 @@ int test_bbackupd()
// can't test whether intercept was triggered, because
// it's in a different process.
// TEST_THAT(intercept_triggered());
- stop_internal_daemon(pid);
+ TEST_THAT(stop_internal_daemon(pid));
// check that the diff was aborted, i.e. upload was not a diff
found1 = false;
@@ -1079,7 +1081,7 @@ int test_bbackupd()
// can't test whether intercept was triggered, because
// it's in a different process.
// TEST_THAT(intercept_triggered());
- stop_internal_daemon(pid);
+ TEST_THAT(stop_internal_daemon(pid));
// check that keepalives were sent during the dir search
found1 = false;