From: Emil Velikov Date: Thu, 14 Dec 2017 17:20:30 +0000 (+0000) Subject: util: scons: wire up the sha1 test X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5d03a68640dcf216484e37c316d2d91db9994a66;p=mesa.git util: scons: wire up the sha1 test Signed-off-by: Emil Velikov Reviewed-by: Andres Gomez --- 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)