summaryrefslogtreecommitdiff
path: root/libs/ardour/test/testrunner.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/test/testrunner.cc')
-rw-r--r--libs/ardour/test/testrunner.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/libs/ardour/test/testrunner.cc b/libs/ardour/test/testrunner.cc
index 2d9a8fc39e..ddb320e02b 100644
--- a/libs/ardour/test/testrunner.cc
+++ b/libs/ardour/test/testrunner.cc
@@ -54,23 +54,23 @@ main(int argc, char* argv[])
TestUI* test_ui = new TestUI();
CppUnit::TestResult testresult;
-
+
CppUnit::TestResultCollector collectedresults;
testresult.addListener (&collectedresults);
-
+
CppUnit::BriefTestProgressListener progress;
testresult.addListener (&progress);
-
+
CppUnit::TestRunner testrunner;
testrunner.addTest (CppUnit::TestFactoryRegistry::getRegistry ().makeTest ());
testrunner.run (testresult);
-
+
CppUnit::CompilerOutputter compileroutputter (&collectedresults, std::cerr);
compileroutputter.write ();
delete test_ui;
ARDOUR::cleanup ();
-
+
return collectedresults.wasSuccessful () ? 0 : 1;
}