Author: David Schneider <[email protected]>
Branch: arm-backend-2
Changeset: r55951:15e0585281b8
Date: 2012-07-06 15:42 +0200
http://bitbucket.org/pypy/pypy/changeset/15e0585281b8/

Log:    disable junitxml generation as it seems not to be used and currently
        does not work with the setup for the ARM builders

diff --git a/testrunner/runner.py b/testrunner/runner.py
--- a/testrunner/runner.py
+++ b/testrunner/runner.py
@@ -112,7 +112,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
@@ -119,7 +119,7 @@
                     'driver', 'darg',
                     '-p', 'resultlog',
                     '--resultlog=LOGFILE',
-                    '--junitxml=LOGFILE.junit',
+                    #'--junitxml=LOGFILE.junit',
 
                     'test_one']
 
@@ -138,7 +138,7 @@
                     'driver', 'darg',
                     '-p', 'resultlog',
                     '--resultlog=LOGFILE',
-                    '--junitxml=LOGFILE.junit',
+                    #'--junitxml=LOGFILE.junit',
                     'test_one']
         assert self.called[0] == expected
         assert self.called == (expected, '/wd', 'out', 'secs')        
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to