Author: Ronny Pfannschmidt <ronny.pfannschm...@gmx.de>
Branch: refine-testrunner
Changeset: r61608:7e90c4f418c3
Date: 2013-02-22 14:32 +0100
http://bitbucket.org/pypy/pypy/changeset/7e90c4f418c3/

Log:    reenable junitxml output

diff --git a/testrunner/runner.py b/testrunner/runner.py
--- a/testrunner/runner.py
+++ b/testrunner/runner.py
@@ -14,7 +14,7 @@
     args = interp + test_driver
     args += ['-p', 'resultlog',
              '--resultlog=%s' % logfname,
-             #'--junitxml=%s.junit' % logfname,
+             '--junitxml=%s.junit' % logfname,
              test]
 
     args = map(str, args)
diff --git a/testrunner/test/test_runner.py b/testrunner/test/test_runner.py
--- a/testrunner/test/test_runner.py
+++ b/testrunner/test/test_runner.py
@@ -33,7 +33,7 @@
                     'driver', 'darg',
                     '-p', 'resultlog',
                     '--resultlog=LOGFILE',
-                    #'--junitxml=LOGFILE.junit',
+                    '--junitxml=LOGFILE.junit',
 
                     'test_one']
 
@@ -51,7 +51,7 @@
                     'driver', 'darg',
                     '-p', 'resultlog',
                     '--resultlog=LOGFILE',
-                    #'--junitxml=LOGFILE.junit',
+                    '--junitxml=LOGFILE.junit',
                     'test_one']
         assert args == expected
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to