Merge remote branch 'origin/lp-binning'
[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 'drawbuffers',
49 'drawbuffers2',
50 'exactrast',
51 'ext422square',
52 'fbotest1',
53 'fbotest2',
54 'fbotest3',
55 'fillrate',
56 'floattex',
57 'fog',
58 'fogcoord',
59 'fptest1',
60 'fptexture',
61 'getteximage',
62 'glutfx',
63 'interleave',
64 'invert',
65 'lineclip',
66 'manytex',
67 'mapbufrange',
68 'mapvbo',
69 'minmag',
70 'mipgen',
71 'mipmap_comp',
72 'mipmap_comp_tests',
73 'mipmap_limits',
74 'mipmap_view',
75 'multipal',
76 'multitexarray',
77 'multiwindow',
78 'no_s3tc',
79 'packedpixels',
80 'pbo',
81 'persp_hint',
82 'prog_parameter',
83 'quads',
84 'random',
85 'readrate',
86 'rubberband',
87 'scissor',
88 'scissor-viewport',
89 'seccolor',
90 'shader_api',
91 'stencil_twoside',
92 'stencil_wrap',
93 'stencilwrap',
94 'streaming_rect',
95 'subtex',
96 'subtexrate',
97 'tex1d',
98 'texcmp',
99 'texcompress2',
100 'texcompsub',
101 'texdown',
102 'texfilt',
103 'texgenmix',
104 'texline',
105 'texobj',
106 'texrect',
107 'texwrap',
108 'unfilledclip',
109 'vao-01',
110 'vao-02',
111 'vparray',
112 'vpeval',
113 'vptest1',
114 'vptest2',
115 'vptest3',
116 'vptorus',
117 'vpwarpmesh',
118 'yuvrect',
119 'yuvsquare',
120 'zcomp',
121 'zdrawpix',
122 'zreaddraw',
123 ]
124
125 for prog in progs:
126 progs_env.Program(
127 target = prog,
128 source = prog + '.c',
129 )