From 691ebaa8bb101f70caa9e9df8fd870e2b8577a60 Mon Sep 17 00:00:00 2001 From: Brian Aker Date: Sat, 7 Apr 2012 18:25:19 -0700 Subject: [PATCH] Add none support for testing. --- libtest/test.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libtest/test.cc b/libtest/test.cc index 25c97c94..ef10028c 100644 --- a/libtest/test.cc +++ b/libtest/test.cc @@ -237,6 +237,11 @@ int main(int argc, char *argv[]) } } + if (collection_to_run.compare("none") == 0) + { + return EXIT_SUCCESS; + } + if (collection_to_run.empty() == false) { Out << "Only testing " << collection_to_run; -- 2.30.2