summaryrefslogtreecommitdiffstats
path: root/test/Copy-Symlinks.py
diff options
context:
space:
mode:
authorGary Oberbrunner <garyo@oberbrunner.com>2014-08-22 00:59:35 (GMT)
committerGary Oberbrunner <garyo@oberbrunner.com>2014-08-22 00:59:35 (GMT)
commitaf7ae3e0489ca6f58a2581add0ceb7da4e7ccf0d (patch)
treef04bbc9e297aed126b42b78009bdd43fb2dae1e5 /test/Copy-Symlinks.py
parent6db60dbe1c3dc28f24bfca48135bcb4bc9bd66d6 (diff)
downloadSCons-af7ae3e0489ca6f58a2581add0ceb7da4e7ccf0d.zip
SCons-af7ae3e0489ca6f58a2581add0ceb7da4e7ccf0d.tar.gz
SCons-af7ae3e0489ca6f58a2581add0ceb7da4e7ccf0d.tar.bz2
Fixed or skipped tests that fail on Windows.
Mostly just per-test changes, but also made match_re strip out CR (\r) chars at end of lines to make Windows match properly.
Diffstat (limited to 'test/Copy-Symlinks.py')
-rw-r--r--test/Copy-Symlinks.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Copy-Symlinks.py b/test/Copy-Symlinks.py
index f8f92d7..31b2a71 100644
--- a/test/Copy-Symlinks.py
+++ b/test/Copy-Symlinks.py
@@ -38,6 +38,9 @@ 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'