From 2bad956fc64f5a338db0cf34573bee97ff016769 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20W=C3=A4ckerlin?= Date: Fri, 18 Nov 2011 16:02:55 +0000 Subject: [PATCH] add output for optional serialization test; closes #9 --- test/optional_serialization_test.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/optional_serialization_test.cxx b/test/optional_serialization_test.cxx index 65f24c1..a7e5152 100644 --- a/test/optional_serialization_test.cxx +++ b/test/optional_serialization_test.cxx @@ -109,7 +109,7 @@ CPPUNIT_TEST_SUITE_REGISTRATION(OptionalSerializationTest); int main(int argc, char** argv) try { std::ofstream ofs((*argv+std::string(".xml")).c_str()); CppUnit::TextUi::TestRunner runner; - //runner.setOutputter(new CppUnit::XmlOutputter(&runner.result(), ofs)); + runner.setOutputter(new CppUnit::XmlOutputter(&runner.result(), ofs)); runner.addTest(CppUnit::TestFactoryRegistry::getRegistry().makeTest()); return runner.run() ? 0 : 1; } catch (std::exception& e) {