diff options
author | Dylan Baker <dylanx.c.baker@intel.com> | 2014-12-29 16:29:56 -0800 |
---|---|---|
committer | Dylan Baker <baker.dylan.c@gmail.com> | 2015-01-09 09:56:30 -0800 |
commit | dceb03dae87dd4ebf2b43a2d09d243f49fd7f0ef (patch) | |
tree | 6f5b035ffc3773b97f9ac117c80a1d3fb9f612c5 | |
parent | be2071c5d70133b7062e1b8be2b31a6f1d57a958 (diff) |
sanity.py: use grouptools.join instead of hardcoded '/' for groups
Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Acked-by: Brian Paul <brianp@vmware.com>
-rw-r--r-- | tests/sanity.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/sanity.py b/tests/sanity.py index 6a65348ee..2cc47de99 100644 --- a/tests/sanity.py +++ b/tests/sanity.py @@ -2,6 +2,7 @@ # Minimal tests to check whether the installation is working # +from framework import grouptools from framework.profile import TestProfile from framework.test import PiglitGLTest @@ -9,5 +10,5 @@ __all__ = ['profile'] profile = TestProfile() -profile.tests['spec/!OpenGL 1.0/gl-1.0-readpixsanity'] = \ +profile.tests[grouptools.join('spec', '!OpenGL 1.0', 'gl-1.0-readpixsanity')] = \ PiglitGLTest(['gl-1.0-readpixsanity'], run_concurrent=True) |