diff options
-rw-r--r-- | tests/configs/gpu-ruby.py | 4 | ||||
-rw-r--r-- | tests/testing/results.py | 14 |
2 files changed, 11 insertions, 7 deletions
diff --git a/tests/configs/gpu-ruby.py b/tests/configs/gpu-ruby.py index 6b20c31e8..e846dbaf6 100644 --- a/tests/configs/gpu-ruby.py +++ b/tests/configs/gpu-ruby.py @@ -33,6 +33,8 @@ # Author: Brad Beckmann # +from __future__ import print_function + import m5 from m5.objects import * from m5.defines import buildEnv @@ -77,7 +79,7 @@ def run_test(root): # simulate until program terminates exit_event = m5.simulate(maxtick) - print 'Exiting @ tick', m5.curTick(), 'because', exit_event.getCause() + print('Exiting @ tick', m5.curTick(), 'because', exit_event.getCause()) parser = optparse.OptionParser() Options.addCommonOptions(parser) diff --git a/tests/testing/results.py b/tests/testing/results.py index 387362a75..4e0707860 100644 --- a/tests/testing/results.py +++ b/tests/testing/results.py @@ -37,6 +37,8 @@ # # Authors: Andreas Sandberg +from __future__ import print_function + from abc import ABCMeta, abstractmethod import inspect import pickle @@ -173,21 +175,21 @@ class Text(ResultFormatter): def dump_suites(self, suites): fout = self.fout for suite in suites: - print >> fout, "--- %s ---" % suite.name + print("--- %s ---" % suite.name, file=fout) for t in suite.results: - print >> fout, "*** %s" % t + print("*** %s" % t, file=fout) if t and not self.verbose: continue if t.message: - print >> fout, t.message + print(t.message, file=fout) if t.stderr: - print >> fout, t.stderr + print(t.stderr, file=fout) if t.stdout: - print >> fout, t.stdout + print(t.stdout, file=fout) class TextSummary(ResultFormatter): """Output test results as a text summary""" @@ -209,7 +211,7 @@ class TextSummary(ResultFormatter): fout = self.fout for suite in suites: status = self.test_status(suite) - print >> fout, "%s: %s" % (suite.name, status) + print("%s: %s" % (suite.name, status), file=fout) class JUnit(ResultFormatter): """Output test results as JUnit XML""" |