diff options
author | Steven Knight <knight@baldmt.com> | 2004-05-09 02:10:36 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-05-09 02:10:36 (GMT) |
commit | f9a6cb1dc77d24bdade33331e756e76f6d9c8485 (patch) | |
tree | c84fdb31f8c89f32cca9db15baddc3a9c18df429 /test | |
parent | 80b78036051db2f8c4bc560698fd859ebd2c5d95 (diff) | |
download | SCons-f9a6cb1dc77d24bdade33331e756e76f6d9c8485.zip SCons-f9a6cb1dc77d24bdade33331e756e76f6d9c8485.tar.gz SCons-f9a6cb1dc77d24bdade33331e756e76f6d9c8485.tar.bz2 |
Make CacheDir() if it doesn't exist. (Chad Austin)
Diffstat (limited to 'test')
-rw-r--r-- | test/CacheDir.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/CacheDir.py b/test/CacheDir.py index a45fe2c..abb4bad 100644 --- a/test/CacheDir.py +++ b/test/CacheDir.py @@ -35,7 +35,9 @@ import TestSCons test = TestSCons.TestSCons() -test.subdir('cache1', 'cache2', 'cache3', 'src', 'subdir') +# cache2 omitted from list in order to test automatic creation of CacheDir +# directory. +test.subdir('cache1', 'cache3', 'src', 'subdir') test.write(['src', 'SConstruct'], """\ CacheDir(r'%s') |