diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-07-31 08:26:58 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-07-31 08:26:58 (GMT) |
commit | 3ab4e9ca24a8f7e98e3f7e3040130ba4e3caf2dc (patch) | |
tree | 9596b5546b5882b8b19a2f1e1cf8086c704337d1 /tests/fileSystem.test | |
parent | 809842a942400fa2f099485c2faa3e85d946360d (diff) | |
parent | 61fa73a80ffe7bd7131dc59cacd7b8dcab57a3f7 (diff) | |
download | tcl-3ab4e9ca24a8f7e98e3f7e3040130ba4e3caf2dc.zip tcl-3ab4e9ca24a8f7e98e3f7e3040130ba4e3caf2dc.tar.gz tcl-3ab4e9ca24a8f7e98e3f7e3040130ba4e3caf2dc.tar.bz2 |
Mark 6 failing tests as knownMsvcBug. To be investigated.
Diffstat (limited to 'tests/fileSystem.test')
-rw-r--r-- | tests/fileSystem.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/fileSystem.test b/tests/fileSystem.test index f778112..d9264ee 100644 --- a/tests/fileSystem.test +++ b/tests/fileSystem.test @@ -34,6 +34,7 @@ catch { testConstraint testfilesystem [llength [info commands ::testfilesystem]] testConstraint testsetplatform [llength [info commands ::testsetplatform]] testConstraint testsimplefilesystem [llength [info commands ::testsimplefilesystem]] +testConstraint knownMsvcBug [expr {![info exists ::env(TRAVIS_OS_NAME)] || ![string match windows $::env(TRAVIS_OS_NAME)]}] cd [tcltest::temporaryDirectory] makeFile "test file" gorp.file @@ -312,7 +313,7 @@ test filesystem-1.37 {file normalisation with '/./'} -body { } -match regexp -result {^(?:[^/]|/(?:[^/]|$))+$} test filesystem-1.38 {file normalisation with volume relative} -setup { set dir [pwd] -} -constraints {win moreThanOneDrive} -body { +} -constraints {win moreThanOneDrive knownMsvcBug} -body { set path "[string range [lindex $drives 0] 0 1]foo" cd [lindex $drives 1] file norm $path |