diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2014-11-03 12:54:25 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2014-11-03 12:54:25 (GMT) |
commit | b14c2f49d2635f8c5b7f5f7e96aafd8a54fabcf2 (patch) | |
tree | 108eb7029d3260cbad294cd97c09a6c18b50cf39 /tests/fileSystem.test | |
parent | de82a1a99e24ed4e3f1ec491abafbc478e57a908 (diff) | |
parent | 48ab03f3cd8e637c9cdd52bdbb93737f07d2bb60 (diff) | |
download | tcl-b14c2f49d2635f8c5b7f5f7e96aafd8a54fabcf2.zip tcl-b14c2f49d2635f8c5b7f5f7e96aafd8a54fabcf2.tar.gz tcl-b14c2f49d2635f8c5b7f5f7e96aafd8a54fabcf2.tar.bz2 |
Add test-case for previous commit, which shows that when trying to open a filename with invalid characters gives the right error-message. (same bug existed on UNIX too, which is now fixed)
Diffstat (limited to 'tests/fileSystem.test')
-rw-r--r-- | tests/fileSystem.test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/fileSystem.test b/tests/fileSystem.test index 942a86c..9fe4fe9 100644 --- a/tests/fileSystem.test +++ b/tests/fileSystem.test @@ -513,6 +513,9 @@ test filesystem-6.32 {empty file name} -returnCodes error -body { file type "" } -result {could not read "": no such file or directory} test filesystem-6.33 {empty file name} {file writable ""} 0 +test filesystem-6.34 {file name with (invalid) nul character} { + list [catch "open foo\x00" msg] $msg +} [list 1 "couldn't open \"foo\x00\": filename is invalid on this platform"] # Make sure the testfilesystem hasn't been registered. if {[testConstraint testfilesystem]} { |