diff options
author | William Deegan <bill@baddogconsulting.com> | 2018-09-26 17:09:28 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2018-09-26 17:09:28 (GMT) |
commit | ce9f09c5b8fa72b63e0f22cccb454430ef83f45f (patch) | |
tree | a2ac893d8ba1395e80d2a0d8917ad6a74aac1ce9 /test/Install/directories.py | |
parent | a5a1c40c8aaa71574cf4a439e1f5d742aef9103a (diff) | |
download | SCons-ce9f09c5b8fa72b63e0f22cccb454430ef83f45f.zip SCons-ce9f09c5b8fa72b63e0f22cccb454430ef83f45f.tar.gz SCons-ce9f09c5b8fa72b63e0f22cccb454430ef83f45f.tar.bz2 |
Speed up Install tests for windows
Diffstat (limited to 'test/Install/directories.py')
-rw-r--r-- | test/Install/directories.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/Install/directories.py b/test/Install/directories.py index 74a7ac5..3ebc713 100644 --- a/test/Install/directories.py +++ b/test/Install/directories.py @@ -46,10 +46,12 @@ test.subdir('outside', ['work', 'dir4', 'sub']) test.write(['work', 'SConstruct'], """\ +DefaultEnvironment(tools=[]) +env = Environment(tools=[]) + Install('../outside', 'dir1') InstallAs('../outside/d2', 'dir2') -env = Environment() env.Install('../outside', 'dir3') env.InstallAs('../outside/d4', 'dir4') """) |