summaryrefslogtreecommitdiff
path: root/tests/cpu.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cpu.py')
-rw-r--r--tests/cpu.py31
1 files changed, 0 insertions, 31 deletions
diff --git a/tests/cpu.py b/tests/cpu.py
deleted file mode 100644
index 65d999062..000000000
--- a/tests/cpu.py
+++ /dev/null
@@ -1,31 +0,0 @@
-"""Profile that removes all GPU based tests.
-
-This profile is the inverse of gpu.py.
-
-It runs GLSLParserTests, asmparsertests, and ARB_vertex_program and
-ARB_fragment_program tests only.
-
-Using driver specific overrides these can be forced to run on arbitrary
-hardware.
-
-"""
-
-from __future__ import (
- absolute_import, division, print_function, unicode_literals
-)
-from tests.quick import profile as _profile
-from framework.test import GLSLParserTest
-
-__all__ = ['profile']
-
-profile = _profile.copy() # pylint: disable=invalid-name
-
-
-def filter_gpu(name, test):
- """Remove all tests that are run on the GPU."""
- if isinstance(test, GLSLParserTest) or name.startswith('asmparsertest'):
- return True
- return False
-
-
-profile.filters.append(filter_gpu)