summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorculler <culler>2017-12-03 20:33:31 (GMT)
committerculler <culler>2017-12-03 20:33:31 (GMT)
commita348819ffd3b6e3590e651411dad4cf1a98c45b1 (patch)
tree5354962f841df2d296fde121943680838bf97aa3 /tests
parentc2b771f9b5381dc7b5a1bd7e5d58ef80dc9d4636 (diff)
downloadtk-a348819ffd3b6e3590e651411dad4cf1a98c45b1.zip
tk-a348819ffd3b6e3590e651411dad4cf1a98c45b1.tar.gz
tk-a348819ffd3b6e3590e651411dad4cf1a98c45b1.tar.bz2
Move calls to clearRingBuffer into the setup sections of tests in bind.test.
Diffstat (limited to 'tests')
-rw-r--r--tests/bind.test26
1 files changed, 13 insertions, 13 deletions
diff --git a/tests/bind.test b/tests/bind.test
index 7f1ef1b..9e30d78 100644
--- a/tests/bind.test
+++ b/tests/bind.test
@@ -1395,8 +1395,8 @@ test bind-15.22 {MatchPatterns procedure, time wrap-around} -setup {
pack .t.f
focus -force .t.f
update
-} -body {
clearRingBuffer <Key>
+} -body {
bind .t.f <Double-1> {set x 1}
set x 0
event generate .t.f <Button-1> -time -100
@@ -1411,8 +1411,8 @@ test bind-15.23 {MatchPatterns procedure, time wrap-around} -setup {
pack .t.f
focus -force .t.f
update
-} -body {
clearRingBuffer <Key>
+} -body {
bind .t.f <Double-1> {set x 1}
set x 0
event generate .t.f <Button-1> -time -100
@@ -1428,8 +1428,8 @@ test bind-15.24 {MatchPatterns procedure, virtual event} -setup {
focus -force .t.f
update
set x {}
-} -body {
clearRingBuffer <Key>
+} -body {
event add <<Paste>> <Button-1>
bind .t.f <<Paste>> {lappend x paste}
event generate .t.f <Button-1>
@@ -1445,8 +1445,8 @@ test bind-15.25 {MatchPatterns procedure, reject a virtual event} -setup {
focus -force .t.f
update
set x {}
-} -body {
clearRingBuffer <Key>
+} -body {
event add <<Paste>> <Shift-Button-1>
bind .t.f <<Paste>> {lappend x paste}
event generate .t.f <Button-1>
@@ -1462,8 +1462,8 @@ test bind-15.26 {MatchPatterns procedure, reject a virtual event} -setup {
focus -force .t.f
update
set x {}
-} -body {
clearRingBuffer <Key>
+} -body {
event add <<V1>> <Button>
event add <<V2>> <Button-1>
event add <<V3>> <Shift-Button-1>
@@ -1489,8 +1489,8 @@ test bind-15.27 {MatchPatterns procedure, conflict resolution} -setup {
pack .t.f
focus -force .t.f
update
-} -body {
clearRingBuffer <Button>
+} -body {
bind .t.f <KeyPress> {set x 0}
bind .t.f 1 {set x 1}
set x none
@@ -1504,8 +1504,8 @@ test bind-15.28 {MatchPatterns procedure, conflict resolution} -setup {
pack .t.f
focus -force .t.f
update
-} -body {
clearRingBuffer <Button>
+} -body {
bind .t.f <KeyPress> {set x 0}
bind .t.f 1 {set x 1}
set x none
@@ -1519,8 +1519,8 @@ test bind-15.29 {MatchPatterns procedure, conflict resolution} -setup {
pack .t.f
focus -force .t.f
update
-} -body {
clearRingBuffer <Button>
+} -body {
bind .t.f <KeyPress> {lappend x 0}
bind .t.f 1 {lappend x 1}
bind .t.f 21 {lappend x 2}
@@ -1537,8 +1537,8 @@ test bind-15.30 {MatchPatterns procedure, conflict resolution} -setup {
pack .t.f
focus -force .t.f
update
-} -body {
clearRingBuffer <Key>
+} -body {
bind .t.f <ButtonPress> {set x 0}
bind .t.f <1> {set x 1}
set x none
@@ -1554,8 +1554,8 @@ test bind-15.31 {MatchPatterns procedure, conflict resolution} -setup {
focus -force .t.f
update
set x {}
-} -body {
clearRingBuffer <Button>
+} -body {
bind .t.f <M1-Key> {set x 0}
bind .t.f <M2-Key> {set x 1}
event generate .t.f <Key-a> -state 0x18
@@ -1568,8 +1568,8 @@ test bind-15.32 {MatchPatterns procedure, conflict resolution} -setup {
pack .t.f
focus -force .t.f
update
-} -body {
clearRingBuffer <Button>
+} -body {
bind .t.f <M2-Key> {set x 0}
bind .t.f <M1-Key> {set x 1}
set x none
@@ -1584,8 +1584,8 @@ test bind-15.33 {MatchPatterns procedure, conflict resolution} -setup {
focus -force .t.f
update
set x {}
-} -body {
clearRingBuffer <Key>
+} -body {
bind .t.f <1> {lappend x single}
bind Test <1> {lappend x single(Test)}
bind Test <Double-1> {lappend x double(Test)}
@@ -2232,8 +2232,8 @@ test bind-16.46 {ExpandPercents procedure} -setup {
focus -force .t.e
foreach p [event info] {event delete $p}
update
-} -body {
clearRingBuffer <Button>
+} -body {
bind all <Key> {set z "%M"}
bind Entry <Key> {set y "%M"}
bind .t.e <Key> {set x "%M"}