summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2011-07-29 17:43:16 -0700
committerKenneth Graunke <kenneth@whitecape.org>2011-07-29 17:44:39 -0700
commite5d5b6c00c7e0216e46b00f63ff775ee98f7d659 (patch)
tree78f9c358d054058be8d8037f17e434742f73866f
parentcaa35ef4e584d5a254f0079b67ca34998ae27230 (diff)
gtf: Run with -width=117, -height=43, -seed=2.
The 500x500 windows were rather annoyingly large. 117x43 with seed 2 is one of the official configurations needed for ES 2.0 conformance, so we may as well run that. Non-square may be a bit meaner. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
-rw-r--r--tests/gtf.tests2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gtf.tests b/tests/gtf.tests
index cc5f59b51..23bf3878f 100644
--- a/tests/gtf.tests
+++ b/tests/gtf.tests
@@ -46,7 +46,7 @@ class GTFTest(ExecTest):
pass_re = re.compile(r'Regression PASSED all 1 tests')
def __init__(self, testpath):
- ExecTest.__init__(self, [path.join(testBinDir, 'GTF'), '-noimagefileio', '-id=7', '-run=' + testpath])
+ ExecTest.__init__(self, [path.join(testBinDir, 'GTF'), '-noimagefileio', '-width=113', '-height=47', '-seed=2', '-id=7', '-run=' + testpath])
def interpretResult(self, out, results):
if self.pass_re.search(out) is not None: