diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2015-01-21 15:03:36 -0500 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2015-01-21 15:04:28 -0500 |
commit | ce3488c0ed38927f07ce68ab7c9e24147ab449de (patch) | |
tree | 5ca61a46b86509b98c9fa4726833e16c279a23c8 | |
parent | 44234c1c39f16176332e41f0c7a65efa69a5dc7f (diff) |
oclconform: Test commands should be passed as a list
-rw-r--r-- | framework/test/oclconform.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/test/oclconform.py b/framework/test/oclconform.py index 68fc07144..8186f5fce 100644 --- a/framework/test/oclconform.py +++ b/framework/test/oclconform.py @@ -88,10 +88,10 @@ def add_oclconform_tests(profile): subtest = m.group(1) subtest_command = join(bindir, run_subtests.replace('<subtest>', subtest)) add_sub_test(profile, test_name, subtest, - OCLConform(command=subtest_command, + OCLConform(command=subtest_command.split(), run_concurrent=should_run_concurrent)) else: run_test = PIGLIT_CONFIG.get(test_section_name, 'run_test') - add_test(profile, test_name, OCLConform(command=run_test, + add_test(profile, test_name, OCLConform(command=run_test.split(), run_concurrent=should_run_concurrent)) |