summaryrefslogtreecommitdiffstats
path: root/tests/source.test
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2022-03-17 11:37:51 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2022-03-17 11:37:51 (GMT)
commitfe55a90645e1dcaef9e9f0df2e5293b2e529b1e7 (patch)
tree8b62438d5609e9eda941f3021d13668ccf7c3a37 /tests/source.test
parent88c11e83785964b24f9910c3024daabbb9f8c636 (diff)
parentcf4140cc14a1800d2a74e73545fd86c49f3a1e73 (diff)
downloadtcl-fe55a90645e1dcaef9e9f0df2e5293b2e529b1e7.zip
tcl-fe55a90645e1dcaef9e9f0df2e5293b2e529b1e7.tar.gz
tcl-fe55a90645e1dcaef9e9f0df2e5293b2e529b1e7.tar.bz2
Merge 8.7
Diffstat (limited to 'tests/source.test')
-rw-r--r--tests/source.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/source.test b/tests/source.test
index c436317..98aaee2 100644
--- a/tests/source.test
+++ b/tests/source.test
@@ -283,11 +283,11 @@ test source-7.6 {source -encoding: mismatch encoding error} -setup {
puts $f "proc € {} {return foo}"
close $f
} -body {
- source -encoding ascii $sourcefile
+ source -encoding iso8859-1 $sourcefile
} -cleanup {
removeFile source.file
-} -returnCodes error -match glob -result {invalid command name*}
+} -returnCodes error -result {invalid command name "€"}
test source-8.1 {source and coroutine/yield} -setup {
set sourcefile [makeFile {} source.file]