diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2016-10-17 17:08:23 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2016-11-10 10:51:48 -0800 |
commit | 79baff4e6aba5eb5323e2485a5dcab3483c8733a (patch) | |
tree | 338a169d5b06f7a1a49046dfb45ec17ecd6011e0 /tests/cl.py | |
parent | b1d0232cb56f88f82e6e4117d5ecefcffa46e231 (diff) |
framework/profile: Move group_manager from TestProfile to TestDict
This move is going to allow us to supplement the TestDict with a
different class that can be used instead that loads xml.
Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Diffstat (limited to 'tests/cl.py')
-rw-r--r-- | tests/cl.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/cl.py b/tests/cl.py index 73fba0d53..921d6ac6f 100644 --- a/tests/cl.py +++ b/tests/cl.py @@ -23,14 +23,14 @@ __all__ = ['profile'] profile = TestProfile() # Custom -with profile.group_manager(PiglitCLTest, 'custom') as g: +with profile.test_list.group_manager(PiglitCLTest, 'custom') as g: g(['cl-custom-run-simple-kernel'], 'Run simple kernel') g(['cl-custom-flush-after-enqueue-kernel'], 'Flush after enqueue kernel') g(['cl-custom-r600-create-release-buffer-bug'], 'r600 create release buffer bug') g(['cl-custom-buffer-flags'], 'Buffer flags') -with profile.group_manager(PiglitCLTest, 'api') as g: +with profile.test_list.group_manager(PiglitCLTest, 'api') as g: # Platform g(['cl-api-get-platform-ids'], 'clGetPlatformIDs') g(['cl-api-get-platform-info'], 'clGetPlatformInfo') @@ -92,13 +92,13 @@ with profile.group_manager(PiglitCLTest, 'api') as g: g(['cl-api-get-event-info'], 'clGetEventInfo') g(['cl-api-retain_release-event'], 'clRetainEvent and clReleaseEvent') -with profile.group_manager(PiglitCLTest, 'program') as g: +with profile.test_list.group_manager(PiglitCLTest, 'program') as g: g(['cl-program-max-work-item-sizes'], 'Run kernel with max work item sizes') g(['cl-program-bitcoin-phatk'], 'Bitcoin: phatk kernel') g(['cl-program-predefined-macros'], 'Check predefined preprocessor macros') -with profile.group_manager(PiglitCLTest, 'interop') as g: +with profile.test_list.group_manager(PiglitCLTest, 'interop') as g: g(['cl-interop-egl_khr_cl_event2'], 'EGL_KHR_cl_event2') |