summaryrefslogtreecommitdiff
path: root/test/backupstore
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2015-05-04 18:56:29 +0000
committerChris Wilson <chris+github@qwirx.com>2015-05-04 18:56:29 +0000
commitd39fdbcd444ee62ca6118b9bdf8314bc206fbb08 (patch)
tree897c2df00e30b0a66f35c05e75817c349be4c155 /test/backupstore
parent16bfb3c7f6335d988ebf907ac823418a592f58e3 (diff)
Fix system exit codes from tests, so we can use them in the shell.
I needed reliable exit codes to run the tests in a loop to catch an intermittent failure.
Diffstat (limited to 'test/backupstore')
-rw-r--r--test/backupstore/testbackupstore.cpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/test/backupstore/testbackupstore.cpp b/test/backupstore/testbackupstore.cpp
index 9c548400..2ee1bcdc 100644
--- a/test/backupstore/testbackupstore.cpp
+++ b/test/backupstore/testbackupstore.cpp
@@ -239,8 +239,12 @@ void CheckEntries(BackupStoreDirectory &rDir, int16_t FlagsMustBeSet, int16_t Fl
TEST_THAT(DIR_NUM == SkipEntries(e, FlagsMustBeSet, FlagsNotToBeSet));
}
+int num_tests_selected = 0;
+
//! Simplifies calling setUp() with the current function name in each test.
-#define SETUP() if (!setUp(__FUNCTION__)) return true; // skip this test
+#define SETUP() \
+ if (!setUp(__FUNCTION__)) return true; \
+ num_tests_selected++;
//! Checks account for errors and shuts down daemons at end of every test.
bool teardown_test_backupstore()
@@ -3111,6 +3115,9 @@ int test(int argc, const char *argv[])
TEST_THAT(test_multiple_uploads());
TEST_THAT(test_housekeeping_deletes_files());
- return (failures == 0);
+ TEST_LINE(num_tests_selected > 0, "No tests matched the patterns "
+ "specified on the command line");
+
+ return (failures == 0 && num_tests_selected > 0) ? 0 : 1;
}