1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# This file contains a collection of tests for the procedures in the file
# tclEvent.c, which includes the "update", and "vwait" Tcl
# commands. Sourcing this file into Tcl runs the tests and generates
# output for errors. No output means no errors were found.
#
# Copyright (c) 1995-1997 Sun Microsystems, Inc.
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# "@(#) event.test 1.35 97/08/11 11:58:38"
if {[string compare test [info procs test]] == 1} then {source defs}
if {[catch {testfilehandler create 0 off off}] == 0 } {
test event-1.1 {Tcl_CreateFileHandler, reading} {
testfilehandler close
testfilehandler create 0 readable off
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# This file contains a collection of tests for the procedures in the file
# tclEvent.c, which includes the "update", and "vwait" Tcl
# commands. Sourcing this file into Tcl runs the tests and generates
# output for errors. No output means no errors were found.
#
# Copyright (c) 1995-1997 Sun Microsystems, Inc.
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# RCS: @(#) $Id: event.test,v 1.3 1998/09/14 18:40:08 stanton Exp $
if {[string compare test [info procs test]] == 1} then {source defs}
if {[catch {testfilehandler create 0 off off}] == 0 } {
test event-1.1 {Tcl_CreateFileHandler, reading} {
testfilehandler close
testfilehandler create 0 readable off
|