summaryrefslogtreecommitdiff
path: root/test/CPPFLAGS.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2009-01-29 17:06:24 +0000
committerSteven Knight <knight@baldmt.com>2009-01-29 17:06:24 +0000
commit5edfc172af22825e6e8006e85676d088f28d137b (patch)
tree4a8c0e032315c03c1674b52764d09f8673ae065b /test/CPPFLAGS.py
parent9f7af6cc1e9f1c78baf187b6a9504dca6de65081 (diff)
downloadscons-5edfc172af22825e6e8006e85676d088f28d137b.tar.gz
Change explicit uses of test.no_result() to test.skip_test(),
for consistency with the rest.
Diffstat (limited to 'test/CPPFLAGS.py')
-rw-r--r--test/CPPFLAGS.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/CPPFLAGS.py b/test/CPPFLAGS.py
index ce8bd775..1aaf4a3b 100644
--- a/test/CPPFLAGS.py
+++ b/test/CPPFLAGS.py
@@ -39,7 +39,8 @@ test = TestSCons.TestSCons()
# Writing this to accomodate both our in-line tool chain and the
# MSVC command lines is too hard, and will be completely unnecessary
# some day when we separate our tests. Punt for now.
-test.no_result(sys.platform == 'win32')
+if sys.platform == 'win32':
+ test.skip_test('Skipping on win32.\n')