X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fgallium%2Ftests%2Funit%2FSConscript;h=655e8a9b41cbfefaf7d43cc093e792493042beae;hb=b2ddb93ff3b8c88682634ccdef247967e31fab84;hp=a200123f4465c9d6fc0dc60c9b1c30401158e0ac;hpb=b172aebfdf288d3487876f7cb01c62582920d4c2;p=mesa.git diff --git a/src/gallium/tests/unit/SConscript b/src/gallium/tests/unit/SConscript index a200123f446..655e8a9b41c 100644 --- a/src/gallium/tests/unit/SConscript +++ b/src/gallium/tests/unit/SConscript @@ -4,14 +4,19 @@ env = env.Clone() env.Prepend(LIBS = [gallium]) -if platform == 'sunos5': +if env['platform'] in ('freebsd8', 'sunos5'): env.Append(LIBS = ['m']) +if env['platform'] == 'freebsd8': + env.Append(LIBS = ['pthread']) + progs = [ 'pipe_barrier_test', 'u_cache_test', 'u_format_test', - 'u_half_test' + 'u_format_compatible_test', + 'u_half_test', + 'translate_test' ] for prog in progs: