Merge branch '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 'texcompress2',
13 'texobjshare',
14 ]
15
16 mesa_progs = [
17 'debugger',
18 ]
19
20 progs = [
21 'afsmultiarb',
22 'antialias',
23 'arbfpspec',
24 'arbfptest1',
25 'arbfptexture',
26 'arbfptrig',
27 'arbnpot',
28 'arbnpot-mipmap',
29 'arbvptest1',
30 'arbvptest3',
31 'arbvptorus',
32 'arbvpwarpmesh',
33 'arraytexture',
34 'blendminmax',
35 'blendsquare',
36 'blendxor',
37 'blitfb',
38 'bufferobj',
39 'bug_3050',
40 'bug_3101',
41 'bug_3195',
42 'bug_texstore_i8',
43 'calibrate_rast',
44 'condrender',
45 'copypixrate',
46 'crossbar',
47 'cva',
48 'cva_huge',
49 'cylwrap',
50 'drawbuffers',
51 'drawbuffers2',
52 'exactrast',
53 'ext422square',
54 'fbotest1',
55 'fbotest2',
56 'fbotest3',
57 'fillrate',
58 'floattex',
59 'fog',
60 'fogcoord',
61 'fptest1',
62 'fptexture',
63 'getteximage',
64 'glutfx',
65 'interleave',
66 'invert',
67 'lineclip',
68 'manytex',
69 'mapbufrange',
70 'mapvbo',
71 'minmag',
72 'mipgen',
73 'mipmap_comp',
74 'mipmap_comp_tests',
75 'mipmap_limits',
76 'mipmap_view',
77 'multipal',
78 'multitexarray',
79 'multiwindow',
80 'no_s3tc',
81 'packedpixels',
82 'pbo',
83 'persp_hint',
84 'prog_parameter',
85 'quads',
86 'random',
87 'readrate',
88 'rubberband',
89 'scissor',
90 'scissor-viewport',
91 'seccolor',
92 'shader_api',
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 )