summaryrefslogtreecommitdiff
path: root/tests/all.py
diff options
context:
space:
mode:
authorDylan Baker <baker.dylan.c@gmail.com>2015-01-17 22:11:06 -0800
committerDylan Baker <baker.dylan.c@gmail.com>2015-03-05 09:46:46 -0800
commit16cf221c8fd5fbcb74b0ee357af4ee815d2ab51c (patch)
tree63c485c8adf2d5c7b4634ebfc87109370b6bb69e /tests/all.py
parent3ecf93aab8ed4eb8149907d2906c9a6b5731428f (diff)
all.py: use profile.test_list instead of profile.test for glean tests
These tests are already formated using grouptools, with no intermediate tree structures. Moving them to the flat test list reduces the amount of time spent migrating them to test_list before running tests. Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Diffstat (limited to 'tests/all.py')
-rw-r--r--tests/all.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/all.py b/tests/all.py
index e9ad7d8ef..2c3825bc0 100644
--- a/tests/all.py
+++ b/tests/all.py
@@ -355,8 +355,8 @@ for pairs in [(['glsl1'], glean_glsl_tests),
(['vertProg1'], glean_vp_tests)]:
for prefix, name in itertools.product(*pairs):
groupname = grouptools.join('glean', '{0}-{1}'.format(prefix, name))
- profile.tests[groupname] = GleanTest(prefix)
- profile.tests[groupname].env['PIGLIT_TEST'] = name
+ profile.test_list[groupname] = GleanTest(prefix)
+ profile.test_list[groupname].env['PIGLIT_TEST'] = name
def add_fbo_formats_tests(path, extension, suffix=''):
path = grouptools.from_path(path)