summaryrefslogtreecommitdiffstats
path: root/test/SConsignFile/make-directory.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2008-09-14 16:16:12 (GMT)
committerSteven Knight <knight@baldmt.com>2008-09-14 16:16:12 (GMT)
commitdf1eb6e4b45b70ebf88105a880e2a166f3f04ff4 (patch)
tree3ff280008b6f7365ac0be26e737f087deb110cf4 /test/SConsignFile/make-directory.py
parentcebf02ff2330cc6927db8fe0bb71429153db70d9 (diff)
downloadSCons-df1eb6e4b45b70ebf88105a880e2a166f3f04ff4.zip
SCons-df1eb6e4b45b70ebf88105a880e2a166f3f04ff4.tar.gz
SCons-df1eb6e4b45b70ebf88105a880e2a166f3f04ff4.tar.bz2
Issue 1693: make the subdirectory in which the .sconsign file will
appear (if it doesn't already exist. (Damyan Pepper, Jim Randall)
Diffstat (limited to 'test/SConsignFile/make-directory.py')
-rw-r--r--test/SConsignFile/make-directory.py62
1 files changed, 62 insertions, 0 deletions
diff --git a/test/SConsignFile/make-directory.py b/test/SConsignFile/make-directory.py
new file mode 100644
index 0000000..819b5e2
--- /dev/null
+++ b/test/SConsignFile/make-directory.py
@@ -0,0 +1,62 @@
+#!/usr/bin/env python
+#
+# __COPYRIGHT__
+#
+# Permission is hereby granted, free of charge, to any person obtaining
+# a copy of this software and associated documentation files (the
+# "Software"), to deal in the Software without restriction, including
+# without limitation the rights to use, copy, modify, merge, publish,
+# distribute, sublicense, and/or sell copies of the Software, and to
+# permit persons to whom the Software is furnished to do so, subject to
+# the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
+# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+#
+
+__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
+
+"""
+Verify the ability to make a SConsignFile() in a non-existent
+subdirectory.
+"""
+
+import TestSCons
+
+test = TestSCons.TestSCons()
+
+test.write('SConstruct', """
+import SCons.dblite
+env = Environment()
+env.SConsignFile("sub/dir/sconsign", SCons.dblite)
+env.Install('bar', 'foo.txt')
+""")
+
+test.write('foo.txt', "Foo\n")
+
+expect = test.wrap_stdout(read_str = 'Mkdir("sub/dir")\n',
+ build_str = 'Install file: "foo.txt" as "bar/foo.txt"\n')
+
+test.run(options='-n', stdout=expect)
+
+test.must_not_exist(['bar', 'foo.txt'])
+
+test.must_not_exist('sub')
+test.must_not_exist(['sub', 'dir'])
+test.must_not_exist(['sub', 'dir', '.sconsign.dblite'])
+
+test.run(stdout=expect)
+
+test.must_match(['bar', 'foo.txt'], "Foo\n")
+
+test.must_exist(['sub', 'dir', 'sconsign.dblite'])
+
+test.pass_test()