home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tcl2-73c.zip / tcl7.3 / tests / all next >
Text File  |  1994-03-14  |  2KB  |  62 lines

  1. # This file contains a top-level script to run all of the Tcl
  2. # tests.  Execute it by invoking "source all" when running tclTest
  3. # in this directory.
  4. #
  5. # $Header: /sprite/src/lib/tcl/tests/RCS/all,v 1.4 91/09/08 13:43:07 ouster Exp $ (Berkeley)
  6.  
  7. lappend tests append.test
  8. lappend tests async.test
  9. lappend tests case.test
  10. lappend tests cd.test
  11. lappend tests cmdinfo.test
  12. lappend tests concat.test
  13. lappend tests dcall.test
  14. lappend tests defs
  15. lappend tests dstring.test
  16. lappend tests env.test
  17. lappend tests error.test
  18. lappend tests eval.test
  19. #lappend tests exec.test
  20. lappend tests expr.test
  21. lappend tests file.test
  22. lappend tests for.test
  23. lappend tests format.test
  24. #lappend tests glob.test
  25. lappend tests history.test
  26. lappend tests if.test
  27. lappend tests incr.test
  28. lappend tests info.test
  29. lappend tests join.test
  30. lappend tests lindex.test
  31. lappend tests link.test
  32. lappend tests linsert.test
  33. lappend tests list.test
  34. lappend tests llength.test
  35. lappend tests lrange.test
  36. lappend tests lreplace.test
  37. lappend tests lsearch.test
  38. lappend tests lsort.test
  39. lappend tests misc.test
  40. lappend tests open.test
  41. lappend tests parse.test
  42. lappend tests pid.test
  43. lappend tests proc.test
  44. lappend tests regexp.test
  45. lappend tests rename.test
  46. lappend tests scan.test
  47. lappend tests set.test
  48. lappend tests source.test
  49. lappend tests split.test
  50. lappend tests string.test
  51. lappend tests switch.test
  52. lappend tests trace.test
  53. lappend tests unknown.test
  54. lappend tests uplevel.test
  55. lappend tests upvar.test
  56. lappend tests while.test
  57.  
  58. foreach i [lsort $tests] {
  59.     puts stdout $i
  60.     if [catch {source $i} message] {puts stdout $message}
  61. }
  62.