diff options
Diffstat (limited to 'test/option/tree-lib.py')
-rw-r--r-- | test/option/tree-lib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/option/tree-lib.py b/test/option/tree-lib.py index fc29d50..8858b74 100644 --- a/test/option/tree-lib.py +++ b/test/option/tree-lib.py @@ -47,7 +47,7 @@ env = Environment(LIBPREFIX='', EXESUFFIX='.exe') env.AppendENVPath('PATH', '.') l = env.Library( 'util.lib', 'util.c' ) -p = env.Program( 'test.exe', 'main.c', LIBS=l ) +p = env.Program( 'test_tree_lib.exe', 'main.c', LIBS=l ) env.Command( 'foo.h', p, '$SOURCE > $TARGET') """) @@ -71,7 +71,7 @@ util(void) """) expect = """ - +-test.exe + +-test_tree_lib.exe +-main.obj +-util.lib +-util.obj |