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 '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 'stencil_twoside',
93 'stencil_wrap',
94 'stencilwrap',
95 'streaming_rect',
96 'subtex',
97 'subtexrate',
98 'tex1d',
99 'texcmp',
100 'texcompress2',
101 'texcompsub',
102 'texdown',
103 'texfilt',
104 'texgenmix',
105 'texline',
106 'texobj',
107 'texrect',
108 'texwrap',
109 'unfilledclip',
110 'vao-01',
111 'vao-02',
112 'vparray',
113 'vpeval',
114 'vptest1',
115 'vptest2',
116 'vptest3',
117 'vptorus',
118 'vpwarpmesh',
119 'yuvrect',
120 'yuvsquare',
121 'zbitmap',
122 'zcomp',
123 'zdrawpix',
124 'zreaddraw',
125 ]
126
127 for prog in progs:
128 progs_env.Program(
129 target = prog,
130 source = prog + '.c',
131 )