summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--QA/Checker/checker.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/QA/Checker/checker.cpp b/QA/Checker/checker.cpp
index 3cc7713..f4ec6f1 100644
--- a/QA/Checker/checker.cpp
+++ b/QA/Checker/checker.cpp
@@ -9,6 +9,8 @@
9#include <string> 9#include <string>
10#include <sstream> 10#include <sstream>
11 11
12#include <boost/algorithm/string/predicate.hpp>
13
12#include <gtest/gtest.h> 14#include <gtest/gtest.h>
13#include <QA/Checker/CppUnitTestResultPrinter.h> 15#include <QA/Checker/CppUnitTestResultPrinter.h>
14 16
@@ -43,6 +45,9 @@ int main(int argc, char* argv[]) {
43 else if (param == "--debug") { 45 else if (param == "--debug") {
44 Swift::Log::setLogLevel(Swift::Log::debug); 46 Swift::Log::setLogLevel(Swift::Log::debug);
45 } 47 }
48 else if (boost::starts_with(param, "--")) {
49 continue;
50 }
46 else { 51 else {
47 testsToRun.push_back(param); 52 testsToRun.push_back(param);
48 } 53 }