From: Jose Fonseca Date: Thu, 14 Apr 2016 12:41:33 +0000 (+0100) Subject: scons: Show the unit test full path. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7d2151b6ea1f0e4f5c4dbee423969d3ef425b0c4;p=mesa.git scons: Show the unit test full path. Reviewed-by: Roland Scheidegger --- diff --git a/scons/gallium.py b/scons/gallium.py index 94321b2e847..dd29c75ff26 100755 --- a/scons/gallium.py +++ b/scons/gallium.py @@ -99,7 +99,7 @@ def unit_test(env, test_name, program_target, args=None): cmd = ' '.join(cmd) # http://www.scons.org/wiki/UnitTests - action = SCons.Action.Action(cmd, " Running %s ..." % test_name) + action = SCons.Action.Action(cmd, " Running $SOURCE ...") alias = env.Alias(test_name, program_target, action) env.AlwaysBuild(alias) env.Depends('check', alias)