summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2017-03-31 07:51:56 (GMT)
committerTobias Markmann <tm@ayena.de>2017-03-31 09:49:34 (GMT)
commitf4034579f0d4adc6d2e7cb293e91cabd6d598887 (patch)
treea71ecb84db3d56f724ca795efe9e15012d682fbd
parent613d66b9847e9e4338a37b22b230d3177872a43c (diff)
downloadswift-f4034579f0d4adc6d2e7cb293e91cabd6d598887.zip
swift-f4034579f0d4adc6d2e7cb293e91cabd6d598887.tar.bz2
Fix unhandled Google Test exception in test runner
Coverity raised this issue. Test-Information: Unit tests pass on macOS 10.12.4. Change-Id: I5da68b706feb2f89124777d6153a703dba3bd526
-rw-r--r--QA/Checker/checker.cpp17
1 files changed, 14 insertions, 3 deletions
diff --git a/QA/Checker/checker.cpp b/QA/Checker/checker.cpp
index b23e7ff..bcf0f5c 100644
--- a/QA/Checker/checker.cpp
+++ b/QA/Checker/checker.cpp
@@ -1,127 +1,138 @@
/*
- * Copyright (c) 2010-2016 Isode Limited.
+ * Copyright (c) 2010-2017 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#include <cstdlib>
#include <fstream>
#include <string>
#include <sstream>
#include <gtest/gtest.h>
#include <cppunit/BriefTestProgressListener.h>
#include <cppunit/TextOutputter.h>
#include <cppunit/TextTestProgressListener.h>
#include <cppunit/TextTestResult.h>
#include <cppunit/XmlOutputter.h>
#include <cppunit/extensions/TestFactoryRegistry.h>
#include <cppunit/ui/text/TestRunner.h>
#include <Swiften/Base/Log.h>
+using Swift::Log;
+
int main(int argc, char* argv[]) {
bool verbose = false;
bool outputXML = false;
- Swift::Log::setLogLevel(Swift::Log::error);
+ Log::setLogLevel(Swift::Log::error);
// Parse parameters
std::vector<std::string> testsToRun;
for (int i = 1; i < argc; ++i) {
std::string param(argv[i]);
if (param == "--verbose") {
verbose = true;
}
else if (param == "--xml") {
outputXML = true;
}
else if (param == "--debug") {
Swift::Log::setLogLevel(Swift::Log::debug);
}
else {
testsToRun.push_back(param);
}
}
if (testsToRun.empty()) {
testsToRun.push_back("");
}
// generate output filenames for XML test output
std::string gtestOutputFilename;
std::string cppunitOutputFilename;
if (outputXML) {
auto programName = std::string(argv[0]);
std::stringstream outFileStringStreamGTest("");
outFileStringStreamGTest << "xml:" << programName << "-report.gtest.xml";
gtestOutputFilename = outFileStringStreamGTest.str();
std::stringstream outFileStringStreamCppUnit("");
outFileStringStreamCppUnit << programName << "-report.cppunit.xml";
cppunitOutputFilename = outFileStringStreamCppUnit.str();
}
if (outputXML && (std::getenv("GTEST_OUTPUT") == nullptr)) {
::testing::GTEST_FLAG(output) = gtestOutputFilename;
}
+ // Google Test might throw an exception in an anonymous namespace. Exiting
+ // due to uncaught execption is fine here.
+ // coverity[fun_call_w_exception]
::testing::InitGoogleTest(&argc, argv);
// Set up the listeners
CppUnit::TestResult controller;
CppUnit::TestResultCollector result;
controller.addListener(&result);
CppUnit::TextTestProgressListener progressListener;
CppUnit::BriefTestProgressListener verboseListener;
if (!outputXML) {
if (verbose) {
controller.addListener(&verboseListener);
}
else {
controller.addListener(&progressListener);
}
}
// Run the tests
CppUnit::TestRunner runner;
runner.addTest(CppUnit::TestFactoryRegistry::getRegistry().makeTest());
for (std::vector<std::string>::const_iterator i = testsToRun.begin(); i != testsToRun.end(); ++i) {
try {
runner.run(controller, *i);
}
catch (const std::exception& e) {
std::cerr << "Error: " << e.what() << std::endl;
return -1;
}
}
// Output the results
if (outputXML) {
std::ofstream cppUnitXUnitOutputFile;
cppUnitXUnitOutputFile.open(cppunitOutputFilename, std::ofstream::out | std::ofstream::trunc);
if (cppUnitXUnitOutputFile.is_open()) {
CppUnit::XmlOutputter outputter(&result, cppUnitXUnitOutputFile);
outputter.write();
}
else {
std::cerr << "Failed to overwrite " << cppunitOutputFilename << " output file." << std::endl;
return 1;
}
}
else {
CppUnit::TextOutputter outputter(&result, std::cerr);
outputter.write();
}
- auto googleTestWasSuccessful = RUN_ALL_TESTS() == 0 ? true : false;
+ auto googleTestWasSuccessful = false;
+ try {
+ googleTestWasSuccessful = RUN_ALL_TESTS() == 0 ? true : false;
+ } catch (const ::testing::internal::GoogleTestFailureException& e) {
+ googleTestWasSuccessful = false;
+ SWIFT_LOG(error) << "GoogleTestFailureException was thrown: " << e.what() << std::endl;
+ }
auto cppUnitWasSuccessful = result.wasSuccessful() ? true : false;
return (googleTestWasSuccessful && cppUnitWasSuccessful) ? 0 : 1;
}