diff options
author | dgp <dgp@users.sourceforge.net> | 2002-06-06 19:23:42 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2002-06-06 19:23:42 (GMT) |
commit | 2cf73539b4bb1803b23b882f52df6c21c5543436 (patch) | |
tree | 99372d96d64d8fb10ee894c7244f03020a6466cf /tests | |
parent | 63c1ccd8a66274ade947443679935e29d18c8f36 (diff) | |
download | tcl-2cf73539b4bb1803b23b882f52df6c21c5543436.zip tcl-2cf73539b4bb1803b23b882f52df6c21c5543436.tar.gz tcl-2cf73539b4bb1803b23b882f52df6c21c5543436.tar.bz2 |
* Corrections to test suite so that tests
of failing [test]s don't show up themselves as failing tests.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/tcltest.test | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/tests/tcltest.test b/tests/tcltest.test index 3bb2d36..fb96d89 100755 --- a/tests/tcltest.test +++ b/tests/tcltest.test @@ -6,7 +6,7 @@ # Copyright (c) 2000 by Ajuba Solutions # All rights reserved. # -# RCS: @(#) $Id: tcltest.test,v 1.24 2002/06/06 18:44:44 dgp Exp $ +# RCS: @(#) $Id: tcltest.test,v 1.25 2002/06/06 19:23:43 dgp Exp $ if {[catch {package require tcltest 2.1}]} { puts stderr "Skipping tests in [info script]. tcltest 2.1 required." @@ -1408,6 +1408,8 @@ test tcltest-24.9 { [namespace code errorDuringMatch] } -body { test tcltest-24.9.0 {} -match [namespace current]::errorDuringMatch +} -cleanup { + set ::tcltest::currentFailure false } -match glob -result {} -output {*FAILED*match returned error*} test tcltest-24.10 { @@ -1417,6 +1419,8 @@ test tcltest-24.10 { customMatch nonBooleanReturn [namespace code nonBooleanReturn] } -body { test tcltest-24.10.0 {} -match nonBooleanReturn +} -cleanup { + set ::tcltest::currentFailure false } -match glob -result {} -output {*FAILED*expected boolean value*} test tcltest-24.11 { @@ -1452,6 +1456,7 @@ test tcltest-24.13 { } -body { test tcltest-24.13.0 {} -body {format 1} -result 0 } -cleanup { + set ::tcltest::currentFailure false verbose $v customMatch exact $saveExactMatchScript unset saveExactMatchScript @@ -1474,6 +1479,7 @@ test tcltest-24.15 { test tcltest-24.15.0 {} -match glob -body {format {A B C}} \ -result {A B* } } -cleanup { + set ::tcltest::currentFailure false verbose $v } -match glob -result {} -output {*FAILED*Result was: *(glob matching): @@ -1494,6 +1500,7 @@ test tcltest-24.17 { test tcltest-24.17.0 {} -match regexp -body {format {A B C}} \ -result {A B.* X} } -cleanup { + set ::tcltest::currentFailure false verbose $v } -match glob -result {} -output {*FAILED*Result was: *(regexp matching): @@ -1509,6 +1516,7 @@ test tcltest-24.18 { test tcltest-24.18.0 {} -match negative -body {format {A B C}} \ -result {A B X} } -cleanup { + set ::tcltest::currentFailure false verbose $v } -match glob -result {} -output {*FAILED*Error testing result:*} @@ -1528,6 +1536,7 @@ test tcltest-24.19 { test tcltest-24.20 { test: -match custom failure } -setup { + set ::tcltest::currentFailure false set v [verbose] verbose {} customMatch negative [namespace code matchNegative] |