diff options
author | Emil Velikov <[email protected]> | 2017-12-14 17:20:30 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-12-15 19:01:12 +0000 |
commit | 5d03a68640dcf216484e37c316d2d91db9994a66 (patch) | |
tree | 36713200d5a65b0727ece7ef58515b59046c0482 /src/util/SConscript | |
parent | f475ac3c40c6204ef73ad5d07d9ae6932822cc2f (diff) |
util: scons: wire up the sha1 test
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Andres Gomez <[email protected]>
Diffstat (limited to 'src/util/SConscript')
-rw-r--r-- | src/util/SConscript | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/util/SConscript b/src/util/SConscript index 0c3c98a5f4c..66a0d1c04ff 100644 --- a/src/util/SConscript +++ b/src/util/SConscript @@ -63,3 +63,10 @@ roundeven_test = env.Program( source = ['roundeven_test.c'], ) env.UnitTest("roundeven_test", roundeven_test) + +env.Prepend(LIBS = [mesautil]) +mesa_sha1_test = env.Program( + target = 'mesa-sha1_test', + source = ['mesa-sha1_test.c'], +) +env.UnitTest("mesa-sha1_test", mesa_sha1_test) |