summaryrefslogtreecommitdiffstats
path: root/tests/compile.test
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2005-10-21 20:44:17 (GMT)
committerdgp <dgp@users.sourceforge.net>2005-10-21 20:44:17 (GMT)
commit59b47fd8178ce6e564348fa2f45bd91c4974ba3e (patch)
tree5b0d8ebe3be5e518d5852ae32603466b4dec947d /tests/compile.test
parent7cc7684dbe5d31849989b7cab1c5d43ea0be1105 (diff)
downloadtcl-59b47fd8178ce6e564348fa2f45bd91c4974ba3e.zip
tcl-59b47fd8178ce6e564348fa2f45bd91c4974ba3e.tar.gz
tcl-59b47fd8178ce6e564348fa2f45bd91c4974ba3e.tar.bz2
Marked several failing tests as "knownBug" until they can be updated.
Diffstat (limited to 'tests/compile.test')
-rw-r--r--tests/compile.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/compile.test b/tests/compile.test
index 1c774c4..2ef57a6 100644
--- a/tests/compile.test
+++ b/tests/compile.test
@@ -11,7 +11,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: compile.test,v 1.38 2005/05/10 18:35:18 kennykb Exp $
+# RCS: @(#) $Id: compile.test,v 1.39 2005/10/21 20:44:17 dgp Exp $
package require tcltest 2
namespace import -force ::tcltest::*
@@ -253,7 +253,7 @@ test compile-11.5 {Tcl_Append*: ensure Tcl_ResetResult is used properly} {
proc p {} { set r [list foobar] ; incr foo }
list [catch {p} msg] $msg
} {1 {can't read "foo": no such variable}}
-test compile-11.6 {Tcl_Append*: ensure Tcl_ResetResult is used properly} {
+test compile-11.6 {Tcl_Append*: ensure Tcl_ResetResult is used properly} knownBug {
proc p {} { set r [list foobar] ; incr foo bogus }
list [catch {p} msg] $msg
} {1 {expected integer but got "bogus"}}