diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2003-02-16 01:36:32 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2003-02-16 01:36:32 (GMT) |
commit | 23889e745ac1e3ba5e76c3ffb94736a5c475de7e (patch) | |
tree | b9cac46b6b2fb5373a629e8d3758b7742b6a651c /tests/main.test | |
parent | af570109241e78092cb2e80486e479b3a71524ef (diff) | |
download | tcl-23889e745ac1e3ba5e76c3ffb94736a5c475de7e.zip tcl-23889e745ac1e3ba5e76c3ffb94736a5c475de7e.tar.gz tcl-23889e745ac1e3ba5e76c3ffb94736a5c475de7e.tar.bz2 |
Don Porter's fix for bad parsing of nested scripts [Bug 681841].
Diffstat (limited to 'tests/main.test')
-rw-r--r-- | tests/main.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/main.test b/tests/main.test index c005c41..6778b88 100644 --- a/tests/main.test +++ b/tests/main.test @@ -1,6 +1,6 @@ # This file contains a collection of tests for generic/tclMain.c. # -# RCS: @(#) $Id: main.test,v 1.12 2003/01/31 18:54:32 dgp Exp $ +# RCS: @(#) $Id: main.test,v 1.13 2003/02/16 01:36:32 msofer Exp $ if {[catch {package require tcltest 2.0.2}]} { puts stderr "Skipping tests in [info script]. tcltest 2.0.2 required." @@ -277,13 +277,13 @@ namespace eval ::tcl::test::main { } -body { set code [catch {exec [interpreter] script >& result} result] set f [open result] - list $code $result [read $f] + join [list $code $result [read $f]] \n } -cleanup { close $f file delete result removeFile script - } -match glob -result [list 1 {child process exited abnormally}\ - "missing close-brace\n while executing*"] + } -match glob -result [join [list 1 {child process exited abnormally}\ + "missing close-brace\n while executing*"] \n] test Tcl_Main-3.5 { Tcl_Main: startup script sets main loop |