summaryrefslogtreecommitdiff
path: root/tests/deqp_gles3.py
diff options
context:
space:
mode:
authorDylan Baker <baker.dylan.c@gmail.com>2015-03-23 10:05:32 -0700
committerDylan Baker <baker.dylan.c@gmail.com>2015-04-13 15:19:43 -0700
commit4d59e1d7aaa55c080352133b3b8cc58ac4beb620 (patch)
tree58615f03b9510aae559d2ce66d96d1530c1dbc1e /tests/deqp_gles3.py
parent8ad54c86ff990b1c39b0cd5de605ed277ee09d99 (diff)
deqp_gles3.py: use grouptools separator for test separators
This is an oversight in the previous set of patches. Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Diffstat (limited to 'tests/deqp_gles3.py')
-rw-r--r--tests/deqp_gles3.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/deqp_gles3.py b/tests/deqp_gles3.py
index 409273b11..c55eb6684 100644
--- a/tests/deqp_gles3.py
+++ b/tests/deqp_gles3.py
@@ -24,7 +24,7 @@ import subprocess
import xml.etree.cElementTree as ET
# Piglit modules
-import framework
+from framework import core, grouptools
from framework.profile import Test, TestProfile
__all__ = ['profile']
@@ -66,8 +66,7 @@ def get_option(env_varname, config_option):
return opt
try:
- opt = framework.core.PIGLIT_CONFIG.get(config_option[0],
- config_option[1])
+ opt = core.PIGLIT_CONFIG.get(config_option[0], config_option[1])
except ConfigParser.NoSectionError:
pass
except ConfigParser.NoOptionError:
@@ -167,7 +166,7 @@ def add_tests():
for deqp_testname in iter_deqp_test_cases():
# dEQP uses '.' as the testgroup separator.
- piglit_testname = deqp_testname.replace('.', '/')
+ piglit_testname = deqp_testname.replace('.', grouptools.SEPARATOR)
test = DEQPTest(deqp_testname)
profile.test_list[piglit_testname] = test