summaryrefslogtreecommitdiffstats
path: root/test/NodeOps.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/NodeOps.py')
-rw-r--r--test/NodeOps.py11
1 files changed, 4 insertions, 7 deletions
diff --git a/test/NodeOps.py b/test/NodeOps.py
index 9f548c4..ff3e0ca 100644
--- a/test/NodeOps.py
+++ b/test/NodeOps.py
@@ -47,13 +47,6 @@ _lib = TestSCons._lib
_obj = TestSCons._obj
dll_ = TestSCons.dll_
_dll = TestSCons._dll
-
-if sys.platform == 'win32':
- fooflags = '/nologo -DFOO'
- barflags = '/nologo -DBAR'
-else:
- fooflags = '-DFOO'
- barflags = '-DBAR'
if os.name == 'posix':
os.environ['LD_LIBRARY_PATH'] = '.'
@@ -62,6 +55,10 @@ if string.find(sys.platform, 'irix') > -1:
test = TestSCons.TestSCons()
+e = test.Environment()
+fooflags = e['SHCXXFLAGS'] + ' -DFOO'
+barflags = e['SHCXXFLAGS'] + ' -DBAR'
+
test.subdir('bld', 'src', ['src', 'subsrcdir'])
sconstruct = r"""