diff options
author | William Deegan <bill@baddogconsulting.com> | 2017-05-16 01:13:11 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2017-05-16 01:13:11 (GMT) |
commit | cfbb6510950f4b9e210ae0f40fd4824d3c4ce927 (patch) | |
tree | c88615af4a8bd2e19ef42db3613a25ef383365a0 /test | |
parent | 608bb19fb08e67718c78f12c6a1b871ed25f3b89 (diff) | |
download | SCons-cfbb6510950f4b9e210ae0f40fd4824d3c4ce927.zip SCons-cfbb6510950f4b9e210ae0f40fd4824d3c4ce927.tar.gz SCons-cfbb6510950f4b9e210ae0f40fd4824d3c4ce927.tar.bz2 |
py2/3 disable symlink testing on py3. not supported by scons at this time
Diffstat (limited to 'test')
-rw-r--r-- | test/Clean/symlinks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Clean/symlinks.py b/test/Clean/symlinks.py index 142398d..c782860 100644 --- a/test/Clean/symlinks.py +++ b/test/Clean/symlinks.py @@ -34,7 +34,7 @@ import TestSCons test = TestSCons.TestSCons() -if not hasattr(os, 'symlink'): +if not test.platform_has_symlink(): test.skip_test('No os.symlink() function; skipping test\n') test.write('SConstruct', """\ |