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

通讯编程

开发平台:

Visual C++

  1. # This file is a Tcl script to test the bgerror command.
  2. # It is organized in the standard fashion for Tcl tests.
  3. #
  4. # Copyright (c) 1997 Sun Microsystems, Inc.
  5. # Copyright (c) 1998-1999 by Scriptics Corporation.
  6. # All rights reserved.
  7. #
  8. # RCS: @(#) $Id: bgerror.test,v 1.4 2002/07/14 05:48:45 dgp Exp $
  9. package require tcltest 2.1
  10. namespace import -force tcltest::configure
  11. namespace import -force tcltest::testsDirectory
  12. configure -testdir [file join [pwd] [file dirname [info script]]]
  13. configure -loadfile [file join [testsDirectory] constraints.tcl]
  14. tcltest::loadTestedCommands
  15. test bgerror-1.1 {bgerror / tkerror compat} {
  16.     set errRes {}
  17.     proc tkerror {err} {
  18. global errRes;
  19. set errRes $err;
  20.     }
  21.     after 0 {error err1}
  22.     vwait errRes;
  23.     set errRes;
  24. } err1
  25. test bgerror-1.2 {bgerror / tkerror compat / accumulation} {
  26.     set errRes {}
  27.     proc tkerror {err} {
  28. global errRes;
  29. lappend errRes $err;
  30.     }
  31.     after 0 {error err1}
  32.     after 0 {error err2}
  33.     after 0 {error err3}
  34.     update
  35.     set errRes;
  36. } {err1 err2 err3}
  37. test bgerror-1.3 {bgerror / tkerror compat / accumulation / break} {
  38.     set errRes {}
  39.     proc tkerror {err} {
  40. global errRes;
  41. lappend errRes $err;
  42. return -code break "skip!";
  43.     }
  44.     after 0 {error err1}
  45.     after 0 {error err2}
  46.     after 0 {error err3}
  47.     update
  48.     set errRes;
  49. } err1
  50. catch {rename tkerror {}}
  51. # some testing of the default error dialog
  52. # would be needed too, but that's not easy at all
  53. # to emulate.
  54. # cleanup
  55. ::tcltest::cleanupTests
  56. return