summaryrefslogtreecommitdiffstats
path: root/tests/pid.test
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2003-10-07 18:53:22 (GMT)
committerdgp <dgp@users.sourceforge.net>2003-10-07 18:53:22 (GMT)
commita5c5a8a5df910708a4414fed2bf1e96fa1eee7bc (patch)
tree30e0b73fd2b14893d93d3968a11f609b1052e149 /tests/pid.test
parent3b21dd18dca159cc96a291b3591e9526460646de (diff)
downloadtcl-a5c5a8a5df910708a4414fed2bf1e96fa1eee7bc.zip
tcl-a5c5a8a5df910708a4414fed2bf1e96fa1eee7bc.tar.gz
tcl-a5c5a8a5df910708a4414fed2bf1e96fa1eee7bc.tar.bz2
* tests/exec.test: Corrected temporary file management
* tests/fileSystem.test: issues uncovered by -debug 1 test * tests/ioCmd.test: operations. Also backported some * tests/pid.test: other fixes from the HEAD. * tests/socket.test: [Bugs 675605, 675655] * tests/source.test:
Diffstat (limited to 'tests/pid.test')
-rw-r--r--tests/pid.test27
1 files changed, 16 insertions, 11 deletions
diff --git a/tests/pid.test b/tests/pid.test
index 0bc3d24..9e8fcce 100644
--- a/tests/pid.test
+++ b/tests/pid.test
@@ -11,10 +11,10 @@
# 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.8 2003/02/25 22:03:45 andreas_kupries Exp $
+# RCS: @(#) $Id: pid.test,v 1.8.2.1 2003/10/07 18:53:23 dgp Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
- package require tcltest
+ package require tcltest 2
namespace import -force ::tcltest::*
}
@@ -26,27 +26,33 @@ if {[info commands pid] == ""} {
return
}
-catch {removeFile test1}
-set path(test1) [makeFile {} test1]
-
test pid-1.1 {pid command} {
regexp {(^[0-9]+$)|(^0x[0-9a-fA-F]+$)} [pid]
} 1
-test pid-1.2 {pid command} {unixOrPc unixExecs} {
+test pid-1.2 {pid command} -constraints {unixOrPc unixExecs} -setup {
+ set path(test1) [makeFile {} test1]
+ file delete $path(test1)
+} -body {
set f [open [format {| echo foo | cat {>%s}} $path(test1)] w]
set pids [pid $f]
close $f
- catch {removeFile test1}
list [llength $pids] [regexp {^[0-9]+$} [lindex $pids 0]] \
[regexp {^[0-9]+$} [lindex $pids 1]] \
[expr {[lindex $pids 0] == [lindex $pids 1]}]
-} {2 1 1 0}
-test pid-1.3 {pid command} {
+} -cleanup {
+ removeFile test1
+} -result {2 1 1 0}
+test pid-1.3 {pid command} -setup {
+ set path(test1) [makeFile {} test1]
+ file delete $path(test1)
+} -body {
set f [open $path(test1) w]
set pids [pid $f]
close $f
set pids
-} {}
+} -cleanup {
+ removeFile test1
+} -result {}
test pid-1.4 {pid command} {
list [catch {pid a b} msg] $msg
} {1 {wrong # args: should be "pid ?channelId?"}}
@@ -55,7 +61,6 @@ test pid-1.5 {pid command} {
} {1 {can not find channel named "gorp"}}
# cleanup
-catch {::tcltest::removeFile test1}
::tcltest::cleanupTests
return