summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2002-05-16 23:28:54 (GMT)
committerSteven Knight <knight@baldmt.com>2002-05-16 23:28:54 (GMT)
commit487b06bf45f268ed417aa655fa7b90419f25be2e (patch)
tree80433aaa075b0a3419c2d56b60b46c9447fcabbd /test
parentc4d35e362f544b427d400f4fb1f95da2236976ef (diff)
downloadSCons-487b06bf45f268ed417aa655fa7b90419f25be2e.zip
SCons-487b06bf45f268ed417aa655fa7b90419f25be2e.tar.gz
SCons-487b06bf45f268ed417aa655fa7b90419f25be2e.tar.bz2
Make the drive letters on Windows always be the same case, so that changes in the case of drive letters don't cause a rebuild. (Anthony Roach)
Diffstat (limited to 'test')
-rw-r--r--test/win32pathmadness.py101
1 files changed, 101 insertions, 0 deletions
diff --git a/test/win32pathmadness.py b/test/win32pathmadness.py
new file mode 100644
index 0000000..7c0088c
--- /dev/null
+++ b/test/win32pathmadness.py
@@ -0,0 +1,101 @@
+#!/usr/bin/env python
+#
+# Copyright (c) 2001, 2002 Steven Knight
+#
+# 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.
+#
+
+"""
+This test verifies that the build command signatures do not depend on
+the case of the drive letter on Windows. This is important because Windows is
+inconsistent about which case is used for the drive letter.
+"""
+
+__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
+
+import TestSCons
+import sys
+import TestCmd
+import string
+import os.path
+
+test = TestSCons.TestSCons(match=TestCmd.match_re)
+
+if sys.platform != 'win32':
+ test.pass_test()
+
+test.subdir('src', 'build', 'include', 'src2')
+
+test.write('src/SConstruct', """
+env=Environment(LIBS=['../build/foo'], CPPPATH=['../include'], CCCOM='$CC $CCFLAGS $CPPFLAGS $_INCFLAGS /c ${SOURCES.abspath} /Fo$TARGET')
+foo=env.Object('../build/foo', 'foo.c')
+Default(env.Library('../build/foo', foo))
+Default(env.Library('../build/bar', 'bar.c', shared=1))
+Default(env.Program('../build/bar', ['main.c', '../src2/blat.c', '../build/bar.lib']))
+""")
+
+test.write('src/foo.c', """
+int foo(void)
+{
+ return 1;
+}
+""")
+
+test.write('src/bar.c', """
+__declspec(dllexport) int bar(void)
+{
+ return 1;
+}
+""")
+
+test.write('src/main.c', """
+#include <bar.h>
+int main(void)
+{
+ return 1;
+}
+""")
+
+test.write('src2/blat.c', """
+int blat(void)
+{
+ return 1;
+}
+""")
+
+test.write('include/bar.h', """
+int foo(void);
+int blat(void);
+int bar(void);
+""")
+
+drive,rest = os.path.splitdrive(test.workpath('src'))
+upper = os.path.join(string.upper(drive),rest)
+lower = os.path.join(string.lower(drive),rest)
+
+test.run(chdir=upper)
+test.run(chdir=lower, stdout="""\
+scons: .* is up to date.
+scons: .* is up to date.
+scons: .* is up to date.
+""")
+
+test.pass_test()
+