summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2018-06-15 13:03:07 -0700
committerEric Anholt <eric@anholt.net>2018-07-11 10:45:24 -0700
commita8018cb704932b03d5e6416017b750a521d69bf1 (patch)
tree1eecbdddf94ff4b00d7b0a045ae19f3b632048f4
parent4cccf165a7b513c4192b2f4a047d24204f9305b5 (diff)
Allow DEQP tests to be run in parallel.
-rw-r--r--framework/test/deqp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/test/deqp.py b/framework/test/deqp.py
index 042a522b2..ab3350c3e 100644
--- a/framework/test/deqp.py
+++ b/framework/test/deqp.py
@@ -170,7 +170,7 @@ class DEQPBaseTest(Test):
def __init__(self, case_name):
command = [self.deqp_bin, '--deqp-case=' + case_name]
- super(DEQPBaseTest, self).__init__(command)
+ super(DEQPBaseTest, self).__init__(command, run_concurrent=True)
# dEQP's working directory must be the same as that of the executable,
# otherwise it cannot find its data files (2014-12-07).