blob: fc3611cccffca72e4bfc4a4a3e297638fe7788a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
# This file is a Tcl script to test the bgerror command.
#
# Copyright © 1997 Sun Microsystems, Inc.
# Copyright © 1998-1999 Scriptics Corporation.
# All rights reserved.
# NOTE
#
# Some testing of the default error dialog would be needed too, but that's
# not easy at all to emulate.
#
# TESTFILE INITIALIZATION
#
package require tcltest 2.2; # needed in mode -singleproc 0
# Load the main script main.tcl, which takes care of:
# - setup for the application and the root window
# - importing commands from the tcltest namespace
# - loading of the testutils mechanism along with its utility procs
# - loading of Tk specific test constraints (additionally to constraints
# provided by the package tcltest)
source [file join [tcltest::configure -testdir] main.tcl]
# Ensure a pristine initial window state
resetWindows
#
# TESTS
#
test bgerror-1.1 {bgerror / tkerror compat} -setup {
set errRes {}
proc tkerror {err} {
global errRes;
set errRes $err;
}
} -body {
after 0 {error err1}
vwait errRes;
return $errRes;
} -cleanup {
catch {rename tkerror {}}
} -result {err1}
test bgerror-1.2 {bgerror / tkerror compat / accumulation} -setup {
set errRes {}
proc tkerror {err} {
global errRes;
lappend errRes $err;
}
} -body {
after 0 {error err1}
after 0 {error err2}
after 0 {error err3}
update
return $errRes;
} -cleanup {
catch {rename tkerror {}}
} -result {err1 err2 err3}
test bgerror-1.3 {bgerror / tkerror compat / accumulation / break} -setup {
set errRes {}
proc tkerror {err} {
global errRes;
lappend errRes $err;
return -code break "skip!";
}
} -body {
after 0 {error err1}
after 0 {error err2}
after 0 {error err3}
update
return $errRes;
} -cleanup {
catch {rename tkerror {}}
} -result {err1}
#
# TESTFILE CLEANUP
#
cleanupTests
|