From 4abfc6a2809a494e5de53381ed0ded57b32f9e27 Mon Sep 17 00:00:00 2001 From: Prasanna Santhanam Date: Thu, 28 Jun 2012 16:47:47 +0530 Subject: [PATCH] xml reports for TestCaseEngine --- tools/marvin/marvin/TestCaseExecuteEngine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/marvin/marvin/TestCaseExecuteEngine.py b/tools/marvin/marvin/TestCaseExecuteEngine.py index 67ed14a6aab..ccb8bf728d1 100644 --- a/tools/marvin/marvin/TestCaseExecuteEngine.py +++ b/tools/marvin/marvin/TestCaseExecuteEngine.py @@ -87,4 +87,4 @@ class TestCaseExecuteEngine(object): if self.format == "text": unittest.TextTestRunner(stream=self.testResultLogFile, verbosity=2).run(self.suite) elif self.format == "xml": - xmlrunner.XMLTestRunner(output=self.testResultLogFile, verbose=True).run(self.suite) \ No newline at end of file + xmlrunner.XMLTestRunner(output='xml-reports', verbose=True).run(self.suite) \ No newline at end of file