Signed-off-by: Dylan Baker <[email protected]> --- framework/tests/test_lists.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/framework/tests/test_lists.py b/framework/tests/test_lists.py index fe5ec13..5343b44 100644 --- a/framework/tests/test_lists.py +++ b/framework/tests/test_lists.py @@ -29,21 +29,21 @@ es3conform, etc) import importlib import os.path as path from nose.plugins.skip import SkipTest +import framework.tests.utils as utils [email protected]_generator def gen_test_import(): """ Generates a bunch of tests to import the various test modules """ - yieldable = check_import - # Test the various OpenGL modules for module in ['all', 'quick', 'gpu', 'sanity', 'r500', 'r300']: - yieldable.description = "Test import of tests.{}".format(module) - yield yieldable, "tests." + module + check_import.description = "Test import of tests.{}".format(module) + yield check_import, "tests." + module # Test the various OpenCL modules for module in ['cl', 'all_cl', 'quick_cl']: - yieldable.description = "Test import of tests.{}".format(module) - yield yieldable, "tests." + module + check_import.description = "Test import of tests.{}".format(module) + yield check_import, "tests." + module def check_import(module): -- 2.0.0 _______________________________________________ Piglit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/piglit
