pid.test
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:2k
源码类别:

通讯编程

开发平台:

Visual C++

  1. # Commands covered:  pid
  2. #
  3. # This file contains a collection of tests for one or more of the Tcl
  4. # built-in commands.  Sourcing this file into Tcl runs the tests and
  5. # generates output for errors.  No output means no errors were found.
  6. #
  7. # Copyright (c) 1991-1993 The Regents of the University of California.
  8. # Copyright (c) 1994-1995 Sun Microsystems, Inc.
  9. # Copyright (c) 1998-1999 by Scriptics Corporation.
  10. #
  11. # See the file "license.terms" for information on usage and redistribution
  12. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  13. #
  14. # RCS: @(#) $Id: pid.test,v 1.8.2.2 2004/02/25 23:38:17 dgp Exp $
  15. if {[lsearch [namespace children] ::tcltest] == -1} {
  16.     package require tcltest 2
  17.     namespace import -force ::tcltest::*
  18. }
  19. # If pid is not defined just return with no error
  20. # Some platforms may not have the pid command implemented
  21. if {[info commands pid] == ""} {
  22.     puts "pid is not implemented for this machine"
  23.     ::tcltest::cleanupTests
  24.     return
  25. }
  26. test pid-1.1 {pid command} {
  27.     regexp {(^[0-9]+$)|(^0x[0-9a-fA-F]+$)} [pid]
  28. } 1
  29. test pid-1.2 {pid command} -constraints {unixOrPc unixExecs} -setup {
  30.     set path(test1) [makeFile {} test1]
  31.     file delete $path(test1)
  32. } -body {
  33.     set f [open |[list echo foo | cat >$path(test1)] w]
  34.     set pids [pid $f]
  35.     close $f
  36.     list [llength $pids] [regexp {^[0-9]+$} [lindex $pids 0]] 
  37.        [regexp {^[0-9]+$} [lindex $pids 1]] 
  38.        [expr {[lindex $pids 0] == [lindex $pids 1]}]
  39. } -cleanup {
  40.     removeFile test1
  41. } -result {2 1 1 0}
  42. test pid-1.3 {pid command} -setup {
  43.     set path(test1) [makeFile {} test1]
  44.     file delete $path(test1)
  45. } -body {
  46.     set f [open $path(test1) w]
  47.     set pids [pid $f]
  48.     close $f
  49.     set pids
  50. } -cleanup {
  51.     removeFile test1
  52. } -result {}
  53. test pid-1.4 {pid command} {
  54.     list [catch {pid a b} msg] $msg
  55. } {1 {wrong # args: should be "pid ?channelId?"}}
  56. test pid-1.5 {pid command} {
  57.     list [catch {pid gorp} msg] $msg
  58. } {1 {can not find channel named "gorp"}}
  59. # cleanup
  60. ::tcltest::cleanupTests
  61. return