summaryrefslogtreecommitdiffstats
path: root/test/CPPPATH.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-08-17 23:14:59 (GMT)
committerSteven Knight <knight@baldmt.com>2004-08-17 23:14:59 (GMT)
commitdd95a91a581b3ff41b22fa781d1337dd2a6577bc (patch)
tree3be53d9c53f1a263095130e39e07328bcae51f2b /test/CPPPATH.py
parenta08e3ae7893a19820b11633822a68af2625baec9 (diff)
downloadSCons-dd95a91a581b3ff41b22fa781d1337dd2a6577bc.zip
SCons-dd95a91a581b3ff41b22fa781d1337dd2a6577bc.tar.gz
SCons-dd95a91a581b3ff41b22fa781d1337dd2a6577bc.tar.bz2
Portability fixes for Mac OS Xin tests. (Gary Oberbrunner)
Diffstat (limited to 'test/CPPPATH.py')
-rw-r--r--test/CPPPATH.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CPPPATH.py b/test/CPPPATH.py
index 05a61e8..6b41a38 100644
--- a/test/CPPPATH.py
+++ b/test/CPPPATH.py
@@ -205,9 +205,9 @@ env = Environment(CPPPATH = [''])
env.Library('three', source = 'empty3.c')
""")
-test.write('empty1.c', "\n")
-test.write('empty2.c', "\n")
-test.write('empty3.c', "\n")
+test.write('empty1.c', "int a=0;\n")
+test.write('empty2.c', "int b=0;\n")
+test.write('empty3.c', "int c=0;\n")
test.run(arguments = '.',
stderr=TestSCons.noisy_ar,