Merge remote branch 'origin/7.8'
[mesa.git] / progs / tests / SConscript
1 Import('*')
2
3 linux_progs = [
4 'api_speed',
5 ]
6
7 glx_progs = [
8 'auxbuffer',
9 'getprocaddress',
10 'jkrahntest',
11 'sharedtex',
12 'texobjshare',
13 ]
14
15 mesa_progs = [
16 'debugger',
17 ]
18
19 progs = [
20 'afsmultiarb',
21 'antialias',
22 'arbfpspec',
23 'arbfptest1',
24 'arbfptexture',
25 'arbfptrig',
26 'arbnpot',
27 'arbnpot-mipmap',
28 'arbvptest1',
29 'arbvptest3',
30 'arbvptorus',
31 'arbvpwarpmesh',
32 'arraytexture',
33 'blendminmax',
34 'blendsquare',
35 'blendxor',
36 'blitfb',
37 'bufferobj',
38 'bug_3050',
39 'bug_3101',
40 'bug_3195',
41 'bug_texstore_i8',
42 'calibrate_rast',
43 'condrender',
44 'copypixrate',
45 'crossbar',
46 'cva',
47 'cva_huge',
48 'cylwrap',
49 'drawbuffers',
50 'drawbuffers2',
51 'exactrast',
52 'ext422square',
53 'fbotest1',
54 'fbotest2',
55 'fbotest3',
56 'fillrate',
57 'floattex',
58 'fog',
59 'fogcoord',
60 'fptest1',
61 'fptexture',
62 'getteximage',
63 'glutfx',
64 'interleave',
65 'invert',
66 'lineclip',
67 'manytex',
68 'mapbufrange',
69 'mapvbo',
70 'minmag',
71 'mipgen',
72 'mipmap_comp',
73 'mipmap_comp_tests',
74 'mipmap_limits',
75 'mipmap_view',
76 'multipal',
77 'multitexarray',
78 'multiwindow',
79 'no_s3tc',
80 'packedpixels',
81 'pbo',
82 'persp_hint',
83 'prog_parameter',
84 'quads',
85 'random',
86 'readrate',
87 'rubberband',
88 'scissor',
89 'scissor-viewport',
90 'seccolor',
91 'shader_api',
92 'stencilreaddraw',
93 'stencil_twoside',
94 'stencil_wrap',
95 'stencilwrap',
96 'streaming_rect',
97 'subtex',
98 'subtexrate',
99 'tex1d',
100 'texcmp',
101 'texcompress2',
102 'texcompsub',
103 'texdown',
104 'texfilt',
105 'texgenmix',
106 'texline',
107 'texobj',
108 'texrect',
109 'texwrap',
110 'unfilledclip',
111 'vao-01',
112 'vao-02',
113 'vparray',
114 'vpeval',
115 'vptest1',
116 'vptest2',
117 'vptest3',
118 'vptorus',
119 'vpwarpmesh',
120 'yuvrect',
121 'yuvsquare',
122 'zbitmap',
123 'zcomp',
124 'zdrawpix',
125 'zreaddraw',
126 ]
127
128 for prog in progs:
129 progs_env.Program(
130 target = prog,
131 source = prog + '.c',
132 )