Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | send.test: on macOS/aqua skip tests that send to interps in other processes (add constraint notAqua) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | bug-9ba9729ef1 |
Files: | files | file ages | folders |
SHA3-256: |
1f3dbb47afc7d5153456a98d81929ec1 |
User & Date: | erikleunissen 2025-08-16 09:06:04.346 |
Original Comment: | On macOS/aqua skip tests that send to interps in other processes (add constraint notAqua) |
Context
2025-08-16
| ||
09:09 | Fix mistake in previous commit check-in: 95d7944f user: erikleunissen tags: bug-9ba9729ef1 | |
09:06 | send.test: on macOS/aqua skip tests that send to interps in other processes (add constraint notAqua) check-in: 1f3dbb47 user: erikleunissen tags: bug-9ba9729ef1 | |
07:43 | Ticket [9ba9729ef1]: text complements for man winfo and man send check-in: 731a5957 user: erikleunissen tags: bug-9ba9729ef1 | |
Changes
Changes to tests/send.test.
︙ | ︙ | |||
131 132 133 134 135 136 137 | } {1 {target application died or uses a Tk version before 4.0}} test send-5.4 {ValidateName procedure} {secureserver testsend} { tk appname test testsend prop root InterpRegistry "$commId Bogus\n$commId test\n" winfo interps } {test} | | | | | | 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 | } {1 {target application died or uses a Tk version before 4.0}} test send-5.4 {ValidateName procedure} {secureserver testsend} { tk appname test testsend prop root InterpRegistry "$commId Bogus\n$commId test\n" winfo interps } {test} if {[testConstraint nonPortable] && [testConstraint xhost] && [testConstraint aqua]} { winfo interps tk appname tktest update childTkProcess create set x [split [exec xhost] \n] foreach i [lrange $x 1 end] { exec xhost - $i } } test send-6.1 {ServerSecure procedure} {nonPortable secureserver notAqua} { set a 44 list [childTkProcess eval [list send [tk appname] set a 55]] $a } {55 55} test send-6.2 {ServerSecure procedure} {nonPortable secureserver xhost notAqua} { set a 22 exec xhost [exec hostname] list [catch {childTkProcess eval [list send [tk appname] set a 33]} msg] $a $msg } {0 22 {X server insecure (must use xauth-style authorization); command ignored}} test send-6.3 {ServerSecure procedure} {nonPortable secureserver xhost notAqua} { set a abc exec xhost - [exec hostname] list [childTkProcess eval [list send [tk appname] set a new]] $a } {new new} childTkProcess exit test send-7.1 {Tk_SetAppName procedure} {secureserver testsend} { |
︙ | ︙ | |||
190 191 192 193 194 195 196 | send -async $app [list send [tk appname] set a 77] set result $a after 200 set x 40 tkwait variable x childTkProcess exit lappend result $a } {66 77} | | | 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 | send -async $app [list send [tk appname] set a 77] set result $a after 200 set x 40 tkwait variable x childTkProcess exit lappend result $a } {66 77} test send-8.2 {Tk_SendCmd procedure, options} {secureserver altDisplay notAqua} { childTkProcess create -display $env(TK_ALT_DISPLAY) tk appname xyzgorp set a homeDisplay set result [childTkProcess eval " toplevel .t -screen [winfo screen .] wm geometry .t +0+0 set a altDisplay |
︙ | ︙ | |||
287 288 289 290 291 292 293 | winfo interps tk appname tktest set result } {1 {no application named "bogus"}} catch {interp delete t_s_1} | | | | | 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 | winfo interps tk appname tktest set result } {1 {no application named "bogus"}} catch {interp delete t_s_1} test send-8.17 {Tk_SendCmd procedure, deferring events} {secureserver nonPortable notAqua} { # Non-portable because some window managers ignore "raise" # requests so can't guarantee that new app's window won't # obscure .f, thereby masking the Expose event. childTkProcess create set app [childTkProcess eval {tk appname}] raise . ; # Don't want new app obscuring .f catch {destroy .f} frame .f place .f -x 0 -y 0 bind .f <Expose> {set a exposed} set a {no event yet} set result "" lappend result [send $app send [list [tk appname]] set a] lappend result $a update childTkProcess exit lappend result $a } {{no event yet} {no event yet} exposed} test send-8.18 {Tk_SendCmd procedure, error in remote app} {secureserver notAqua} { childTkProcess create set app [childTkProcess eval {tk appname}] set result [string tolower [list [catch {send $app open bad_name} msg] \ $msg $errorInfo $errorCode]] childTkProcess exit set result } {1 {couldn't open "bad_name": no such file or directory} {couldn't open "bad_name": no such file or directory while executing "open bad_name" invoked from within "send $app open bad_name"} {posix enoent {no such file or directory}}} test send-8.19 {Tk_SendCmd, using modal timeouts} {secureserver notAqua} { childTkProcess create set app [childTkProcess eval {tk appname}] set x no set result "" after 0 {set x yes} lappend result [send $app {concat x y z}] lappend result $x |
︙ | ︙ | |||
479 480 481 482 483 484 485 | test send-10.17 {SendEventProc procedure, errorCode and errorInfo} {secureserver testsend} { testsend prop comm Comm \ "r\n-i test1\n-e test2\n-c 4\n-s [testsend serial]\n" set errorCode oldErrorCode set errorInfo oldErrorInfo list [catch {send dummy foo} msg] $msg $errorInfo $errorCode } {4 {} oldErrorInfo oldErrorCode} | | | | 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 | test send-10.17 {SendEventProc procedure, errorCode and errorInfo} {secureserver testsend} { testsend prop comm Comm \ "r\n-i test1\n-e test2\n-c 4\n-s [testsend serial]\n" set errorCode oldErrorCode set errorInfo oldErrorInfo list [catch {send dummy foo} msg] $msg $errorInfo $errorCode } {4 {} oldErrorInfo oldErrorCode} test send-10.18 {SendEventProc procedure, send kills application} {secureserver testsend notAqua} { childTkProcess create childTkProcess eval {tk appname t_s_3} set x [list [catch {send t_s_3 destroy .} msg] $msg] childTkProcess exit set x } {0 {}} test send-10.19 {SendEventProc procedure, send exits} {secureserver testsend notAqua} { childTkProcess create childTkProcess eval {tk appname t_s_3} set x [list [catch {send t_s_3 exit} msg] $msg] childTkProcess exit set x } {1 {target application died}} |
︙ | ︙ | |||
552 553 554 555 556 557 558 | rename send {} set result {} lappend result [winfo interps] [info commands send] tk appname foo lappend result [winfo interps] [info commands send] } {{} {} foo send} | | | 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 | rename send {} set result {} lappend result [winfo interps] [info commands send] tk appname foo lappend result [winfo interps] [info commands send] } {{} {} foo send} test send-14.1 {SendRestrictProc procedure, sends crossing from different displays} {secureserver altDisplay notAqua} { childTkProcess create -display $env(TK_ALT_DISPLAY) set result [childTkProcess eval " toplevel .t -screen [winfo screen .] wm geometry .t +0+0 tk appname xyzgorp1 set x child "] |
︙ | ︙ |