diff options
author | Gary Oberbrunner <garyo@oberbrunner.com> | 2014-08-23 23:09:54 (GMT) |
---|---|---|
committer | Gary Oberbrunner <garyo@oberbrunner.com> | 2014-08-23 23:09:54 (GMT) |
commit | 1f5b82c89db82ce36896933cf0104f6821742cba (patch) | |
tree | 031e774c28688d00f954fe1293b37836f59909ea | |
parent | af7ae3e0489ca6f58a2581add0ceb7da4e7ccf0d (diff) | |
download | SCons-1f5b82c89db82ce36896933cf0104f6821742cba.zip SCons-1f5b82c89db82ce36896933cf0104f6821742cba.tar.gz SCons-1f5b82c89db82ce36896933cf0104f6821742cba.tar.bz2 |
Don't skip Copy-Symlinks test on Windows; it should be made to work instead.
-rw-r--r-- | test/Copy-Symlinks.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/Copy-Symlinks.py b/test/Copy-Symlinks.py index 31b2a71..f8f92d7 100644 --- a/test/Copy-Symlinks.py +++ b/test/Copy-Symlinks.py @@ -38,9 +38,6 @@ SCons.Defaults.DefaultEnvironment( tools = [] ) test = TestSCons.TestSCons() -if sys.platform == 'win32': - test.skip_test('No symlink-copying (yet) on Windows, skipping test.') - filelinkToCopy = 'filelinkToCopy' fileToLink = 'file.in' fileContents = 'stuff n things\n' |