summaryrefslogtreecommitdiffstats
path: root/test/Install/directories.py
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2018-09-26 17:09:28 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2018-09-26 17:09:28 (GMT)
commitce9f09c5b8fa72b63e0f22cccb454430ef83f45f (patch)
treea2ac893d8ba1395e80d2a0d8917ad6a74aac1ce9 /test/Install/directories.py
parenta5a1c40c8aaa71574cf4a439e1f5d742aef9103a (diff)
downloadSCons-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.py4
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')
""")