summaryrefslogtreecommitdiffstats
path: root/tests/error.test
diff options
context:
space:
mode:
authornijtmans <nijtmans>2010-03-31 10:29:22 (GMT)
committernijtmans <nijtmans>2010-03-31 10:29:22 (GMT)
commitd939798dd89166dee8a80e460ca723c718099d64 (patch)
tree719850c45bbc1260d42e83ecaf7cba1cb5eedc1c /tests/error.test
parentbab53b84ede66f9acc9a284a16008e39f100f1ca (diff)
downloadtcl-d939798dd89166dee8a80e460ca723c718099d64.zip
tcl-d939798dd89166dee8a80e460ca723c718099d64.tar.gz
tcl-d939798dd89166dee8a80e460ca723c718099d64.tar.bz2
[FRQ 2974744]: share exception codes (ObjType?):
Revised test cases, making sure that abbreviated codes are checked resulting in an error, and checking for the exact error message.
Diffstat (limited to 'tests/error.test')
-rw-r--r--tests/error.test8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/error.test b/tests/error.test
index 9e192ef..623595c 100644
--- a/tests/error.test
+++ b/tests/error.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: error.test,v 1.28 2010/03/23 12:58:39 nijtmans Exp $
+# RCS: @(#) $Id: error.test,v 1.29 2010/03/31 10:29:22 nijtmans Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest 2
@@ -882,11 +882,11 @@ rename addmsg {}
# negative case try tests - bad "on" handler
test error-20.1 {bad code name in on handler} -body {
- try { list a b c } on foo {} {}
-} -returnCodes error -match glob -result {bad completion code *}
+ try { list a b c } on err {} {}
+} -returnCodes error -match glob -result {bad completion code "err": must be ok, error, return, break, continue*, or an integer}
test error-20.2 {bad code value in on handler} -body {
try { list a b c } on 34985723094872345 {} {}
-} -returnCodes error -match glob -result {bad completion code *}
+} -returnCodes error -match glob -result {bad completion code "34985723094872345": must be ok, error, return, break, continue*, or an integer}
test error-21.1 {memory leaks in try: Bug 2910044} memory {
leaktest {