diff options
author | Kenneth Graunke <kenneth@whitecape.org> | 2011-07-29 17:14:06 -0700 |
---|---|---|
committer | Kenneth Graunke <kenneth@whitecape.org> | 2011-07-29 17:35:54 -0700 |
commit | 8704cec42889a9d592e15dfaa77ad1498f30dc09 (patch) | |
tree | 6f11d931e5f3786cf217b108c97e70b5bd898b70 /framework | |
parent | 8762fc74edbc6a26de39a7507b935755e9feff5e (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>
Diffstat (limited to 'framework')
-rw-r--r-- | framework/gleantest.py | 2 |
1 files changed, 1 insertions, 1 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 |