summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2006-02-09 15:22:52 (GMT)
committerdgp <dgp@users.sourceforge.net>2006-02-09 15:22:52 (GMT)
commit4614d3429b91de67c084a952d9a124a4f5bbbf9e (patch)
treebc24d3541d0e1d3a1b02ed030dd0d83f7a079dbc
parent77f99c60c401f4935f71d9562f23af796f656cd0 (diff)
downloadtcl-4614d3429b91de67c084a952d9a124a4f5bbbf9e.zip
tcl-4614d3429b91de67c084a952d9a124a4f5bbbf9e.tar.gz
tcl-4614d3429b91de67c084a952d9a124a4f5bbbf9e.tar.bz2
* tests/main.test (Tcl_Main-6.7): Improved robustness of
command auto-completion test. [Bug 1422736].
-rw-r--r--ChangeLog5
-rw-r--r--tests/main.test3
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 68ca4db..5527cbc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-02-09 Don Porter <dgp@users.sourceforge.net>
+
+ * tests/main.test (Tcl_Main-6.7): Improved robustness of
+ command auto-completion test. [Bug 1422736].
+
2006-02-08 Donal K. Fellows <dkf@users.sf.net>
* doc/Encoding.3, doc/encoding.n: Updates due to review at request of
diff --git a/tests/main.test b/tests/main.test
index 0500377..3a14789 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.16 2005/04/28 05:32:02 dgp Exp $
+# RCS: @(#) $Id: main.test,v 1.17 2006/02/09 15:22:52 dgp Exp $
if {[catch {package require tcltest 2.0.2}]} {
puts stderr "Skipping tests in [info script]. tcltest 2.0.2 required."
@@ -913,6 +913,7 @@ namespace eval ::tcl::test::main {
} -body {
exec [interpreter] << {
proc foo\{ x {}
+ set ::auto_noexec xxx
set tcl_interactive 1
foo y} >& result
set f [open result]