diff options
Diffstat (limited to 'tests/pid.test')
-rw-r--r-- | tests/pid.test | 30 |
1 files changed, 6 insertions, 24 deletions
diff --git a/tests/pid.test b/tests/pid.test index d149df6..d21dbaa 100644 --- a/tests/pid.test +++ b/tests/pid.test @@ -16,18 +16,12 @@ if {[lsearch [namespace children] ::tcltest] == -1} { 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 { +test pid-1.2 {pid command} -constraints {unixOrPc unixExecs pidDefined} -setup { set path(test1) [makeFile {} test1] file delete $path(test1) } -body { @@ -40,7 +34,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 { @@ -51,25 +45,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 - - - - - - - - - - - - |