summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2008-03-13 21:40:51 +0000
committerChris Wilson <chris+github@qwirx.com>2008-03-13 21:40:51 +0000
commitf390b966b4de620f64ed79639aa0f2831899f3c9 (patch)
tree4f2ad5c645733ede92fca584472a31e7a141274e /test
parentfa0d7121d1189ce0612908e76de0fe8e6fa6f7c8 (diff)
Fix missing space before bbstored_args in test to make them work
properly.
Diffstat (limited to 'test')
-rw-r--r--test/bbackupd/testbbackupd.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/bbackupd/testbbackupd.cpp b/test/bbackupd/testbbackupd.cpp
index d9109d1f..3f165dc2 100644
--- a/test/bbackupd/testbbackupd.cpp
+++ b/test/bbackupd/testbbackupd.cpp
@@ -440,7 +440,8 @@ int test_setupaccount()
int test_run_bbstored()
{
- std::string cmd = BBSTORED + bbstored_args + " testfiles/bbstored.conf";
+ std::string cmd = BBSTORED " " + bbstored_args +
+ " testfiles/bbstored.conf";
bbstored_pid = LaunchServer(cmd, "testfiles/bbstored.pid");
TEST_THAT(bbstored_pid != -1 && bbstored_pid != 0);