diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-02-19 15:21:27 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-02-19 15:21:27 (GMT) |
commit | 7815b5521b369211fa4115cb7ccfa8710a7c2066 (patch) | |
tree | c5b8bd708483807b0fd532e8596ef564c10fc5fe /tests | |
parent | e808998f32299b76b5d72c1eeab0c61d7b39912e (diff) | |
download | tcl-7815b5521b369211fa4115cb7ccfa8710a7c2066.zip tcl-7815b5521b369211fa4115cb7ccfa8710a7c2066.tar.gz tcl-7815b5521b369211fa4115cb7ccfa8710a7c2066.tar.bz2 |
[Bug 3466099] BOM in Unicode
Diffstat (limited to 'tests')
-rw-r--r-- | tests/source.test | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/source.test b/tests/source.test index 3a1454c..5774a97 100644 --- a/tests/source.test +++ b/tests/source.test @@ -118,6 +118,21 @@ test source-2.6 {source error conditions} -setup { {couldn't read file "*_non_existent_": no such file or directory} \ {POSIX ENOENT {no such file or directory}}] +test source-2.7 {utf-8 with BOM} -setup { + set sourcefile [makeFile {} source.file] + set saveencoding [encoding system] + encoding system utf-8 + set out [open $sourcefile w] + puts $out "\ufffeset y new-y" + close $out +} -body { + set y old-y + source $sourcefile + set y +} -cleanup { + removeFile source.file + encoding system $saveencoding +} -result {new-y} test source-3.1 {return in middle of source file} -setup { set sourcefile [makeFile { |