summaryrefslogtreecommitdiff
path: root/framework/test/piglit_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'framework/test/piglit_test.py')
-rw-r--r--framework/test/piglit_test.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/framework/test/piglit_test.py b/framework/test/piglit_test.py
index b64110bbc..166c2f792 100644
--- a/framework/test/piglit_test.py
+++ b/framework/test/piglit_test.py
@@ -244,14 +244,14 @@ class VkRunnerTest(PiglitBaseTest):
'vkrunner', 'bin', fallback='vkrunner')
super(VkRunnerTest, self).__init__(
- [vkrunner_bin, filename],
+ [vkrunner_bin],
run_concurrent=True)
self.filename = filename
@PiglitBaseTest.command.getter
def command(self):
- # This is overriden because we don't want PiglitBaseTest to
- # prepend TEST_BIN_DIR so that it will look for vkrunner in
+ # self._command is used because we don't want PiglitBaseTest
+ # to prepend TEST_BIN_DIR so that it will look for vkrunner in
# the search path.
- return self._command
+ return self._command + [os.path.join(ROOT_DIR, self.filename)]