diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-10-05 07:36:50 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-10-05 07:36:50 (GMT) |
commit | a019958ca7cc71041afbcc43c6d6a40e88043f9e (patch) | |
tree | acc76654386199ef4076881126d924d5c5e84dc1 /tests/fileSystem.test | |
parent | 4b1d6e9ae2d95e94f8d3c2113e43a9dbc45f4597 (diff) | |
parent | 3cb6c489a3c0515c7b3aade0aaa139e637400559 (diff) | |
download | tcl-a019958ca7cc71041afbcc43c6d6a40e88043f9e.zip tcl-a019958ca7cc71041afbcc43c6d6a40e88043f9e.tar.gz tcl-a019958ca7cc71041afbcc43c6d6a40e88043f9e.tar.bz2 |
Merge 8.7
Diffstat (limited to 'tests/fileSystem.test')
-rw-r--r-- | tests/fileSystem.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/fileSystem.test b/tests/fileSystem.test index 462b61e..5e98c39 100644 --- a/tests/fileSystem.test +++ b/tests/fileSystem.test @@ -378,13 +378,13 @@ test filesystem-1.51 {file normalisation .. beyond root (Bug 1379287)} { test filesystem-1.51.1 {file normalisation .. beyond root (Bug 1379287)} { testPathEqual [file norm /../../] [file norm /] } ok -test filesystem-1.52 {bug f9f390d0fa: file join where strep is not canonical} -constraints unix -body { - set x //foo +test filesystem-1.52 {bug f9f390d0fa: file join where strep is not canonical} -body { + set x ///foo file normalize $x file join $x bar } -result /foo/bar test filesystem-1.52.1 {bug f9f390d0fa: file join where strep is not canonical} -body { - set x //foo + set x ///foo file normalize $x file join $x } -result /foo |