diff options
author | Dylan Baker <baker.dylan.c@gmail.com> | 2016-01-04 11:12:59 -0800 |
---|---|---|
committer | Dylan Baker <baker.dylan.c@gmail.com> | 2016-01-08 12:25:21 -0800 |
commit | 8c2b750629c52f4d45b24ea346b79a5c65f7f201 (patch) | |
tree | b3c8afa37c7462da49bcf0245c7e6034924480e7 /README | |
parent | 317a0f0c6492641e0aecbd6cb097252ef81a2837 (diff) |
framework/test/opengl.py: Add environment variable to turn off fast skipping
Setting PIGLIT_NO_FAST_SKIP will disable the fast skipping mechanism
altogether.
It does this by shadowing FastSkipMixin at import time. This method is
robust and cheap, but makes testing difficult.
Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Diffstat (limited to 'README')
-rw-r--r-- | README | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -297,6 +297,13 @@ behaves. glslparsertest. This can be used to test ES<x>_COMPATABILITY extensions for OpenGL + PIGLIT_NO_FAST_SKIP + Piglit has a mechanism run in the python layer for skipping tests with + unmet OpenGL or window system dependencies without starting a new + process (which is expensive). Sometimes this system doesn't work or is + undesirable, setting this environment variable to True will disable this + system. + 3.2 Note -------- |