diff options
author | Steven Knight <knight@baldmt.com> | 2009-01-29 17:06:24 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2009-01-29 17:06:24 (GMT) |
commit | 1498b1e8c83c6aced5e96a72b28a64ef2bdf2ffd (patch) | |
tree | 4a8c0e032315c03c1674b52764d09f8673ae065b /test/CPPFLAGS.py | |
parent | f2124c8cac9879ed1631ebafdbd85fd4b5a307a0 (diff) | |
download | SCons-1498b1e8c83c6aced5e96a72b28a64ef2bdf2ffd.zip SCons-1498b1e8c83c6aced5e96a72b28a64ef2bdf2ffd.tar.gz SCons-1498b1e8c83c6aced5e96a72b28a64ef2bdf2ffd.tar.bz2 |
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.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/CPPFLAGS.py b/test/CPPFLAGS.py index ce8bd77..1aaf4a3 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') |