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/symlink/dangling-source.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/symlink/dangling-source.py')
-rw-r--r-- | test/symlink/dangling-source.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/symlink/dangling-source.py b/test/symlink/dangling-source.py index 366b742..33ad661 100644 --- a/test/symlink/dangling-source.py +++ b/test/symlink/dangling-source.py @@ -35,8 +35,7 @@ import TestSCons test = TestSCons.TestSCons() if not hasattr(os, 'symlink'): - print "No os.symlink() method, no symlinks to test." - test.no_result(1) + test.skip_test('No os.symlink() method, no symlinks to test.\n') test.write('SConstruct', """ Command('file.out', 'file.in', Copy('$TARGET', '$SOURCE')) |