summaryrefslogtreecommitdiffstats
path: root/test/CC
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2006-01-21 19:01:06 (GMT)
committerSteven Knight <knight@baldmt.com>2006-01-21 19:01:06 (GMT)
commit6fdb91f7abaaf0823070d17c8afcde6ca35d3549 (patch)
tree6923c674148af3f821725a49e3dbc194658d4257 /test/CC
parent9e51adb1a538111d3661e07e04ecc112370ab6f2 (diff)
downloadSCons-6fdb91f7abaaf0823070d17c8afcde6ca35d3549.zip
SCons-6fdb91f7abaaf0823070d17c8afcde6ca35d3549.tar.gz
SCons-6fdb91f7abaaf0823070d17c8afcde6ca35d3549.tar.bz2
Eliminate unnecessary WIN32/Win32/win32 references in tests, too.
Diffstat (limited to 'test/CC')
-rw-r--r--test/CC/SHCCFLAGS.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CC/SHCCFLAGS.py b/test/CC/SHCCFLAGS.py
index a830058..1f4fd3d 100644
--- a/test/CC/SHCCFLAGS.py
+++ b/test/CC/SHCCFLAGS.py
@@ -44,8 +44,8 @@ if string.find(sys.platform, 'irix') > -1:
os.environ['LD_LIBRARYN32_PATH'] = '.'
test.write('SConstruct', """
-foo = Environment(SHCCFLAGS = '%s', WIN32_INSERT_DEF=1)
-bar = Environment(SHCCFLAGS = '%s', WIN32_INSERT_DEF=1)
+foo = Environment(SHCCFLAGS = '%s', WINDOWS_INSERT_DEF=1)
+bar = Environment(SHCCFLAGS = '%s', WINDOWS_INSERT_DEF=1)
foo_obj = foo.SharedObject(target = 'foo', source = 'prog.c')
foo.SharedLibrary(target = 'foo', source = foo_obj)
@@ -109,7 +109,7 @@ test.run(program = test.workpath('fooprog'), stdout = "prog.c: FOO\n")
test.run(program = test.workpath('barprog'), stdout = "prog.c: BAR\n")
test.write('SConstruct', """
-bar = Environment(SHCCFLAGS = '%s', WIN32_INSERT_DEF=1)
+bar = Environment(SHCCFLAGS = '%s', WINDOWS_INSERT_DEF=1)
foo_obj = bar.SharedObject(target = 'foo', source = 'prog.c')
bar.SharedLibrary(target = 'foo', source = foo_obj)