diff options
author | dgp <dgp@users.sourceforge.net> | 2006-09-04 21:36:55 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2006-09-04 21:36:55 (GMT) |
commit | 41b22d65a044c210902764408c26da886c719751 (patch) | |
tree | 749b525e64f769a693362f8ac4b85f22e2280617 /tests/main.test | |
parent | 716cb672d7396e8c977685b34bb8f2e9babfb17f (diff) | |
download | tcl-41b22d65a044c210902764408c26da886c719751.zip tcl-41b22d65a044c210902764408c26da886c719751.tar.gz tcl-41b22d65a044c210902764408c26da886c719751.tar.bz2 |
* tests/main.text (Tcl_Main-4.4): Test corrected to not be
timing sensitive to the Bug 1481986 fix. [Bug 1550858]
Diffstat (limited to 'tests/main.test')
-rw-r--r-- | tests/main.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/main.test b/tests/main.test index 4e91478..12afa46 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.13.2.3 2006/05/05 18:08:58 dgp Exp $ +# RCS: @(#) $Id: main.test,v 1.13.2.4 2006/09/04 21:36:55 dgp Exp $ if {[catch {package require tcltest 2.0.2}]} { puts stderr "Skipping tests in [info script]. tcltest 2.0.2 required." @@ -488,7 +488,7 @@ namespace eval ::tcl::test::main { } } rc] } -body { - exec [interpreter] << {puts "In script"} \ + exec [interpreter] << {} \ -appinitprocsetrcfile $rc >& result set f [open result] read $f @@ -497,7 +497,7 @@ namespace eval ::tcl::test::main { file delete result removeFile rc } -result "application-specific initialization failed:\ - \nIn script\nExit MainLoop\nIn exit\neven 0\n" + \nExit MainLoop\nIn exit\neven 0\n" test Tcl_Main-4.5 { Tcl_Main: Bug 1481986 |