summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2002-08-23 01:15:21 (GMT)
committerSteven Knight <knight@baldmt.com>2002-08-23 01:15:21 (GMT)
commitd7079b4271cc358b515378e8b02bdf52637f3ee0 (patch)
treecb16674c1167c9b4a809d4ea2badd2e8e670186d /test
parent1e49c8ca34956b490c6e3e9a90b8322b983ebedf (diff)
downloadSCons-d7079b4271cc358b515378e8b02bdf52637f3ee0.zip
SCons-d7079b4271cc358b515378e8b02bdf52637f3ee0.tar.gz
SCons-d7079b4271cc358b515378e8b02bdf52637f3ee0.tar.bz2
Make case differences not effect #include order. (Anthony Roach)
Diffstat (limited to 'test')
-rw-r--r--test/win32pathmadness.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/test/win32pathmadness.py b/test/win32pathmadness.py
index 745e24e..cb6cb57 100644
--- a/test/win32pathmadness.py
+++ b/test/win32pathmadness.py
@@ -97,5 +97,37 @@ scons: .* is up to date.
scons: .* is up to date.
""")
+test.write('SConstruct', """
+env=Environment()
+env.StaticLibrary('a', 'a.c')
+env.StaticLibrary('b', 'b.c')
+""")
+
+test.write('a.c', '''
+#include "a.h"
+#include "b.h"
+''')
+
+test.write('b.c', '''
+#include "a.h"
+#include "B.h"
+''')
+
+test.write('a.h', """
+#define A_H
+""")
+
+test.write('b.h', """
+#define B_H
+""")
+
+test.run(arguments='a.lib b.lib')
+test.run(arguments='b.lib a.lib', stdout="""\
+scons: .* is up to date.
+scons: .* is up to date.
+""")
+
+
+
test.pass_test()