From d39fdbcd444ee62ca6118b9bdf8314bc206fbb08 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Mon, 4 May 2015 18:56:29 +0000 Subject: 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. --- test/backupstore/testbackupstore.cpp | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'test/backupstore/testbackupstore.cpp') 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; } -- cgit v1.2.3