diff options
author | Jose Fonseca <jfonseca@vmware.com> | 2016-04-14 13:41:33 +0100 |
---|---|---|
committer | Jose Fonseca <jfonseca@vmware.com> | 2016-04-19 11:31:11 +0100 |
commit | 7d2151b6ea1f0e4f5c4dbee423969d3ef425b0c4 (patch) | |
tree | b8c4af3d1fd9b56242a0f9bf627edd33ff5b5e44 | |
parent | 2211f8d5595becd1fb58e3018e365fc103fdac88 (diff) |
scons: Show the unit test full path.
Reviewed-by: Roland Scheidegger <sroland@vmware.com>
-rwxr-xr-x | scons/gallium.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scons/gallium.py b/scons/gallium.py index 94321b2e84..dd29c75ff2 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) |