diff options
author | dgp <dgp@users.sourceforge.net> | 2005-10-21 20:44:17 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-10-21 20:44:17 (GMT) |
commit | 59b47fd8178ce6e564348fa2f45bd91c4974ba3e (patch) | |
tree | 5b0d8ebe3be5e518d5852ae32603466b4dec947d /tests/parseExpr.test | |
parent | 7cc7684dbe5d31849989b7cab1c5d43ea0be1105 (diff) | |
download | tcl-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/parseExpr.test')
-rw-r--r-- | tests/parseExpr.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/parseExpr.test b/tests/parseExpr.test index d337ced..99f3d07 100644 --- a/tests/parseExpr.test +++ b/tests/parseExpr.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: parseExpr.test,v 1.15 2005/07/28 18:42:32 dgp Exp $ +# RCS: @(#) $Id: parseExpr.test,v 1.16 2005/10/21 20:44:20 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -620,7 +620,7 @@ test parseExpr-16.4 {GetLexeme procedure, integer lexeme} testexprparser { test parseExpr-16.5 {GetLexeme procedure, integer lexeme too big} {testexprparser wideIs32bit} { list [catch {testexprparser {12345678901234567890} -1} msg] $msg } {1 {integer value too large to represent}} -test parseExpr-16.6 {GetLexeme procedure, bad integer lexeme} -constraints testexprparser -body { +test parseExpr-16.6 {GetLexeme procedure, bad integer lexeme} -constraints {testexprparser knownBug} -body { testexprparser {0999} -1 } -returnCodes error -match glob -result {*invalid octal number*} test parseExpr-16.7 {GetLexeme procedure, double lexeme} testexprparser { |