summaryrefslogtreecommitdiff
path: root/test/CC
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2006-01-21 19:01:06 +0000
committerSteven Knight <knight@baldmt.com>2006-01-21 19:01:06 +0000
commit6fa468d120a536850a6263abd124c4d54eb8fe33 (patch)
tree6923c674148af3f821725a49e3dbc194658d4257 /test/CC
parent08680181bada82f6a9aa842ceffadf860d914eb4 (diff)
downloadscons-6fa468d120a536850a6263abd124c4d54eb8fe33.tar.gz
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 a830058f..1f4fd3de 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)