diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2017-02-26 15:28:29 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2017-02-26 15:28:29 (GMT) |
commit | 203bbab7c962038e5b8d6899f530317254063b6f (patch) | |
tree | e628fbf6702335dd63404aa0fe978dd45d0cfa17 | |
parent | 93d3ea1393cc514c4b87c0874138c538db257d02 (diff) | |
download | tcl-203bbab7c962038e5b8d6899f530317254063b6f.zip tcl-203bbab7c962038e5b8d6899f530317254063b6f.tar.gz tcl-203bbab7c962038e5b8d6899f530317254063b6f.tar.bz2 |
Might as well number tests more conventionally.
-rw-r--r-- | tests/zlib.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/zlib.test b/tests/zlib.test index ba861e0..1e69745 100644 --- a/tests/zlib.test +++ b/tests/zlib.test @@ -167,7 +167,7 @@ test zlib-7.9 {zlib stream finalize (bug 25842c161)} -constraints zlib -setup { } -cleanup { $z1 close } -result ABCDEedbca.. -test zlib-7.9.1 {zlib stream finalize (bug 25842c161)} -constraints zlib -setup { +test zlib-7.10 {zlib stream finalize (bug 25842c161)} -constraints zlib -setup { set z2 [zlib stream gzip] } -body { $z2 put -finalize ABCDEedbca.. @@ -175,7 +175,7 @@ test zlib-7.9.1 {zlib stream finalize (bug 25842c161)} -constraints zlib -setup } -cleanup { $z2 close } -result ABCDEedbca.. -test zlib-7.9.2 {zlib stream put -finalize (bug 25842c161)} -constraints zlib -setup { +test zlib-7.11 {zlib stream put -finalize (bug 25842c161)} -constraints zlib -setup { set c [zlib stream gzip] set d [zlib stream gunzip] } -body { @@ -188,7 +188,7 @@ test zlib-7.9.2 {zlib stream put -finalize (bug 25842c161)} -constraints zlib -s $c close $d close } -result abcdeEDCBA.. -test zlib-7.9.3 {zlib stream put; zlib stream finalize (bug 25842c161)} -constraints zlib -setup { +test zlib-7.12 {zlib stream put; zlib stream finalize (bug 25842c161)} -constraints zlib -setup { set c [zlib stream gzip] set d [zlib stream gunzip] } -body { |