components/tcl/tk/test/results-32.master
changeset 7170 019e1326fbcf
parent 4767 8e8393bb8142
equal deleted inserted replaced
7167:d7385e987993 7170:019e1326fbcf
     1 make[1]: Entering directory `$(@D)'
       
     2 rm -f tkTestInit.o
       
     3 mv tkAppInit.o tkTestInit.o
       
     4 make[2]: Entering directory `$(@D)'
       
     5 make[2]: Leaving directory `$(@D)'
       
     6 Tests running in interp:  $(@D)/tktest
     1 Tests running in interp:  $(@D)/tktest
     7 Tests located in:  $(SOURCE_DIR)/tests
     2 Tests located in:  $(SOURCE_DIR)/tests
     8 Tests running in:  $(@D)
     3 Tests running in:  $(@D)
     9 Temporary files stored in $(@D)
     4 Temporary files stored in $(@D)
    10 Test files sourced into current interpreter
     5 Test files sourced into current interpreter
    96 ==== Contents of test case:
    91 ==== Contents of test case:
    97 
    92 
    98     font actual {times -12} -size
    93     font actual {times -12} -size
    99 
    94 
   100 ---- Result was:
    95 ---- Result was:
   101 -12
    96 -2147483648
   102 ---- Result should have been (exact matching):
    97 ---- Result should have been (exact matching):
   103 24
    98 24
   104 ==== font-44.1 FAILED
    99 ==== font-44.1 FAILED
   105 
   100 
   106 frame.test
   101 frame.test
   222 ---- Result was:
   217 ---- Result was:
   223 0.505376 0.720430
   218 0.505376 0.720430
   224 ---- Result should have been (exact matching):
   219 ---- Result should have been (exact matching):
   225 0.505376 0.72043
   220 0.505376 0.72043
   226 ==== spinbox-3.70 FAILED
   221 ==== spinbox-3.70 FAILED
   227 
       
   228 
       
   229 
       
   230 ==== spinbox-21.1 spinbox button, out of range checking FAILED
       
   231 ==== Contents of test case:
       
   232 
       
   233     destroy .e
       
   234     spinbox .e -from -10 -to 20 -increment 2
       
   235     set out {}
       
   236     lappend out [.e get]; # -10
       
   237     .e delete 0 end
       
   238     .e insert 0 25; # set outside of range
       
   239     .e invoke buttondown; # should constrain
       
   240     lappend out [.e get]; # 20
       
   241     .e delete 0 end
       
   242     .e insert 0 25; # set outside of range
       
   243     .e invoke buttonup; # should constrain
       
   244     lappend out [.e get]; # 20
       
   245     .e delete 0 end
       
   246     .e insert 0 -100; # set outside of range
       
   247     .e invoke buttonup; # should constrain
       
   248     lappend out [.e get]; # -10
       
   249     .e delete 0 end
       
   250     .e insert 0 -100; # set outside of range
       
   251     .e invoke buttondown; # should constrain
       
   252     lappend out [.e get]; # -10
       
   253     .e delete 0 end
       
   254     .e insert 0 bogus; # set to a bogus value
       
   255     .e invoke buttondown; # should use fromValue
       
   256     lappend out [.e get]; # -10
       
   257     .e delete 0 end
       
   258     .e insert 0 19; # set just inside of range
       
   259     .e invoke buttonup; # no wrap
       
   260     lappend out [.e get]; # 20
       
   261     .e invoke buttonup; # no wrap
       
   262     lappend out [.e get]; # 20
       
   263     .e invoke buttondown
       
   264     lappend out [.e get]; # 18
       
   265     .e delete 0 end
       
   266     .e insert 0 -9; # set just inside of range
       
   267     .e invoke buttondown; # no wrap
       
   268     lappend out [.e get]; # -10
       
   269     .e invoke buttondown; # no wrap
       
   270     lappend out [.e get]; # -10
       
   271     .e invoke buttonup; # no wrap
       
   272     lappend out [.e get]; # -8
       
   273 
       
   274     .e configure -wrap 1
       
   275     .e delete 0 end
       
   276     .e insert 0 19; # set just inside of range
       
   277     .e invoke buttonup; # wrap
       
   278     lappend out [.e get]; # -10
       
   279     .e invoke buttonup
       
   280     lappend out [.e get]; # -8
       
   281     .e invoke buttondown
       
   282     lappend out [.e get]; # -10
       
   283     .e delete 0 end
       
   284     .e insert 0 -9; # set just inside of range
       
   285     .e invoke buttondown; # wrap
       
   286     lappend out [.e get]; # 20
       
   287     .e invoke buttondown
       
   288     lappend out [.e get]; # 18
       
   289     .e invoke buttonup; # no wrap
       
   290     lappend out [.e get]; # 20
       
   291 
       
   292 
       
   293 ---- Result was:
       
   294 0 20 20 -10 -10 -10 20 20 18 -10 -10 -8 -10 -8 -10 20 18 20
       
   295 ---- Result should have been (exact matching):
       
   296 -10 20 20 -10 -10 -10 20 20 18 -10 -10 -8 -10 -8 -10 20 18 20
       
   297 ==== spinbox-21.1 FAILED
       
   298 
   222 
   299 text.test
   223 text.test
   300 textBTree.test
   224 textBTree.test
   301 textDisp.test
   225 textDisp.test
   302 
   226 
   418 up up up
   342 up up up
   419 ---- Result should have been (exact matching):
   343 ---- Result should have been (exact matching):
   420 x-up up up y-up up
   344 x-up up up y-up up
   421 ==== textTag-15.1 FAILED
   345 ==== textTag-15.1 FAILED
   422 
   346 
       
   347 
       
   348 
       
   349 ==== textTag-16.2 TkTextPickCurrent procedure FAILED
       
   350 ==== Contents of test case:
       
   351 
       
   352     event gen .t <ButtonRelease-1> -state 0x100 -x $x1 -y $y1
       
   353     event gen .t <Motion> -x $x2 -y $y2
       
   354     set x [.t index current]
       
   355     .t tag add big 3.0
       
   356     update
       
   357     lappend x [.t index current]
       
   358 
       
   359 ---- Result was:
       
   360 3.2 2.2
       
   361 ---- Result should have been (exact matching):
       
   362 3.2 3.1
       
   363 ==== textTag-16.2 FAILED
       
   364 
       
   365 
       
   366 
       
   367 ==== textTag-18.1 TkTextPickCurrent tag bindings FAILED
       
   368 ==== Contents of test case:
       
   369 
       
   370     text .t -width 30 -height 4 -relief sunken -borderwidth 10  -highlightthickness 10 -pady 2
       
   371     pack .t
       
   372     
       
   373     .t insert end " Tag here " TAG " no tag here"
       
   374     .t tag configure TAG -borderwidth 4 -relief raised
       
   375     .t tag bind TAG <Enter>  {lappend res "%x %y tag-Enter"}
       
   376     .t tag bind TAG <Leave>  {lappend res "%x %y tag-Leave"}
       
   377     bind .t <Enter> {lappend res Enter}
       
   378     bind .t <Leave> {lappend res Leave}
       
   379 
       
   380     set res {}
       
   381     # Bindings must not trigger on the widget border, only over
       
   382     # the actual tagged characters themselves.
       
   383     event gen .t <Motion> -warp 1 -x 0 -y 0 ; update
       
   384     event gen .t <Motion> -warp 1 -x 10 -y 10 ; update
       
   385     event gen .t <Motion> -warp 1 -x 25 -y 25 ; update
       
   386     event gen .t <Motion> -warp 1 -x 20 -y 20 ; update
       
   387     event gen .t <Motion> -warp 1 -x 10 -y 10 ; update
       
   388     event gen .t <Motion> -warp 1 -x 25 -y 25 ; update
       
   389     set res
       
   390 
       
   391 ---- Result was:
       
   392 {25 25 tag-Enter} Enter {10 10 tag-Leave} {25 25 tag-Enter} {20 20 tag-Leave} {25 25 tag-Enter}
       
   393 ---- Result should have been (exact matching):
       
   394 Enter {25 25 tag-Enter} {20 20 tag-Leave} {25 25 tag-Enter}
       
   395 ==== textTag-18.1 FAILED
       
   396 
   423 textWind.test
   397 textWind.test
   424 
   398 
   425 
   399 
   426 ==== textWind-10.6.1 EmbWinLayoutProc procedure, error in creating window FAILED
   400 ==== textWind-10.6.1 EmbWinLayoutProc procedure, error in creating window FAILED
   427 ==== Contents of test case:
   401 ==== Contents of test case:
   447 ==== textWind-10.6.1 FAILED
   421 ==== textWind-10.6.1 FAILED
   448 
   422 
   449 tk.test
   423 tk.test
   450 unixButton.test
   424 unixButton.test
   451 unixEmbed.test
   425 unixEmbed.test
       
   426 
       
   427 
       
   428 ==== unixEmbed-9.2 EmbedWindowDeleted procedure, check embeddedPtr FAILED
       
   429 ==== Contents of test case:
       
   430 
       
   431     deleteWindows
       
   432     frame .f1 -container 1 -width 200 -height 50
       
   433     pack .f1
       
   434     dobg "set w1 [winfo id .f1]"
       
   435     dobg {
       
   436 	eval destroy [winfo child .]
       
   437 	toplevel .t1 -use $w1 -highlightthickness 2 -bd 2 -relief sunken
       
   438 	set x {}
       
   439 	lappend x [testembed]
       
   440 	destroy .t1
       
   441 	lappend x [testembed]
       
   442     }
       
   443 
       
   444 ---- Test generated error; Return code was: 1
       
   445 ---- Return code should have been one of: 0 2
       
   446 ---- errorInfo: error flushing "file9": broken pipe
       
   447     while executing
       
   448 "flush $fd"
       
   449     (procedure "dobg" line 9)
       
   450     invoked from within
       
   451 "dobg "set w1 [winfo id .f1]""
       
   452     ("uplevel" body line 5)
       
   453     invoked from within
       
   454 "uplevel 1 $script"
       
   455 ---- errorCode: POSIX EPIPE {broken pipe}
       
   456 ==== unixEmbed-9.2 FAILED
       
   457 
   452 unixFont.test
   458 unixFont.test
   453 
   459 
   454 
   460 
   455 ==== unixfont-1.2 TkpGetNativeFont procedure: native FAILED
   461 ==== unixfont-1.2 TkpGetNativeFont procedure: native FAILED
   456 ==== Contents of test case:
   462 ==== Contents of test case:
   528     incr x [font measure $courier "\012"]   ;# 2
   534     incr x [font measure $courier "\012"]   ;# 2
   529     incr x [font measure $courier "\101"]   ;# 1
   535     incr x [font measure $courier "\101"]   ;# 1
   530     set x
   536     set x
   531 
   537 
   532 ---- Result was:
   538 ---- Result was:
   533 33
   539 29
   534 ---- Result should have been (exact matching):
   540 ---- Result should have been (exact matching):
   535 78
   541 78
   536 ==== unixfont-8.4 FAILED
   542 ==== unixfont-8.4 FAILED
   537 
       
   538 
       
   539 
       
   540 ==== unixfont-8.5 AllocFont procedure: setup widths of normal chars FAILED
       
   541 ==== Contents of test case:
       
   542 
       
   543     font metrics $courier -fixed
       
   544 
       
   545 ---- Result was:
       
   546 0
       
   547 ---- Result should have been (exact matching):
       
   548 1
       
   549 ==== unixfont-8.5 FAILED
       
   550 
   543 
   551 
   544 
   552 
   545 
   553 ==== unixfont-8.6 AllocFont procedure: setup widths of special chars FAILED
   546 ==== unixfont-8.6 AllocFont procedure: setup widths of special chars FAILED
   554 ==== Contents of test case:
   547 ==== Contents of test case:
   558     incr x [font measure $courier "\002"]   ;# 4
   551     incr x [font measure $courier "\002"]   ;# 4
   559     incr x [font measure $courier "\012"]   ;# 2
   552     incr x [font measure $courier "\012"]   ;# 2
   560     set x
   553     set x
   561 
   554 
   562 ---- Result was:
   555 ---- Result was:
   563 29
   556 21
   564 ---- Result should have been (exact matching):
   557 ---- Result should have been (exact matching):
   565 60
   558 60
   566 ==== unixfont-8.6 FAILED
   559 ==== unixfont-8.6 FAILED
   567 
   560 
   568 
   561 
   598     lappend x [.b.c index $t @[expr $ax*3],0]
   591     lappend x [.b.c index $t @[expr $ax*3],0]
   599     lappend x [.b.c index $t @[expr $ax*4],0]
   592     lappend x [.b.c index $t @[expr $ax*4],0]
   600     lappend x [.b.c index $t @[expr $ax*5],0]
   593     lappend x [.b.c index $t @[expr $ax*5],0]
   601 
   594 
   602 ---- Result was:
   595 ---- Result was:
   603 0 1 1 3 3 3
   596 0 1 2 3 3 3
   604 ---- Result should have been (exact matching):
   597 ---- Result should have been (exact matching):
   605 0 1 1 1 1 2
   598 0 1 1 1 1 2
   606 ==== unixfont-9.2 FAILED
   599 ==== unixfont-9.2 FAILED
   607 
   600 
   608 unixMenu.test
   601 unixMenu.test
   609 unixSelect.test
   602 unixSelect.test
   610 unixWm.test
   603 unixWm.test
       
   604 
       
   605 
       
   606 ==== unixWm-4.3 moving window while withdrawn FAILED
       
   607 ==== Contents of test case:
       
   608 
       
   609 	wm withdraw .t
       
   610 	sleep 200
       
   611 	wm geom .t $geom
       
   612 	update
       
   613 	wm deiconify .t
       
   614 	wm geom .t
       
   615     
       
   616 ---- Result was:
       
   617 100x150+0+29
       
   618 ---- Result should have been (exact matching):
       
   619 100x150+0+0
       
   620 ==== unixWm-4.3 FAILED
       
   621 
   611 
   622 
   612 
   623 
   613 ==== unixWm-45.2 UpdateSizeHints procedure FAILED
   624 ==== unixWm-45.2 UpdateSizeHints procedure FAILED
   614 ==== Contents of test case:
   625 ==== Contents of test case:
   615 
   626 
   814 .t .
   825 .t .
   815 ==== wm-stackorder-5.1 FAILED
   826 ==== wm-stackorder-5.1 FAILED
   816 
   827 
   817 xmfbox.test
   828 xmfbox.test
   818 
   829 
   819 all.tcl:	Total	9101	Passed	7910	Skipped	1155	Failed	36
   830 all.tcl:	Total	8865	Passed	7908	Skipped	919	Failed	38
   820 Sourced 87 Test Files.
   831 Sourced 87 Test Files.
   821 Files with failing tests: focus.test font.test scrollbar.test spinbox.test textDisp.test textImage.test textTag.test textWind.test unixFont.test unixWm.test wm.test
   832 Files with failing tests: focus.test font.test scrollbar.test spinbox.test textDisp.test textImage.test textTag.test textWind.test unixEmbed.test unixFont.test unixWm.test wm.test
   822 Number of tests skipped for each constraint:
   833 Number of tests skipped for each constraint:
   823 	14	altDisplay
   834 	14	altDisplay
   824 	1	aqua
   835 	1	aqua
   825 	16	colorsFree
   836 	16	colorsFree
   826 	3	colorsLeftover
   837 	3	colorsLeftover
   831 	1	hasCourierNew
   842 	1	hasCourierNew
   832 	1	hasTimesNew
   843 	1	hasTimesNew
   833 	1	havePseudocolorVisual
   844 	1	havePseudocolorVisual
   834 	6	knownBug
   845 	6	knownBug
   835 	1	memory
   846 	1	memory
   836 	378	nonPortable
   847 	142	nonPortable
   837 	33	nt
   848 	33	nt
   838 	5	pseudocolor8
   849 	5	pseudocolor8
   839 	11	testmetrics
   850 	11	testmetrics
   840 	7	testwinevent
   851 	7	testwinevent
   841 	141	textfonts
   852 	141	textfonts
   862 panedwindow.test
   873 panedwindow.test
   863 progressbar.test
   874 progressbar.test
   864 radiobutton.test
   875 radiobutton.test
   865 scrollbar.test
   876 scrollbar.test
   866 spinbox.test
   877 spinbox.test
   867 
       
   868 
       
   869 ==== spinbox-1.8.4 -validate option: FAILED
       
   870 ==== Contents of test case:
       
   871 
       
   872     .sb configure -validate all -validatecommand {lappend ::spinbox_test %P}
       
   873     pack .sb
       
   874     .sb set 50
       
   875     focus .sb
       
   876     after 100 {set ::spinbox_wait 1} ; vwait ::spinbox_wait
       
   877     set ::spinbox_test
       
   878 
       
   879 ---- Result was:
       
   880 
       
   881 ---- Result should have been (exact matching):
       
   882 50
       
   883 ==== spinbox-1.8.4 FAILED
       
   884 
       
   885 treetags.test
   878 treetags.test
   886 treeview.test
   879 treeview.test
   887 ttk.test
   880 ttk.test
   888 validate.test
   881 validate.test
   889 vsapi.test
   882 vsapi.test
   890 
   883 
   891 all.tcl:	Total	457	Passed	439	Skipped	17	Failed	1
   884 all.tcl:	Total	457	Passed	440	Skipped	17	Failed	0
   892 Sourced 17 Test Files.
   885 Sourced 17 Test Files.
   893 Files with failing tests: spinbox.test
       
   894 Number of tests skipped for each constraint:
   886 Number of tests skipped for each constraint:
   895 	2	NA
   887 	2	NA
   896 	4	coreEntry
   888 	4	coreEntry
   897 	3	coreScrollbar
   889 	3	coreScrollbar
   898 	5	nyi
   890 	5	nyi
   899 	3	xpnative
   891 	3	xpnative
   900 make[1]: Leaving directory `$(@D)'