summaryrefslogtreecommitdiff
path: root/tests/gpu.tests
blob: 3009a086d668f02baaaaf715e6c7388dfc84a07e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- coding: utf-8 -*-

# quick.tests minus compiler tests.

import framework.glsl_parser_test
import os.path

global profile

# Filter out any GLSLParserTest instances, as they're compiler tests.
def add_glsl_parser_test(group, filepath, test_name):
    # Dummy version of framework.glsl_parser_test.add_glsl_parser_test
    pass

# This be done before executing the base test list script
framework.glsl_parser_test.add_glsl_parser_test = add_glsl_parser_test


execfile(os.path.dirname(__file__) + '/quick.tests')

# Drop these as they're basically compiler tests and take forever.
del profile.tests['shaders']['glsl-fs-inline-explosion']
del profile.tests['shaders']['glsl-fs-unroll-explosion']
del profile.tests['shaders']['glsl-vs-inline-explosion']
del profile.tests['shaders']['glsl-vs-unroll-explosion']

# Drop ARB_vertex_program/ARB_fragment_program compiler tests.
del profile.tests['asmparsertest']