diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2002-05-07 15:54:39 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2002-05-07 15:54:39 (GMT) |
commit | 10cbc226c1ac7f429fb8a011dd091beee3f3afeb (patch) | |
tree | b05c563bb59122105db2a6a5d1b22a485438d56f /tests/encoding.test | |
parent | 7c91f1013324e9413b31489bacb0006f0ec0f997 (diff) | |
download | tcl-10cbc226c1ac7f429fb8a011dd091beee3f3afeb.zip tcl-10cbc226c1ac7f429fb8a011dd091beee3f3afeb.tar.gz tcl-10cbc226c1ac7f429fb8a011dd091beee3f3afeb.tar.bz2 |
Fix for bugs #549607 & #549610: testsuite failures for filenames with spaces.
Diffstat (limited to 'tests/encoding.test')
-rw-r--r-- | tests/encoding.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/encoding.test b/tests/encoding.test index ef9214e..3fb9b84 100644 --- a/tests/encoding.test +++ b/tests/encoding.test @@ -8,7 +8,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: encoding.test,v 1.11 2002/04/08 09:02:19 das Exp $ +# RCS: @(#) $Id: encoding.test,v 1.12 2002/05/07 15:54:40 msofer Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -372,7 +372,7 @@ test encoding-24.1 {EscapeFreeProc on open channels} {exec} { gets $f } close $f - exec [list $::tcltest::tcltest] iso2022.tcl + exec $::tcltest::tcltest iso2022.tcl } {} test encoding-24.2 {EscapeFreeProc on open channels} {exec} { @@ -384,7 +384,7 @@ test encoding-24.2 {EscapeFreeProc on open channels} {exec} { exit } close $f - viewable [exec [list $::tcltest::tcltest] iso2022.tcl] + viewable [exec $::tcltest::tcltest iso2022.tcl] } "ab\x1b\$B8C\x1b\$(DD%\x1b(Bg (ab\\u001b\$B8C\\u001b\$(DD%\\u001b(Bg)" test encoding-24.3 {EscapeFreeProc on open channels} {exec} { |