summaryrefslogtreecommitdiffstats
path: root/test/SWIG/SWIGOUTDIR.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2009-01-08 16:40:36 (GMT)
committerSteven Knight <knight@baldmt.com>2009-01-08 16:40:36 (GMT)
commitf597546a9cad8a98434f63cde459b710646d3195 (patch)
tree30f3e59505971e2af3e8237581aca9e8435874c4 /test/SWIG/SWIGOUTDIR.py
parentca04c920d4ded4ec8f09ef3aecab02f5e195faae (diff)
downloadSCons-f597546a9cad8a98434f63cde459b710646d3195.zip
SCons-f597546a9cad8a98434f63cde459b710646d3195.tar.gz
SCons-f597546a9cad8a98434f63cde459b710646d3195.tar.bz2
Issue 2279: Support $SWIGOUTDIR values with spaces in the
directory name. (Arve Knudsen)
Diffstat (limited to 'test/SWIG/SWIGOUTDIR.py')
-rw-r--r--test/SWIG/SWIGOUTDIR.py17
1 files changed, 11 insertions, 6 deletions
diff --git a/test/SWIG/SWIGOUTDIR.py b/test/SWIG/SWIGOUTDIR.py
index e0f3f25..a875e80 100644
--- a/test/SWIG/SWIGOUTDIR.py
+++ b/test/SWIG/SWIGOUTDIR.py
@@ -55,7 +55,7 @@ env = Environment(tools = ['default', 'swig'],
Java_foo_interface = env.SharedLibrary(
'Java_foo_interface',
'Java_foo_interface.i',
- SWIGOUTDIR = 'java/build',
+ SWIGOUTDIR = 'java/build dir',
SWIGFLAGS = '-c++ -java -Wall',
SWIGCXXFILESUFFIX = "_wrap.cpp")
""" % locals())
@@ -64,19 +64,24 @@ test.write('Java_foo_interface.i', """\
%module foopack
""")
-# SCons should realize that it needs to create the java/build
-# subdirectory to hold the generate .java files.
+# SCons should realize that it needs to create the "java/build dir"
+# subdirectory to hold the generated .java files.
test.run(arguments = '.')
+test.must_exist('java/build dir/foopackJNI.java')
+test.must_exist('java/build dir/foopack.java')
+
# SCons should remove the built .java files.
-test.run(arguments = '-c java/build/foopack.java java/build/foopackJNI.java')
+test.run(arguments = '-c')
-test.must_not_exist('java/build/foopackJNI.java')
-test.must_not_exist('java/build/foopack.java')
+test.must_not_exist('java/build dir/foopackJNI.java')
+test.must_not_exist('java/build dir/foopack.java')
# SCons should realize it needs to rebuild the removed .java files.
test.not_up_to_date(arguments = '.')
+test.must_exist('java/build dir/foopackJNI.java')
+test.must_exist('java/build dir/foopack.java')
test.pass_test()