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

通讯编程

开发平台:

Visual C++

  1. # This file contains tests for the routines in the file tclUnixFile.c
  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) 1998-1999 by Scriptics Corporation.
  8. #
  9. # See the file "license.terms" for information on usage and redistribution
  10. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  11. #
  12. # RCS: @(#) $Id: unixFile.test,v 1.7 2002/07/05 10:38:43 dkf Exp $
  13. if {[lsearch [namespace children] ::tcltest] == -1} {
  14.     package require tcltest
  15.     namespace import -force ::tcltest::*
  16. }
  17. if {[info commands testobj] == {}} {
  18.     puts "This application hasn't been compiled with the "testfindexecutable""
  19.     puts "command, so I can't test the Tcl_FindExecutable function"
  20.     ::tcltest::cleanupTests
  21.     return
  22. }
  23. set oldpwd [pwd]
  24. cd [temporaryDirectory]
  25. catch {
  26.     set oldPath $env(PATH)
  27.     file attributes [makeFile "" junk] -perm 0777
  28. }
  29. set absPath [file join [temporaryDirectory] junk]
  30. test unixFile-1.1 {Tcl_FindExecutable} {unixOnly} {
  31.     set env(PATH) ""
  32.     testfindexecutable junk
  33. } $absPath
  34. test unixFile-1.2 {Tcl_FindExecutable} {unixOnly} {
  35.     set env(PATH) "/dummy"
  36.     testfindexecutable junk
  37. } {}
  38. test unixFile-1.3 {Tcl_FindExecutable} {unixOnly} {
  39.     set env(PATH) "/dummy:[pwd]"
  40.     testfindexecutable junk
  41. } $absPath
  42. test unixFile-1.4 {Tcl_FindExecutable} {unixOnly} {
  43.     set env(PATH) "/dummy:"
  44.     testfindexecutable junk
  45. } $absPath
  46. test unixFile-1.5 {Tcl_FindExecutable} {unixOnly} {
  47.     set env(PATH) "/dummy:/dummy"
  48.     testfindexecutable junk
  49. } {}
  50. test unixFile-1.6 {Tcl_FindExecutable} {unixOnly} {
  51.     set env(PATH) "/dummy::/dummy"
  52.     testfindexecutable junk
  53. } $absPath
  54. test unixFile-1.7 {Tcl_FindExecutable} {unixOnly} {
  55.     set env(PATH) ":/dummy"
  56.     testfindexecutable junk
  57. } $absPath
  58. # cleanup
  59. catch {set env(PATH) $oldPath}
  60. removeFile junk
  61. cd $oldpwd
  62. ::tcltest::cleanupTests
  63. return