mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-21 01:10:44 +02:00
llvmpipe: Disable unit tests on embedded platforms.
This commit is contained in:
parent
5cf88a4787
commit
9cd2abdf8b
1 changed files with 15 additions and 14 deletions
|
|
@ -73,21 +73,22 @@ llvmpipe = env.ConvenienceLibrary(
|
|||
])
|
||||
|
||||
|
||||
env = env.Clone()
|
||||
if env['platform'] != 'embedded':
|
||||
env = env.Clone()
|
||||
|
||||
env.Prepend(LIBS = [llvmpipe] + gallium)
|
||||
env.Prepend(LIBS = [llvmpipe] + gallium)
|
||||
|
||||
tests = [
|
||||
'format',
|
||||
'blend',
|
||||
'conv',
|
||||
]
|
||||
tests = [
|
||||
'format',
|
||||
'blend',
|
||||
'conv',
|
||||
]
|
||||
|
||||
for test in tests:
|
||||
target = env.Program(
|
||||
target = 'lp_test_' + test,
|
||||
source = ['lp_test_' + test + '.c', 'lp_test_main.c'],
|
||||
)
|
||||
env.InstallProgram(target)
|
||||
for test in tests:
|
||||
target = env.Program(
|
||||
target = 'lp_test_' + test,
|
||||
source = ['lp_test_' + test + '.c', 'lp_test_main.c'],
|
||||
)
|
||||
env.InstallProgram(target)
|
||||
|
||||
Export('llvmpipe')
|
||||
Export('llvmpipe')
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue