summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2011-07-29 17:14:06 -0700
committerKenneth Graunke <kenneth@whitecape.org>2011-07-29 17:35:54 -0700
commit8704cec42889a9d592e15dfaa77ad1498f30dc09 (patch)
tree6f11d931e5f3786cf217b108c97e70b5bd898b70
parent8762fc74edbc6a26de39a7507b935755e9feff5e (diff)
Remove @@@ from return code in Glean and GTF tests.
This is no longer necessary thanks to the JSON rework. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
-rw-r--r--framework/gleantest.py2
-rw-r--r--tests/gtf.tests2
2 files changed, 2 insertions, 2 deletions
diff --git a/framework/gleantest.py b/framework/gleantest.py
index e4907b38..0b02491a 100644
--- a/framework/gleantest.py
+++ b/framework/gleantest.py
@@ -96,7 +96,7 @@ class GleanTest(Test):
self.handleErr(results, err)
- results['info'] = "@@@Returncode: %d\n\nErrors:\n%s\n\nOutput:\n%s" % (glean.returncode, err, out)
+ results['info'] = "Returncode: %d\n\nErrors:\n%s\n\nOutput:\n%s" % (glean.returncode, err, out)
return results
diff --git a/tests/gtf.tests b/tests/gtf.tests
index d3a23fab..323e39f4 100644
--- a/tests/gtf.tests
+++ b/tests/gtf.tests
@@ -77,7 +77,7 @@ class GTFTest(PlainExecTest):
self.handleErr(results, err)
- results['info'] = "@@@Returncode: %d\n\nErrors:\n%s\n\nOutput:\n%s" % (proc.returncode, err, out)
+ results['info'] = "Returncode: %d\n\nErrors:\n%s\n\nOutput:\n%s" % (proc.returncode, err, out)
results['returncode'] = proc.returncode
else: