diff options
author | Adam Gross <grossag@vmware.com> | 2020-01-13 18:41:28 (GMT) |
---|---|---|
committer | Adam Gross <grossag@vmware.com> | 2020-01-13 18:45:04 (GMT) |
commit | 420f23129a3eb298e20e2250f97eb8eefdd923d4 (patch) | |
tree | 0ebea3ea5a45bf481f8986d7bb4ab1e7729c5c54 /test/Repository | |
parent | df23cffb83106a243f762258aa645edc86f05779 (diff) | |
download | SCons-420f23129a3eb298e20e2250f97eb8eefdd923d4.zip SCons-420f23129a3eb298e20e2250f97eb8eefdd923d4.tar.gz SCons-420f23129a3eb298e20e2250f97eb8eefdd923d4.tar.bz2 |
Change IMPLICIT_COMMAND_DEPENDENCIES meaning as requested in PR
Diffstat (limited to 'test/Repository')
-rw-r--r-- | test/Repository/Program.py | 2 | ||||
-rw-r--r-- | test/Repository/StaticLibrary.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/Repository/Program.py b/test/Repository/Program.py index 9260ae9..9e8af77 100644 --- a/test/Repository/Program.py +++ b/test/Repository/Program.py @@ -32,7 +32,7 @@ if sys.platform == 'win32': else: _exe = '' -for implicit_deps in ['0', '1', '2']: +for implicit_deps in ['0', '1', '2', 'all']: # First, test a single repository. test = TestSCons.TestSCons() test.subdir('repository', 'work1') diff --git a/test/Repository/StaticLibrary.py b/test/Repository/StaticLibrary.py index d619bb3..acd4b83 100644 --- a/test/Repository/StaticLibrary.py +++ b/test/Repository/StaticLibrary.py @@ -30,7 +30,7 @@ import TestSCons _obj = TestSCons._obj _exe = TestSCons._exe -for implicit_deps in ['0', '1', '2']: +for implicit_deps in ['0', '1', '2', 'all']: test = TestSCons.TestSCons() # |