diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2004-05-19 12:51:34 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2004-05-19 12:51:34 (GMT) |
commit | 60527b86bc700ebbb6dc28928918ce206bd0c5ce (patch) | |
tree | c0d0f991217209257e0f7aca4eba13b10174dfed /tests/pid.test | |
parent | eed4bea0be5e6a437943a58152e4f8ebde40fd66 (diff) | |
download | tcl-60527b86bc700ebbb6dc28928918ce206bd0c5ce.zip tcl-60527b86bc700ebbb6dc28928918ce206bd0c5ce.tar.gz tcl-60527b86bc700ebbb6dc28928918ce206bd0c5ce.tar.bz2 |
Use constraints instead of conditional tests
Diffstat (limited to 'tests/pid.test')
-rw-r--r-- | tests/pid.test | 32 |
1 files changed, 7 insertions, 25 deletions
diff --git a/tests/pid.test b/tests/pid.test index 39838d9..09715e5 100644 --- a/tests/pid.test +++ b/tests/pid.test @@ -11,28 +11,22 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: pid.test,v 1.10 2004/02/25 23:56:59 dgp Exp $ +# RCS: @(#) $Id: pid.test,v 1.11 2004/05/19 12:51:34 dkf Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 namespace import -force ::tcltest::* } -# If pid is not defined just return with no error -# Some platforms may not have the pid command implemented -if {[info commands pid] == ""} { - puts "pid is not implemented for this machine" - ::tcltest::cleanupTests - return -} +testConstraint pidDefined [llength [info commands pid]] -test pid-1.1 {pid command} { +test pid-1.1 {pid command} pidDefined { regexp {(^[0-9]+$)|(^0x[0-9a-fA-F]+$)} [pid] } 1 test pid-1.2 {pid command} -constraints {unixOrPc unixExecs} -setup { set path(test1) [makeFile {} test1] file delete $path(test1) -} -body { +} -constraints pidDefined -body { set f [open |[list echo foo | cat >$path(test1)] w] set pids [pid $f] close $f @@ -42,7 +36,7 @@ test pid-1.2 {pid command} -constraints {unixOrPc unixExecs} -setup { } -cleanup { removeFile test1 } -result {2 1 1 0} -test pid-1.3 {pid command} -setup { +test pid-1.3 {pid command} -constraints pidDefined -setup { set path(test1) [makeFile {} test1] file delete $path(test1) } -body { @@ -53,25 +47,13 @@ test pid-1.3 {pid command} -setup { } -cleanup { removeFile test1 } -result {} -test pid-1.4 {pid command} { +test pid-1.4 {pid command} pidDefined { list [catch {pid a b} msg] $msg } {1 {wrong # args: should be "pid ?channelId?"}} -test pid-1.5 {pid command} { +test pid-1.5 {pid command} pidDefined { list [catch {pid gorp} msg] $msg } {1 {can not find channel named "gorp"}} # cleanup ::tcltest::cleanupTests return - - - - - - - - - - - - |