Module: Mesa Branch: master Commit: 5d03a68640dcf216484e37c316d2d91db9994a66 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=5d03a68640dcf216484e37c316d2d91db9994a66
Author: Emil Velikov <[email protected]> Date: Thu Dec 14 17:20:30 2017 +0000 util: scons: wire up the sha1 test Signed-off-by: Emil Velikov <[email protected]> Reviewed-by: Andres Gomez <[email protected]> --- src/util/SConscript | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/util/SConscript b/src/util/SConscript index 0c3c98a5f4..66a0d1c04f 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) _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
