Commit 12cf501da67 (tests/gpu.py: Don't use execfile) accidentally switched from execfile'ing quick.py to importing tests.all. Change this to import tests.quick.
Signed-off-by: Ilia Mirkin <[email protected]> --- tests/gpu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/gpu.py b/tests/gpu.py index 06138fc..d7690ae 100644 --- a/tests/gpu.py +++ b/tests/gpu.py @@ -2,7 +2,7 @@ # quick.tests minus compiler tests. -from tests.all import profile +from tests.quick import profile from framework.glsl_parser_test import GLSLParserTest __all__ = ['profile'] -- 1.8.3.2 _______________________________________________ Piglit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/piglit
