summaryrefslogtreecommitdiff
path: root/binutils-gdb/log_test.diff
blob: 9fba623b7fe55cc0736b101b39862b3796a71ea9 (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
diff --git toolchain/logs/binutils-gdb/kepler.SCHWINGE/log_test_ toolchain/logs/binutils-gdb/laplace.SCHWINGE/log_test_
index 695b503..3270c89 100644
--- toolchain/logs/binutils-gdb/kepler.SCHWINGE/log_test_
+++ toolchain/logs/binutils-gdb/laplace.SCHWINGE/log_test_
@@ -11,14 +11,12 @@ make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/bfd/po'
 make[4]: Nothing to be done for 'check'.
 make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/bfd/po'
 make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/bfd'
-make[4]: Nothing to be done for 'check-am'.
 make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/bfd'
 make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/bfd'
 make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/bfd'
 make[2]: Entering directory '[...]/tschwinge/W._C._Handy.build/opcodes'
 Making check in .
 make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/opcodes'
-make[3]: Nothing to be done for 'check-am'.
 make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/opcodes'
 Making check in po
 make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/opcodes/po'
@@ -52,7 +50,7 @@ if /bin/dash -c "$runtest --version" > /dev/null 2>&1; then \
 else echo "WARNING: could not find \`runtest'" 1>&2; :;\
 fi
 WARNING: Couldn't find tool init file
-Test Run By thomas on Thu Sep 11 18:50:52 2014
+Test Run By thomas on Thu Sep 11 17:06:17 2014
 Native configuration is [ARCH]
 
 		=== binutils tests ===
@@ -131,7 +129,7 @@ if /bin/dash -c "$runtest --version" > /dev/null 2>&1; then \
 else echo "WARNING: could not find \`runtest'" 1>&2; :;\
 fi
 WARNING: Couldn't find tool init file
-Test Run By thomas on Thu Sep 11 18:50:59 2014
+Test Run By thomas on Thu Sep 11 17:06:32 2014
 Native configuration is [ARCH]
 
 		=== gas tests ===
@@ -308,7 +306,6 @@ make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/bfd/po'
 make[4]: Nothing to be done for 'all'.
 make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/bfd/po'
 make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/bfd'
-make[4]: Nothing to be done for 'all-am'.
 make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/bfd'
 make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/bfd'
 make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/bfd'
@@ -317,7 +314,6 @@ make  all-recursive
 make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/opcodes'
 Making all in .
 make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/opcodes'
-make[4]: Nothing to be done for 'all-am'.
 make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/opcodes'
 Making all in po
 make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/opcodes/po'
@@ -337,7 +333,6 @@ make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/gas/po'
 make[4]: Nothing to be done for 'all'.
 make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gas/po'
 make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/gas'
-make[4]: Nothing to be done for 'all-am'.
 make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gas'
 make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gas'
 make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gas'
@@ -364,7 +359,6 @@ make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/binutils/po'
 make[4]: Nothing to be done for 'all'.
 make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/binutils/po'
 make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/binutils'
-make[4]: Nothing to be done for 'all-am'.
 make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/binutils'
 make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/binutils'
 make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/binutils'
@@ -1103,8 +1097,8 @@ PASS: ver_test_4.sh
 PASS: ver_test_5.sh
 PASS: ver_test_7.sh
 PASS: ver_test_10.sh
-FAIL: relro_test.sh
-PASS: ver_matching_test.sh
+PASS: relro_test.sh
+FAIL: ver_matching_test.sh
 PASS: script_test_3.sh
 PASS: script_test_4.sh
 PASS: script_test_5.sh
@@ -1213,11 +1207,11 @@ PASS: relro_strip_test
 PASS: relro_script_test
 PASS: script_test_1
 PASS: script_test_2
-PASS: justsyms
+FAIL: justsyms
 PASS: justsyms_exec
 PASS: binary_test
-PASS: script_test_3
-PASS: tls_phdrs_script_test
+FAIL: script_test_3
+FAIL: tls_phdrs_script_test
 PASS: tls_script_test
 PASS: script_test_11
 PASS: dynamic_list_2
@@ -1261,7 +1255,7 @@ PASS: ifuncmain7pie
 PASS: ifuncvar
 PASS: start_lib_test
 ============================
-2 of 185 tests failed
+5 of 185 tests failed
 See testsuite/test-suite.log
 ============================
 Makefile:3717: recipe for target 'test-suite.log' failed
@@ -1337,7 +1331,6 @@ make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/gprof/po'
 make[4]: Nothing to be done for 'check'.
 make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gprof/po'
 make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/gprof'
-make[4]: Nothing to be done for 'check-am'.
 make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gprof'
 make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gprof'
 make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gprof'
@@ -1365,14 +1358,14 @@ if /bin/dash -c "$runtest --version" > /dev/null 2>&1; then \
 	CC="gcc-4.8" CFLAGS="-g -O2" \
 	CXX="g++-4.8" CXXFLAGS="-g -O2" \
 	CC_FOR_HOST="gcc-4.8" CFLAGS_FOR_HOST="-g -O2" \
-	OFILES="ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o plugin.o ldwrite.o ldexp.o  ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o eelf_i386.o ei386linux.o eelf32_x86_64.o " BFDLIB="../bfd/.libs/libbfd.a" \
+	OFILES="ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o plugin.o ldwrite.o ldexp.o  ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o eelf_i386.o " BFDLIB="../bfd/.libs/libbfd.a" \
 	LIBIBERTY="../libiberty/libiberty.a " LIBS="-lz -ldl " \
 	DO_COMPARE="`echo 'cmp --ignore-initial=16 $f1 $f2' | sed -e 's,\\$,,g'`" \
 	; \
 else echo "WARNING: could not find \`runtest'" 1>&2; :;\
 fi
 WARNING: Couldn't find tool init file
-Test Run By thomas on Thu Sep 11 18:54:41 2014
+Test Run By thomas on Thu Sep 11 17:11:40 2014
 Native configuration is [ARCH]
 
 		=== ld tests ===
@@ -1430,6 +1423,8 @@ Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-ia64/ia64.exp ...
 Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-ia64/line.exp ...
 Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-ifunc/binutils.exp ...
 Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-ifunc/ifunc.exp ...
+FAIL: Common symbol override ifunc test 1a
+FAIL: Common symbol override ifunc test 1b
 Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-libs/libs.exp ...
 Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-linkonce/linkonce.exp ...
 Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-m68hc11/m68hc11.exp ...
@@ -1527,15 +1522,26 @@ Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-xtensa/xtensa.exp ...
 
 		=== ld Summary ===
 
-# of expected passes		950
-# of expected failures		4
+# of expected passes		944
+# of unexpected failures	2
+# of expected failures		8
 # of untested testcases		6
 [...]/tschwinge/W._C._Handy.build/ld/ld-new 2.24.51.20140214
 
+Makefile:3357: recipe for target 'check-DEJAGNU' failed
+make[5]: *** [check-DEJAGNU] Error 1
 make[5]: Leaving directory '[...]/tschwinge/W._C._Handy.build/ld'
+Makefile:1763: recipe for target 'check-am' failed
+make[4]: *** [check-am] Error 2
 make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/ld'
+Makefile:1610: recipe for target 'check-recursive' failed
+make[3]: *** [check-recursive] Error 1
 make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/ld'
+Makefile:1765: recipe for target 'check' failed
+make[2]: *** [check] Error 2
 make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/ld'
+Makefile:7479: recipe for target 'check-ld' failed
+make[1]: *** [check-ld] Error 2
 make[2]: Entering directory '[...]/tschwinge/W._C._Handy.build/libdecnumber'
 make[2]: Nothing to be done for 'check'.
 make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/libdecnumber'
@@ -1572,7 +1578,7 @@ Making a new config file...
 make check-single
 make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/gdb/testsuite'
 rootme=`pwd`; export rootme; srcdir=../../../W._C._Handy/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest 
-Test Run By thomas on Thu Sep 11 18:57:05 2014
+Test Run By thomas on Thu Sep 11 17:16:06 2014
 Native configuration is [ARCH]
 
 		=== gdb tests ===
@@ -1649,7 +1655,12 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/mi_interface.exp ...
 FAIL: gdb.ada/mi_interface.exp: Create ggg1 varobj
 FAIL: gdb.ada/mi_interface.exp: list ggg1's children
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/mi_task_arg.exp ...
+FAIL: gdb.ada/mi_task_arg.exp: mi runto task_switch.break_me (unknown output after running)
+FAIL: gdb.ada/mi_task_arg.exp: -stack-list-arguments 1
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/mi_task_info.exp ...
+FAIL: gdb.ada/mi_task_info.exp: mi runto task_switch.break_me (unknown output after running)
+FAIL: gdb.ada/mi_task_info.exp: -ada-task-info with no argument
+FAIL: gdb.ada/mi_task_info.exp: -ada-task-info 3
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/mod_from_name.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/nested.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/null_array.exp ...
@@ -1670,6 +1681,7 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/ptype_field.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/ptype_tagged_param.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/py_range.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/rdv_wait.exp ...
+FAIL: gdb.ada/rdv_wait.exp: task 2
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/rec_return.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/ref_param.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/ref_tick_size.exp ...
@@ -1684,7 +1696,19 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/taft_type.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/tagged.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/tagged_not_init.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/task_bp.exp ...
+FAIL: gdb.ada/task_bp.exp: run to pck.dummy_task - from psymtab
+FAIL: gdb.ada/task_bp.exp: run to dummy_task - from psymtab
+FAIL: gdb.ada/task_bp.exp: run to pck.adb:pck.dummy_task - from psymtab
+FAIL: gdb.ada/task_bp.exp: run to pck.adb:dummy_task - from psymtab
+FAIL: gdb.ada/task_bp.exp: run to pck.dummy_task - from full symtab
+FAIL: gdb.ada/task_bp.exp: run to dummy_task - from full symtab
+FAIL: gdb.ada/task_bp.exp: run to pck.adb:pck.dummy_task - from full symtab
+FAIL: gdb.ada/task_bp.exp: run to pck.adb:dummy_task - from full symtab
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/tasks.exp ...
+FAIL: gdb.ada/tasks.exp: info tasks before inserting breakpoint
+FAIL: gdb.ada/tasks.exp: continue to breakpoint
+FAIL: gdb.ada/tasks.exp: info tasks after hitting breakpoint
+FAIL: gdb.ada/tasks.exp: continue until exit
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/tick_last_segv.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/tick_length_array_enum_idx.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/type_coercion.exp ...
@@ -1693,6 +1717,7 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/uninitialized_vars.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/variant_record_packed_array.exp ...
 FAIL: gdb.ada/variant_record_packed_array.exp: print adress content
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/watch_arg.exp ...
+FAIL: gdb.ada/watch_arg.exp: Continuing to second breakpoint
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/whatis_array_val.exp ...
 FAIL: gdb.ada/whatis_array_val.exp: print full
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/widewide.exp ...
@@ -1725,9 +1750,26 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-bp_permanent.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-byte.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-cfi-notcurrent.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-disp-step.exp ...
+FAIL: gdb.arch/i386-disp-step.exp: continue to test_syscall_end
+FAIL: gdb.arch/i386-disp-step.exp: continue to test_prefixed_syscall
+FAIL: gdb.arch/i386-disp-step.exp: continue to test_prefixed_syscall_end (the program is no longer running)
+FAIL: gdb.arch/i386-disp-step.exp: continue to test_int3 (the program is no longer running)
+FAIL: gdb.arch/i386-disp-step.exp: continue to test_int3_end (the program is no longer running)
+FAIL: gdb.arch/i386-disp-step.exp: continue until exit at i386-disp-step (the program is no longer running)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-dr3-watch.exp ...
+FAIL: gdb.arch/i386-dr3-watch.exp: watch i1
+FAIL: gdb.arch/i386-dr3-watch.exp: watch i2
+FAIL: gdb.arch/i386-dr3-watch.exp: watch i3
+FAIL: gdb.arch/i386-dr3-watch.exp: watch i4
+FAIL: gdb.arch/i386-dr3-watch.exp: continue to i1 watchpoint
+FAIL: gdb.arch/i386-dr3-watch.exp: continue to i2 watchpoint
+FAIL: gdb.arch/i386-dr3-watch.exp: continue to i3 watchpoint
+FAIL: gdb.arch/i386-dr3-watch.exp: continue to i4 watchpoint
+FAIL: gdb.arch/i386-dr3-watch.exp: set watchpoint occuping one debug register
 Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-float.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-gnu-cfi.exp ...
+FAIL: gdb.arch/i386-gnu-cfi.exp: shift up to the modified frame
+FAIL: gdb.arch/i386-gnu-cfi.exp: Existence of the CFI inserted register
 Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-mpx.exp ...
 gdb compile failed, gcc: error: unrecognized command line option '-fmpx'
 Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-permbkpt.exp ...
@@ -1746,6 +1788,30 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-size-overlap.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-size.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-sse-stack-align.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-sse.exp ...
+FAIL: gdb.arch/i386-sse.exp: check float contents of %xmm0
+FAIL: gdb.arch/i386-sse.exp: check int8 contents of %xmm0
+FAIL: gdb.arch/i386-sse.exp: check float contents of %xmm1
+FAIL: gdb.arch/i386-sse.exp: check int8 contents of %xmm1
+FAIL: gdb.arch/i386-sse.exp: check float contents of %xmm2
+FAIL: gdb.arch/i386-sse.exp: check int8 contents of %xmm2
+FAIL: gdb.arch/i386-sse.exp: check float contents of %xmm3
+FAIL: gdb.arch/i386-sse.exp: check int8 contents of %xmm3
+FAIL: gdb.arch/i386-sse.exp: check float contents of %xmm4
+FAIL: gdb.arch/i386-sse.exp: check int8 contents of %xmm4
+FAIL: gdb.arch/i386-sse.exp: check float contents of %xmm5
+FAIL: gdb.arch/i386-sse.exp: check int8 contents of %xmm5
+FAIL: gdb.arch/i386-sse.exp: check float contents of %xmm6
+FAIL: gdb.arch/i386-sse.exp: check int8 contents of %xmm6
+FAIL: gdb.arch/i386-sse.exp: check float contents of %xmm7
+FAIL: gdb.arch/i386-sse.exp: check int8 contents of %xmm7
+FAIL: gdb.arch/i386-sse.exp: check contents of data[0]
+FAIL: gdb.arch/i386-sse.exp: check contents of data[1]
+FAIL: gdb.arch/i386-sse.exp: check contents of data[2]
+FAIL: gdb.arch/i386-sse.exp: check contents of data[3]
+FAIL: gdb.arch/i386-sse.exp: check contents of data[4]
+FAIL: gdb.arch/i386-sse.exp: check contents of data[5]
+FAIL: gdb.arch/i386-sse.exp: check contents of data[6]
+FAIL: gdb.arch/i386-sse.exp: check contents of data[7]
 Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-unwind.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-word.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/ia64-breakpoint-shadow.exp ...
@@ -1770,13 +1836,48 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/thumb-singlestep.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/thumb2-it.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/vsx-regs.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.asm/asm-source.exp ...
+FAIL: gdb.asm/asm-source.exp: info target (timeout)
+FAIL: gdb.asm/asm-source.exp: info symbol (timeout)
+FAIL: gdb.asm/asm-source.exp: list (timeout)
+FAIL: gdb.asm/asm-source.exp: search (timeout)
+FAIL: gdb.asm/asm-source.exp: f in foo2 (timeout)
+FAIL: gdb.asm/asm-source.exp: n in foo2 (timeout)
+FAIL: gdb.asm/asm-source.exp: bt ALL in foo2 (timeout)
+FAIL: gdb.asm/asm-source.exp: bt 2 in foo2 (timeout)
+FAIL: gdb.asm/asm-source.exp: s 2 (timeout)
+FAIL: gdb.asm/asm-source.exp: n 2 (timeout)
+FAIL: gdb.asm/asm-source.exp: bt 3 in foo3 (timeout)
+FAIL: gdb.asm/asm-source.exp: info source asmsrc1.s (timeout)
+FAIL: gdb.asm/asm-source.exp: finish from foo3 (timeout)
+FAIL: gdb.asm/asm-source.exp: info source asmsrc2.s (timeout)
+FAIL: gdb.asm/asm-source.exp: info sources (timeout)
+FAIL: gdb.asm/asm-source.exp: info line (timeout)
+FAIL: gdb.asm/asm-source.exp: next over foo3 (timeout)
+FAIL: gdb.asm/asm-source.exp: return from foo2 (timeout)
+FAIL: gdb.asm/asm-source.exp: look at global variable (timeout)
+FAIL: gdb.asm/asm-source.exp: x/i &globalvar (timeout)
+FAIL: gdb.asm/asm-source.exp: disassem &globalvar, &globalvar+1 (timeout)
+FAIL: gdb.asm/asm-source.exp: look at static variable (timeout)
+FAIL: gdb.asm/asm-source.exp: x/i &staticvar (timeout)
+FAIL: gdb.asm/asm-source.exp: disassem &staticvar, &staticvar+1 (timeout)
+FAIL: gdb.asm/asm-source.exp: look at static function (timeout)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/a2-run.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/advance.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/alias.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/all-bin.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/annota1.exp ...
 FAIL: gdb.base/annota1.exp: run until main breakpoint (timeout)
+FAIL: gdb.base/annota1.exp: break handle_USR1 (timeout)
+FAIL: gdb.base/annota1.exp: break printf (timeout)
+FAIL: gdb.base/annota1.exp: continue to printf
+FAIL: gdb.base/annota1.exp: backtrace @ signal handler (timeout)
+FAIL: gdb.base/annota1.exp: get inferior pid (timeout)
+FAIL: gdb.base/annota1.exp: signal sent (timeout)
+FAIL: gdb.base/annota1.exp: thread switch (timeout)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/annota3.exp ...
+FAIL: gdb.base/annota3.exp: backtrace @ signal handler (pattern 2)
+FAIL: gdb.base/annota3.exp: get inferior pid (timeout)
+FAIL: gdb.base/annota3.exp: signal sent (pattern 2)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/anon.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/args.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/argv0-symlink.exp ...
@@ -1787,9 +1888,16 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/async-shell.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/async.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/attach-pie-misread.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/attach-pie-noexec.exp ...
-FAIL: gdb.base/attach-pie-noexec.exp: info shared
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/attach-twice.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/attach.exp ...
+FAIL: gdb.base/attach.exp: attach to nonexistent process is prohibited
+FAIL: gdb.base/attach.exp: attach1, after setting file
+FAIL: gdb.base/attach.exp: attach1 detach
+FAIL: gdb.base/attach.exp: attach2, with no file
+FAIL: gdb.base/attach.exp: continue until exit at after attach2, exit
+FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
+FAIL: gdb.base/attach.exp: attach call
+FAIL: gdb.base/attach.exp: continue until exit
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/auxv.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/bang.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/bfp-test.exp ...
@@ -1810,10 +1918,23 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/call-ar-st.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/call-rt-st.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/call-sc.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/call-signal-resume.exp ...
+FAIL: gdb.base/call-signal-resume.exp: continue to program exit
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/call-strs.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/callexit.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/callfuncs.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/catch-load.exp ...
+FAIL: gdb.base/catch-load.exp: plain load: continue
+FAIL: gdb.base/catch-load.exp: plain load with stop-on-solib-events: continue
+FAIL: gdb.base/catch-load.exp: rx load: continue
+FAIL: gdb.base/catch-load.exp: rx load with stop-on-solib-events: continue
+FAIL: gdb.base/catch-load.exp: non-matching load: continue
+FAIL: gdb.base/catch-load.exp: non-matching load with stop-on-solib-events: continue
+FAIL: gdb.base/catch-load.exp: plain unload: continue
+FAIL: gdb.base/catch-load.exp: plain unload with stop-on-solib-events: continue
+FAIL: gdb.base/catch-load.exp: rx unload: continue
+FAIL: gdb.base/catch-load.exp: rx unload with stop-on-solib-events: continue
+FAIL: gdb.base/catch-load.exp: non-matching unload: continue
+FAIL: gdb.base/catch-load.exp: non-matching unload with stop-on-solib-events: continue
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/catch-signal-fork.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/catch-signal.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/catch-syscall.exp ...
@@ -1832,13 +1953,15 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/condbreak.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/consecutive.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/constvars.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/corefile.exp ...
-FAIL: gdb.base/corefile.exp: core-file warning-free
+WARNING: can't generate a core file - core tests suppressed - check ulimit -c
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/ctxobj.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/cursal.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/cvexpr.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dbx.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/debug-expr.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/default.exp ...
+FAIL: gdb.base/default.exp: info set
+FAIL: gdb.base/default.exp: show
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/define.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/del.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/detach.exp ...
@@ -1851,6 +1974,7 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/display.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dmsym.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dprintf-next.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dprintf-non-stop.exp ...
+FAIL: gdb.base/dprintf-non-stop.exp: Can't run to main
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dprintf-pending.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dprintf.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dump.exp ...
@@ -1869,6 +1993,8 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/eval-skip.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/eval.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/exe-lock.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/exitsignal.exp ...
+FAIL: gdb.base/exitsignal.exp: $_exitsignal is 11 (SIGSEGV) after SIGSEGV.
+FAIL: gdb.base/exitsignal.exp: $_exitsignal is 11 (SIGSEGV) after restarting the inferior
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/expand-psymtabs.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/exprs.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/fileio.exp ...
@@ -1890,6 +2016,7 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/func-ptr.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/funcargs.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/gcore-buffer-overflow.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/gcore-relro-pie.exp ...
+FAIL: gdb.base/gcore-relro-pie.exp: Can't run to break_here
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/gcore-relro.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/gcore.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/gdb1056.exp ...
@@ -1909,6 +2036,8 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/hashline1.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/hashline2.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/hashline3.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/hbreak.exp ...
+FAIL: gdb.base/hbreak.exp: hbreak
+FAIL: gdb.base/hbreak.exp: continue to break-at-exit after hbreak (the program exited)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/hbreak2.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/help.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/hook-stop-continue.exp ...
@@ -1929,9 +2058,33 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/interact.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/interp.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/interrupt-noterm.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/interrupt.exp ...
+FAIL: gdb.base/interrupt.exp: call function when asleep (wrong output)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/jit-simple.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/jit-so.exp ...
+FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here after-dlopen
+FAIL: gdb.base/jit-so.exp: one_jit_test-1: setting breakpoint at jit-main.c:130
+FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 0
+FAIL: gdb.base/jit-so.exp: one_jit_test-1: set var argc = 2
+FAIL: gdb.base/jit-so.exp: one_jit_test-1: set var libname = "SHLIBDIR/jit-solib.so"
+FAIL: gdb.base/jit-so.exp: one_jit_test-1: set var count = 1
+FAIL: gdb.base/jit-so.exp: one_jit_test-1: setting breakpoint at jit-main.c:193
+FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 1
+FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
+FAIL: gdb.base/jit-so.exp: one_jit_test-1: setting breakpoint at jit-main.c:218
+FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 2
+FAIL: gdb.base/jit-so.exp: one_jit_test-2: continue to breakpoint: break here after-dlopen
+FAIL: gdb.base/jit-so.exp: one_jit_test-2: setting breakpoint at jit-main.c:130
+FAIL: gdb.base/jit-so.exp: one_jit_test-2: continue to breakpoint: break here 0
+FAIL: gdb.base/jit-so.exp: one_jit_test-2: set var argc = 2
+FAIL: gdb.base/jit-so.exp: one_jit_test-2: set var libname = "SHLIBDIR/jit-solib.so"
+FAIL: gdb.base/jit-so.exp: one_jit_test-2: set var count = 2
+FAIL: gdb.base/jit-so.exp: one_jit_test-2: setting breakpoint at jit-main.c:193
+FAIL: gdb.base/jit-so.exp: one_jit_test-2: continue to breakpoint: break here 1
+FAIL: gdb.base/jit-so.exp: one_jit_test-2: info function jit_function
+FAIL: gdb.base/jit-so.exp: one_jit_test-2: setting breakpoint at jit-main.c:218
+FAIL: gdb.base/jit-so.exp: one_jit_test-2: continue to breakpoint: break here 2
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/jit.exp ...
+FAIL: gdb.base/jit.exp: PIE: one_jit_test-1: Can't run to main
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/jump.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/kill-after-signal.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/label.exp ...
@@ -1944,15 +2097,14 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/logical.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/long_long.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/longest-types.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/longjmp.exp ...
-FAIL: gdb.base/longjmp.exp: next over longjmp(1)
-FAIL: gdb.base/longjmp.exp: next over call_longjmp (2)
-FAIL: gdb.base/longjmp.exp: next over patt3
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/macscp.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/maint.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/memattr.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/mips_pro.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/miscexprs.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/morestack.exp ...
+gdb compile failed, cc1: error: '-fsplit-stack' currently only supported on GNU/Linux
+cc1: error: '-fsplit-stack' is not supported by this compiler configuration
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/moribund-step.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/multi-forks.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/nextoverexit.exp ...
@@ -1969,6 +2121,9 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/pie-execl.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/pointers.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/pr10179.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/pr11022.exp ...
+FAIL: gdb.base/pr11022.exp: set watchpoint
+FAIL: gdb.base/pr11022.exp: watchpoint hit
+FAIL: gdb.base/pr11022.exp: watchpoint hit 2
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/prelink.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/print-file-var.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/printcmds.exp ...
@@ -1988,6 +2143,7 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/recpar.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/recurse.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/relational.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/relativedebug.exp ...
+FAIL: gdb.base/relativedebug.exp: pause found in backtrace
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/relocate.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/remote.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/remotetimeout.exp ...
@@ -2028,6 +2184,10 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/return.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/return2.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/save-bp.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/savedregs.exp ...
+FAIL: gdb.base/savedregs.exp: Get thrower info frame
+FAIL: gdb.base/savedregs.exp: Check main info frame; stack contains catcher sigtramp thrower main (GDB internal error)
+FAIL: gdb.base/savedregs.exp: Check main info frame; stack contains caller dummy catcher sigtramp thrower main (GDB internal error)
+FAIL: gdb.base/savedregs.exp: Check main info frame; stack contains callee caller dummy catcher sigtramp thrower main (GDB internal error)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/scope.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sect-cmd.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sep.exp ...
@@ -2042,18 +2202,98 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/shlib-call.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/shreloc.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sigall.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sigaltstack.exp ...
+FAIL: gdb.base/sigaltstack.exp: continue to catch (timeout)
+FAIL: gdb.base/sigaltstack.exp: next (timeout)
+FAIL: gdb.base/sigaltstack.exp: backtrace (pattern 1) (timeout)
+FAIL: gdb.base/sigaltstack.exp: finish from catch LEAF (timeout)
+FAIL: gdb.base/sigaltstack.exp: finish to throw INNER (timeout)
+FAIL: gdb.base/sigaltstack.exp: finish to catch INNER (timeout)
+FAIL: gdb.base/sigaltstack.exp: finish from catch INNER (timeout)
+FAIL: gdb.base/sigaltstack.exp: finish to OUTER (timeout)
+FAIL: gdb.base/sigaltstack.exp: finish to catch MAIN (timeout)
+FAIL: gdb.base/sigaltstack.exp: finish to MAIN (timeout)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sigbpt.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sigchld.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/siginfo-addr.exp ...
+FAIL: gdb.base/siginfo-addr.exp: si_addr value
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/siginfo-infcall.exp ...
+FAIL: gdb.base/siginfo-infcall.exp: continue to the handler
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/siginfo-obj.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/siginfo-thread.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/siginfo.exp ...
+FAIL: gdb.base/siginfo.exp: continue to stepi handler (timeout)
+FAIL: gdb.base/siginfo.exp: backtrace for nexti (pattern 1) (timeout)
+FAIL: gdb.base/siginfo.exp: step out of handler (timeout)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/signals.exp ...
+FAIL: gdb.base/signals.exp: p count #1
+FAIL: gdb.base/signals.exp: p func1 () #2
+FAIL: gdb.base/signals.exp: backtrace from handler when calling func1
+FAIL: gdb.base/signals.exp: continue (the program exited)
+FAIL: gdb.base/signals.exp: p count #2
+FAIL: gdb.base/signals.exp: signal without arguments disallowed (the program is no longer running)
+FAIL: gdb.base/signals.exp: signal SIGUSR1 (the program is no longer running)
+FAIL: gdb.base/signals.exp: backtrace for SIGUSR1
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/signest.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/signull.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sigrepeat.exp ...
+FAIL: gdb.base/sigrepeat.exp: next
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sigstep.exp ...
+FAIL: gdb.base/sigstep.exp: backtrace for nexti (pattern 2)
+FAIL: gdb.base/sigstep.exp: step from handler; leave handler (timeout)
+FAIL: gdb.base/sigstep.exp: stepi from handleri; leave handler (hit breakpoint again)
+FAIL: gdb.base/sigstep.exp: stepi from handleri; leave signal trampoline
+FAIL: gdb.base/sigstep.exp: next from handler; leave handler
+FAIL: gdb.base/sigstep.exp: nexti from handleri; leave handler
+FAIL: gdb.base/sigstep.exp: nexti from handleri; leave signal trampoline
+FAIL: gdb.base/sigstep.exp: finish from handleri; leave handler
+FAIL: gdb.base/sigstep.exp: finish from handleri; leave signal trampoline
+FAIL: gdb.base/sigstep.exp: return from handleri; leave handler
+FAIL: gdb.base/sigstep.exp: return from handleri; leave signal trampoline
+FAIL: gdb.base/sigstep.exp: step to handler; resync (the program exited)
+FAIL: gdb.base/sigstep.exp: step to handler; performing step (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: next to handler; resync (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: next to handler; performing next (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: continue to handler; resync (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: continue to handler; performing continue (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: step to handler entry; resync (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: step to handler entry; performing step (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: next to handler entry; resync (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: next to handler entry; performing next (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: continue to handler entry; resync (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: continue to handler entry; performing continue (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: step over handler; resync (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: step over handler; performing step (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: next over handler; resync (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: next over handler; performing next (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: continue over handler; resync (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: continue over handler; performing continue (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler; resync (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler; continue to infinite loop (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler; performing step (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler; resync (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler; continue to infinite loop (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler; performing next (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler; resync (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler; continue to infinite loop (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler; performing continue (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler entry; resync (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler entry; continue to infinite loop (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler entry; performing step (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler entry; resync (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler entry; continue to infinite loop (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler entry; performing next (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler entry; resync (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler entry; continue to infinite loop (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler entry; performing continue (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: step on breakpoint, skip handler; resync (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: step on breakpoint, skip handler; continue to infinite loop (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: step on breakpoint, skip handler; performing step (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: next on breakpoint, skip handler; resync (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: next on breakpoint, skip handler; continue to infinite loop (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: next on breakpoint, skip handler; performing next (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: continue on breakpoint, skip handler; resync (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: continue on breakpoint, skip handler; continue to infinite loop (the program is no longer running)
+FAIL: gdb.base/sigstep.exp: continue on breakpoint, skip handler; performing continue (the program is no longer running)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sizeof.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/skip-solib.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/skip.exp ...
@@ -2061,7 +2301,7 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/so-impl-ld.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/so-indr-cl.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/solib-corrupted.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/solib-disc.exp ...
-ERROR: no fileid for kepler
+ERROR: no fileid for laplace
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/solib-display.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/solib-nodir.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/solib-overlap.exp ...
@@ -2126,11 +2366,21 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/twice.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/type-opaque.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/ui-redirect.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/unload.exp ...
+FAIL: gdb.base/unload.exp: running program (the program exited)
+FAIL: gdb.base/unload.exp: pending breakpoint info on first run at shrfunc1
+FAIL: gdb.base/unload.exp: continuing to unloaded libfile (the program is no longer running)
+FAIL: gdb.base/unload.exp: print y from libfile
+FAIL: gdb.base/unload.exp: rerun to shared library breakpoint (the program exited)
+FAIL: gdb.base/unload.exp: pending breakpoint info on second run at shrfunc1
+FAIL: gdb.base/unload.exp: continuing to unloaded libfile (the program is no longer running)
+FAIL: gdb.base/unload.exp: continue to shrfunc2 (the program is no longer running)
+FAIL: gdb.base/unload.exp: pending breakpoint info on second run at shrfunc2
+FAIL: gdb.base/unload.exp: continuing to unloaded libfile2 (the program is no longer running)
+FAIL: gdb.base/unload.exp: print y from libfile2
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/until.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/unwindonsignal.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/valgrind-db-attach.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/valgrind-infcall.exp ...
-FAIL: gdb.base/valgrind-infcall.exp: target remote for vgdb
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/value-double-free.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/varargs.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/volatile.exp ...
@@ -2138,14 +2388,50 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watch-cond-infcall.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watch-cond.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watch-non-mem.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watch-read.exp ...
+FAIL: gdb.base/watch-read.exp: set hardware read watchpoint on global variable
+FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
+FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
+FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
+FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
+FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
+FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
+FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watch-vfork.exp ...
+FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (timeout)
+FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (sw) (timeout)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watch_thread_num.exp ...
+FAIL: gdb.base/watch_thread_num.exp: Watchpoint on shared variable
+FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
+FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
+FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
+FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
+FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
+FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 6
+FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 7
+FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 8
+FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 9
+FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 10
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watchpoint-cond-gone.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watchpoint-delete.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watchpoint-hw-hit-once.exp ...
+FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
+FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watchpoint-hw.exp ...
+FAIL: gdb.base/watchpoint-hw.exp: start (timeout)
+FAIL: gdb.base/watchpoint-hw.exp: info watchpoints (timeout)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watchpoint-solib.exp ...
+FAIL: gdb.base/watchpoint-solib.exp: continue to foo (the program exited)
+FAIL: gdb.base/watchpoint-solib.exp: set watchpoint on g
+FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit (the program is no longer running)
+FAIL: gdb.base/watchpoint-solib.exp: continue to foo again (the program exited)
+FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again (the program is no longer running)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watchpoint.exp ...
+FAIL: gdb.base/watchpoint.exp: watch -location nullptr->p->x
+FAIL: gdb.base/watchpoint.exp: watch foo2
+FAIL: gdb.base/watchpoint.exp: continue with watch foo2
+FAIL: gdb.base/watchpoint.exp: watch foo4
+FAIL: gdb.base/watchpoint.exp: continue with watch foo4
+FAIL: gdb.base/watchpoint.exp: no-hw: watch -location nullptr->p->x
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watchpoints.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/wchar.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/whatis-exp.exp ...
@@ -2227,6 +2513,16 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/gdb2495.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/hang.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/impl-this.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/infcall-dlopen.exp ...
+FAIL: gdb.cp/infcall-dlopen.exp: test 0
+FAIL: gdb.cp/infcall-dlopen.exp: test 1
+FAIL: gdb.cp/infcall-dlopen.exp: test 2
+FAIL: gdb.cp/infcall-dlopen.exp: test 3
+FAIL: gdb.cp/infcall-dlopen.exp: test 4
+FAIL: gdb.cp/infcall-dlopen.exp: test 5
+FAIL: gdb.cp/infcall-dlopen.exp: test 6
+FAIL: gdb.cp/infcall-dlopen.exp: test 7
+FAIL: gdb.cp/infcall-dlopen.exp: test 8
+FAIL: gdb.cp/infcall-dlopen.exp: test 9
 Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/inherit.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/koenig.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/local.exp ...
@@ -2425,12 +2721,20 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.fortran/subarray.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.fortran/types.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.fortran/whatis_type.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.gdb/complaints.exp ...
+FAIL: gdb.gdb/complaints.exp: run until breakpoint at captured_command_loop
+WARNING: Couldn't test self
 Running ../../../W._C._Handy/gdb/testsuite/gdb.gdb/observer.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.gdb/python-interrupts.exp ...
-FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
+FAIL: gdb.gdb/python-interrupts.exp: run until breakpoint at captured_command_loop
+WARNING: Couldn't test self
 Running ../../../W._C._Handy/gdb/testsuite/gdb.gdb/python-selftest.exp ...
-FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print 5", 0, RETURN_MASK_ALL)
+FAIL: gdb.gdb/python-selftest.exp: run until breakpoint at captured_command_loop
+WARNING: Couldn't test self
 Running ../../../W._C._Handy/gdb/testsuite/gdb.gdb/selftest.exp ...
+FAIL: gdb.gdb/selftest.exp: xgdb is at prompt
+FAIL: gdb.gdb/selftest.exp: send ^C to child process (timeout)
+FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process (timeout)
+FAIL: gdb.gdb/selftest.exp: backtrace through signal handler (timeout)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.gdb/xfullpath.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.go/basic-types.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.go/chan.exp ...
@@ -2457,6 +2761,7 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-arch.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-block.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-breakpoint.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-disasm.exp ...
+FAIL: gdb.guile/scm-disasm.exp: test bad memory access
 Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-equal.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-error.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-frame-args.exp ...
@@ -2470,6 +2775,8 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-objfile-script.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-objfile.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-ports.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-pretty-print.exp ...
+FAIL: gdb.guile/scm-pretty-print.exp: print ns2
+FAIL: gdb.guile/scm-pretty-print.exp: print ns2
 Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-section-script.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-symbol.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-symtab.exp ...
@@ -2517,6 +2824,8 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.linespec/macro-relative.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.linespec/skip-two.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.linespec/thread.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/dw2-ref-missing-frame.exp ...
+FAIL: gdb.mi/dw2-ref-missing-frame.exp: test func_nofb_marker
+FAIL: gdb.mi/dw2-ref-missing-frame.exp: test func_loopfb_var
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/gdb2549.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/gdb669.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/gdb680.exp ...
@@ -2526,9 +2835,28 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-async.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-basics.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-break.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-breakpoint-changed.exp ...
+FAIL: gdb.mi/mi-breakpoint-changed.exp: catch syscall
+FAIL: gdb.mi/mi-breakpoint-changed.exp: dprintf marker, "arg" "
+FAIL: gdb.mi/mi-breakpoint-changed.exp: delete 6
+FAIL: gdb.mi/mi-breakpoint-changed.exp: pending resolved: breakpoint on pendfunc3 resolved
+FAIL: gdb.mi/mi-breakpoint-changed.exp: pending resolved: continue to marker 2 (timeout)
+FAIL: gdb.mi/mi-breakpoint-changed.exp: pending resolved: continuing to exit (MI error)
+FAIL: gdb.mi/mi-breakpoint-changed.exp: pending resolved: breakpoint on pendfunc3 pending again (timeout)
+FAIL: gdb.mi/mi-breakpoint-changed.exp: pending resolved: (unknown output after running)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-catch-load.exp ...
+FAIL: gdb.mi/mi-catch-load.exp: catch-load: solib-event stop
+FAIL: gdb.mi/mi-catch-load.exp: catch-unload: solib-event stop
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-cli.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-cmd-param-changed.exp ...
+FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: "set scheduler-locking on"
+FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: "set scheduler-locking off"
+FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: "set scheduler-locking step"
+FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: interpreter-exec "set scheduler-locking on"
+FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: interpreter-exec "set scheduler-locking off"
+FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: interpreter-exec "set scheduler-locking step"
+FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: "set scheduler-locking on" no event (requested by MI)
+FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: "set scheduler-locking step" no event (requested by MI interp)
+FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: "set scheduler-locking stepr" no event
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-console.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-disassemble.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-dprintf.exp ...
@@ -2544,6 +2872,7 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-inheritance-syntax-error.ex
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-language.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-logging.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-memory-changed.exp ...
+FAIL: gdb.mi/mi-memory-changed.exp: create objvar for C
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-nonstop-exit.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-nonstop.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-ns-stale-regcache.exp ...
@@ -2565,6 +2894,7 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-start.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-stepi.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-stepn.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-syn-frame.exp ...
+FAIL: gdb.mi/mi-syn-frame.exp: list stack frames
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-undefined-cmd.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-until.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-var-block.exp ...
@@ -2583,12 +2913,30 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi2-amd64-entry-value.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi2-prompt.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi2-var-child.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/pr11022.exp ...
+FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
+FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.modula2/unbounded-array.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.multi/base.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.multi/bkpt-multi-exec.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.multi/multi-arch-exec.exp ...
+gdb compile failed, ../../../W._C._Handy/gdb/testsuite/gdb.multi/multi-arch-exec.c:1:0: sorry, unimplemented: 64-bit mode not compiled in
+ /* This testcase is part of GDB, the GNU debugger.
+ ^
 Running ../../../W._C._Handy/gdb/testsuite/gdb.multi/multi-arch.exp ...
+gdb compile failed, ../../../W._C._Handy/gdb/testsuite/gdb.multi/hello.c:1:0: sorry, unimplemented: 64-bit mode not compiled in
+ /* This testcase is part of GDB, the GNU debugger.
+ ^
 Running ../../../W._C._Handy/gdb/testsuite/gdb.multi/watchpoint-multi.exp ...
+FAIL: gdb.multi/watchpoint-multi.exp: start to main inferior 2
+FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
+FAIL: gdb.multi/watchpoint-multi.exp: setting breakpoint at marker_exit
+FAIL: gdb.multi/watchpoint-multi.exp: awatch b on inferior 1
+FAIL: gdb.multi/watchpoint-multi.exp: switch to inferior 2 again
+FAIL: gdb.multi/watchpoint-multi.exp: catch c on inferior 2
+FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 2
+FAIL: gdb.multi/watchpoint-multi.exp: switch back to inferior 1 again
+FAIL: gdb.multi/watchpoint-multi.exp: catch b on inferior 1
+FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
 Running ../../../W._C._Handy/gdb/testsuite/gdb.objc/basicclass.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.objc/nondebug.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.objc/objcdecode.exp ...
@@ -2616,16 +2964,20 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.perf/skip-prologue.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.perf/solib.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/lib-types.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-arch.exp ...
+FAIL: gdb.python/py-arch.exp: test bad memory access
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-block.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-breakpoint.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-cmd.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-error.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-events.exp ...
+FAIL: gdb.python/py-events.exp: inferior 2
+FAIL: gdb.python/py-events.exp: Inferior 2 terminated. (the program is no longer running)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-evsignal.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-evthreads.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-explore-cc.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-explore.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-finish-breakpoint.exp ...
+FAIL: gdb.python/py-finish-breakpoint.exp: catch out of scope after exec
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-finish-breakpoint2.exp ...
 FAIL: gdb.python/py-finish-breakpoint2.exp: check FinishBreakpoint in catch()
 FAIL: gdb.python/py-finish-breakpoint2.exp: check finish BP removal
@@ -2638,15 +2990,23 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-framefilter-mi.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-framefilter.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-function.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-inferior.exp ...
+FAIL: gdb.python/py-inferior.exp: test Inferior.threads
+FAIL: gdb.python/py-inferior.exp: test Inferior.threads 2
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-infthread.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-linetable.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-mi.exp ...
+FAIL: gdb.python/py-mi.exp: varobj update 1
+FAIL: gdb.python/py-mi.exp: varobj update 2
+FAIL: gdb.python/py-mi.exp: varobj update after choosing default
+FAIL: gdb.python/py-mi.exp: varobj update after choosing via expression
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-objfile-script.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-objfile.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-parameter.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-pp-integral.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-pp-maint.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-prettyprint.exp ...
+FAIL: gdb.python/py-prettyprint.exp: print ns2
+FAIL: gdb.python/py-prettyprint.exp: print ns2
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-progspace.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-prompt.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-section-script.exp ...
@@ -2704,62 +3064,273 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.stabs/weird.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/attach-into-signal.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/attach-stopped.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/bp_in_thread.exp ...
+FAIL: gdb.threads/bp_in_thread.exp: run to noreturn
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/clone-new-thread-event.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/corethreads.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/create-fail.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/current-lwp-dead.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/dlopen-libpthread.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/execl.exp ...
+FAIL: gdb.threads/execl.exp: info threads before exec
+FAIL: gdb.threads/execl.exp: continue across exec
+FAIL: gdb.threads/execl.exp: continue until exit
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/fork-child-threads.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/fork-thread-pending.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/gcore-thread.exp ...
+FAIL: gdb.threads/gcore-thread.exp: thread 1 is running
+FAIL: gdb.threads/gcore-thread.exp: thread 2 is running
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/hand-call-in-threads.exp ...
+FAIL: gdb.threads/hand-call-in-threads.exp: enable scheduler locking
+FAIL: gdb.threads/hand-call-in-threads.exp: show scheduler locking on
+FAIL: gdb.threads/hand-call-in-threads.exp: hand call, thread 5 (timeout)
+FAIL: gdb.threads/hand-call-in-threads.exp: set confirm off (timeout)
+FAIL: gdb.threads/hand-call-in-threads.exp: prepare to discard hand call, thread 1 (timeout)
+FAIL: gdb.threads/hand-call-in-threads.exp: dummy stack frame number, thread 1
+FAIL: gdb.threads/hand-call-in-threads.exp: setting frame, thread 1 (timeout)
+FAIL: gdb.threads/hand-call-in-threads.exp: discard hand call, thread 1 (timeout)
+FAIL: gdb.threads/hand-call-in-threads.exp: prepare to discard hand call, thread 2 (timeout)
+FAIL: gdb.threads/hand-call-in-threads.exp: dummy stack frame number, thread 2
+FAIL: gdb.threads/hand-call-in-threads.exp: setting frame, thread 2 (timeout)
+FAIL: gdb.threads/hand-call-in-threads.exp: discard hand call, thread 2 (timeout)
+FAIL: gdb.threads/hand-call-in-threads.exp: prepare to discard hand call, thread 3 (timeout)
+FAIL: gdb.threads/hand-call-in-threads.exp: dummy stack frame number, thread 3
+FAIL: gdb.threads/hand-call-in-threads.exp: setting frame, thread 3 (timeout)
+FAIL: gdb.threads/hand-call-in-threads.exp: discard hand call, thread 3 (timeout)
+FAIL: gdb.threads/hand-call-in-threads.exp: prepare to discard hand call, thread 4 (timeout)
+FAIL: gdb.threads/hand-call-in-threads.exp: dummy stack frame number, thread 4
+FAIL: gdb.threads/hand-call-in-threads.exp: setting frame, thread 4 (timeout)
+FAIL: gdb.threads/hand-call-in-threads.exp: discard hand call, thread 4 (timeout)
+FAIL: gdb.threads/hand-call-in-threads.exp: prepare to discard hand call, thread 5 (timeout)
+FAIL: gdb.threads/hand-call-in-threads.exp: dummy stack frame number, thread 5
+FAIL: gdb.threads/hand-call-in-threads.exp: setting frame, thread 5 (timeout)
+FAIL: gdb.threads/hand-call-in-threads.exp: discard hand call, thread 5 (timeout)
+FAIL: gdb.threads/hand-call-in-threads.exp: all dummies popped (timeout)
+FAIL: gdb.threads/hand-call-in-threads.exp: disable scheduler locking (timeout)
+FAIL: gdb.threads/hand-call-in-threads.exp: show scheduler locking off (timeout)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/ia64-sigill.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/info-threads-cur-sal.exp ...
+FAIL: gdb.threads/info-threads-cur-sal.exp: continue to breakpoint: start
+FAIL: gdb.threads/info-threads-cur-sal.exp: list before info threads
+FAIL: gdb.threads/info-threads-cur-sal.exp: info threads before break
+FAIL: gdb.threads/info-threads-cur-sal.exp: break on line
+FAIL: gdb.threads/info-threads-cur-sal.exp: info threads before list
+FAIL: gdb.threads/info-threads-cur-sal.exp: list after info threads
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/interrupted-hand-call.exp ...
+FAIL: gdb.threads/interrupted-hand-call.exp: hand-call interrupted by signal in another thread
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/killed.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/leader-exit.exp ...
+FAIL: gdb.threads/leader-exit.exp: continue to breakpoint: break-here
+FAIL: gdb.threads/leader-exit.exp: Single thread has been left
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/linux-dp.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/local-watch-wrong-thread.exp ...
+FAIL: gdb.threads/local-watch-wrong-thread.exp: continue to thread_function0
+FAIL: gdb.threads/local-watch-wrong-thread.exp: set local watchpoint on *myp
+FAIL: gdb.threads/local-watch-wrong-thread.exp: local watchpoint triggers
+FAIL: gdb.threads/local-watch-wrong-thread.exp: set local watchpoint on *myp, with false conditional
+FAIL: gdb.threads/local-watch-wrong-thread.exp: breakpoint on the other thread
+FAIL: gdb.threads/local-watch-wrong-thread.exp: the other thread stopped on breakpoint
+FAIL: gdb.threads/local-watch-wrong-thread.exp: delete 5
+FAIL: gdb.threads/local-watch-wrong-thread.exp: local watchpoint is still in breakpoint list
+FAIL: gdb.threads/local-watch-wrong-thread.exp: let local watchpoint trigger
+FAIL: gdb.threads/local-watch-wrong-thread.exp: local watchpoint still triggers (the program is no longer running)
+FAIL: gdb.threads/local-watch-wrong-thread.exp: let thread_function0 return
+FAIL: gdb.threads/local-watch-wrong-thread.exp: breakpoint on thread_function0's caller
+FAIL: gdb.threads/local-watch-wrong-thread.exp: local watchpoint automatically deleted (the program is no longer running)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/manythreads.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/multi-create.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/no-unwaited-for-left.exp ...
+FAIL: gdb.threads/no-unwaited-for-left.exp: continue to breakpoint: break-here
+FAIL: gdb.threads/no-unwaited-for-left.exp: enable scheduler-locking, for thread 2
+FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
+FAIL: gdb.threads/no-unwaited-for-left.exp: only main thread left, thread 2 terminated
+FAIL: gdb.threads/no-unwaited-for-left.exp: disable scheduler-locking, letting new thread start
+FAIL: gdb.threads/no-unwaited-for-left.exp: continue to breakpoint: break-here-2
+FAIL: gdb.threads/no-unwaited-for-left.exp: enable scheduler-locking, for main thread
+FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits (the program is no longer running)
+FAIL: gdb.threads/no-unwaited-for-left.exp: only thread 3 left, main thread terminated
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/non-ldr-exc-1.exp ...
+FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched0: continue to breakpoint: break-here
+FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched0: continue over exec
+FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched1: continue to breakpoint: break-here
+FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched1: set scheduler-locking on
+FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched1: continue over exec
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/non-ldr-exc-2.exp ...
+FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched0: continue to breakpoint: break-here
+FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched0: single thread left
+FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched0: continue over exec
+FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched1: continue to breakpoint: break-here
+FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched1: single thread left
+FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched1: set scheduler-locking on
+FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched1: continue over exec
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/non-ldr-exc-3.exp ...
+FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched0: continue to breakpoint: break-here
+FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched0: continue over exec
+FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched1: continue to breakpoint: break-here
+FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched1: set scheduler-locking on
+FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched1: continue over exec
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/non-ldr-exc-4.exp ...
+FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched0: continue to breakpoint: break-here
+FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched0: continue over exec
+FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched1: continue to breakpoint: break-here
+FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched1: set scheduler-locking on
+FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched1: continue over exec
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/pending-step.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/print-threads.exp ...
+FAIL: gdb.threads/print-threads.exp: all threads ran once
+FAIL: gdb.threads/print-threads.exp: all threads ran once
+FAIL: gdb.threads/print-threads.exp: all threads ran once
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/pthread_cond_wait.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/pthreads.exp ...
+FAIL: gdb.threads/pthreads.exp: Continue to creation of first thread
+FAIL: gdb.threads/pthreads.exp: Continue to creation of second thread
+FAIL: gdb.threads/pthreads.exp: get thread 2 id
+FAIL: gdb.threads/pthreads.exp: continue until common routine run 15 times
+FAIL: gdb.threads/pthreads.exp: continue with all threads running (the program is no longer running)
+FAIL: gdb.threads/pthreads.exp: set var common_routine::hits=0
+FAIL: gdb.threads/pthreads.exp: set var common_routine::from_thread1=0
+FAIL: gdb.threads/pthreads.exp: set var common_routine::from_thread2=0
+FAIL: gdb.threads/pthreads.exp: set var common_routine::from_main=0
+FAIL: gdb.threads/pthreads.exp: set var common_routine::full_coverage=0
+FAIL: gdb.threads/pthreads.exp: continue until common routine run 15 times (the program is no longer running)
+FAIL: gdb.threads/pthreads.exp: check backtrace from main thread
+FAIL: gdb.threads/pthreads.exp: check backtrace from thread 1
+FAIL: gdb.threads/pthreads.exp: check backtrace from thread 2
+FAIL: gdb.threads/pthreads.exp: apply backtrace command to all three threads
+FAIL: gdb.threads/pthreads.exp: set break at common_routine in thread 2
+FAIL: gdb.threads/pthreads.exp: continue to bkpt at common_routine in thread 2 (the program is no longer running)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/reconnect-signal.exp ...
-ERROR: no fileid for kepler
+ERROR: no fileid for laplace
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/schedlock.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/siginfo-threads.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/sigstep-threads.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/sigthread.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/staticthreads.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/step-after-sr-lock.exp ...
+FAIL: gdb.threads/step-after-sr-lock.exp: continue to breakpoint: run to breakpoint in thread 3
+FAIL: gdb.threads/step-after-sr-lock.exp: continue to breakpoint: run to breakpoint in thread 2
+FAIL: gdb.threads/step-after-sr-lock.exp: force loop break in thread 2
+WARNING: program timed out.
+FAIL: gdb.threads/step-after-sr-lock.exp: get my_number
+FAIL: gdb.threads/step-after-sr-lock.exp: step
+FAIL: gdb.threads/step-after-sr-lock.exp: stepped thread under control
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/stepi-random-signal.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/switch-threads.exp ...
+FAIL: gdb.threads/switch-threads.exp: continue to breakpoint: continue to thread_func
+FAIL: gdb.threads/switch-threads.exp: next
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/thread-execl.exp ...
+FAIL: gdb.threads/thread-execl.exp: continue to thread start
+FAIL: gdb.threads/thread-execl.exp: get to main in new image
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/thread-find.exp ...
+FAIL: gdb.threads/thread-find.exp: name thread 1
+FAIL: gdb.threads/thread-find.exp: name thread 2
+FAIL: gdb.threads/thread-find.exp: name thread 3
+FAIL: gdb.threads/thread-find.exp: find thread name 3
+FAIL: gdb.threads/thread-find.exp: find thread name 2
+FAIL: gdb.threads/thread-find.exp: find thread name 1
+ERROR: tcl error sourcing ../../../W._C._Handy/gdb/testsuite/gdb.threads/thread-find.exp.
+ERROR: can't read "thread3": no such variable
+    while executing
+"gdb_test "thread find $thread3"  "Thread 3 has .*$thread3.*" "find thread id 3""
+    invoked from within
+"if { [info exists thread6] } then {
+    gdb_test "thread find $thread6" \
+	"Thread 6 has .*$thread6.*" "find thread id 6"
+    gdb_test "thread find $t..."
+    (file "../../../W._C._Handy/gdb/testsuite/gdb.threads/thread-find.exp" line 187)
+    invoked from within
+"source ../../../W._C._Handy/gdb/testsuite/gdb.threads/thread-find.exp"
+    ("uplevel" body line 1)
+    invoked from within
+"uplevel #0 source ../../../W._C._Handy/gdb/testsuite/gdb.threads/thread-find.exp"
+    invoked from within
+"catch "uplevel #0 source $test_file_name""
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/thread-specific-bp.exp ...
+FAIL: gdb.threads/thread-specific-bp.exp: all-stop: continue to breakpoint: start
+FAIL: gdb.threads/thread-specific-bp.exp: all-stop: continue to end
+FAIL: gdb.threads/thread-specific-bp.exp: all-stop: thread start is gone
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/thread-specific.exp ...
+FAIL: gdb.threads/thread-specific.exp: continue to thread-specific breakpoint
+ERROR: tcl error sourcing ../../../W._C._Handy/gdb/testsuite/gdb.threads/thread-specific.exp.
+ERROR: can't read "this_breakpoint": no such variable
+    while executing
+"gdb_test_multiple "info breakpoint $this_breakpoint" "info on bp" {
+    -re ".*stop only in thread (\[0-9\]*).*$gdb_prompt $" {
+	set this_thread $expe..."
+    (file "../../../W._C._Handy/gdb/testsuite/gdb.threads/thread-specific.exp" line 108)
+    invoked from within
+"source ../../../W._C._Handy/gdb/testsuite/gdb.threads/thread-specific.exp"
+    ("uplevel" body line 1)
+    invoked from within
+"uplevel #0 source ../../../W._C._Handy/gdb/testsuite/gdb.threads/thread-specific.exp"
+    invoked from within
+"catch "uplevel #0 source $test_file_name""
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/thread-unwindonsignal.exp ...
+FAIL: gdb.threads/thread-unwindonsignal.exp: hand-call interrupted by signal in another thread
+FAIL: gdb.threads/thread-unwindonsignal.exp: dummy stack frame present
+FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit (the program is no longer running)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/thread_check.exp ...
+FAIL: gdb.threads/thread_check.exp: continue to tf
+FAIL: gdb.threads/thread_check.exp: backtrace from thread function
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/thread_events.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/threadapply.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/threxit-hop-specific.exp ...
+FAIL: gdb.threads/threxit-hop-specific.exp: continue to thread start
+FAIL: gdb.threads/threxit-hop-specific.exp: get past the thread specific breakpoint
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/tls-nodebug.exp ...
+FAIL: gdb.threads/tls-nodebug.exp: thread local storage
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/tls-shared.exp ...
+FAIL: gdb.threads/tls-shared.exp: print thread local storage variable
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/tls-var.exp ...
+FAIL: gdb.threads/tls-var.exp: print tls_var
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/tls.exp ...
+FAIL: gdb.threads/tls.exp: continue to first thread: no progress?
+FAIL: gdb.threads/tls.exp: first thread print me
+FAIL: gdb.threads/tls.exp: first thread local storage
+FAIL: gdb.threads/tls.exp: first another thread local storage
+FAIL: gdb.threads/tls.exp: continue to second thread
+FAIL: gdb.threads/tls.exp: second thread print me
+FAIL: gdb.threads/tls.exp: second thread local storage
+FAIL: gdb.threads/tls.exp: second another thread local storage
+FAIL: gdb.threads/tls.exp: continue to third thread
+FAIL: gdb.threads/tls.exp: at least one th in spin while stopped at third th
+FAIL: gdb.threads/tls.exp: third thread print me
+FAIL: gdb.threads/tls.exp: third thread local storage
+FAIL: gdb.threads/tls.exp: third another thread local storage
+FAIL: gdb.threads/tls.exp: continue to synch point (the program is no longer running)
+FAIL: gdb.threads/tls.exp: get number of threads
+FAIL: gdb.threads/tls.exp: No thread backtrace reported spin (vsyscall kernel problem?)
+FAIL: gdb.threads/tls.exp: threads exited (the program is no longer running)
+FAIL: gdb.threads/tls.exp: mess at end
+FAIL: gdb.threads/tls.exp: info address me
+FAIL: gdb.threads/tls.exp: p a_thread_local
+FAIL: gdb.threads/tls.exp: p file2_thread_local
+FAIL: gdb.threads/tls.exp: p a_thread_local second time
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/watchpoint-fork.exp ...
+FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints work (timeout)
+FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (timeout)
+FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the first fork (timeout)
+FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork (timeout)
+FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (timeout)
+FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (timeout)
+FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (timeout)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/watchthreads-reorder.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/watchthreads.exp ...
+FAIL: gdb.threads/watchthreads.exp: watch args[0]
+FAIL: gdb.threads/watchthreads.exp: watch args[1]
+FAIL: gdb.threads/watchthreads.exp: threaded watch loop
+FAIL: gdb.threads/watchthreads.exp: first watchpoint on args[0] hit
+FAIL: gdb.threads/watchthreads.exp: first watchpoint on args[1] hit
+FAIL: gdb.threads/watchthreads.exp: watchpoint on args[0] hit in thread
+FAIL: gdb.threads/watchthreads.exp: watchpoint on args[1] hit in thread
+FAIL: gdb.threads/watchthreads.exp: combination of threaded watchpoints = 30
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/watchthreads2.exp ...
+FAIL: gdb.threads/watchthreads2.exp: run to thread_started
+FAIL: gdb.threads/watchthreads2.exp: run to thread_started
+FAIL: gdb.threads/watchthreads2.exp: run to thread_started
+FAIL: gdb.threads/watchthreads2.exp: run to thread_started (the program is no longer running)
+FAIL: gdb.threads/watchthreads2.exp: all threads started
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/wp-replication.exp ...
+FAIL: gdb.threads/wp-replication.exp: No hardware watchpoints available
 Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/actions-changed.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/actions.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/ax.exp ...
@@ -2769,7 +3340,7 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/circ.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/collection.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/deltrace.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/disconnected-tracing.exp ...
-ERROR: no fileid for kepler
+ERROR: no fileid for laplace
 Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/entry-values.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/ftrace.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/infotrace.exp ...
@@ -2797,6 +3368,7 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/trace-buffer-size.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/trace-mt.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/tracecmd.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/tspeed.exp ...
+gdb compile failed, gcc: error: [...]/tschwinge/W._C._Handy.build/gdb/testsuite/../gdbserver/libinproctrace.so: No such file or directory
 Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/tstatus.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/tsv.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/unavailable-dwarf-piece.exp ...
@@ -2811,15 +3383,15 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.xml/tdesc-xinclude.exp ...
 
 		=== gdb Summary ===
 
-# of expected passes		26294
-# of unexpected failures	107
+# of expected passes		20184
+# of unexpected failures	628
 # of unexpected successes	2
-# of expected failures		56
+# of expected failures		34
 # of unknown successes		1
-# of known failures		63
+# of known failures		55
 # of unresolved testcases	3
-# of untested testcases		29
-# of unsupported tests		52
+# of untested testcases		49
+# of unsupported tests		85
 [...]/tschwinge/W._C._Handy.build/gdb/testsuite/../../gdb/gdb version  7.7.50.20140214-cvs -nw -nx -data-directory [...]/tschwinge/W._C._Handy.build/gdb/testsuite/../data-directory 
 
 Makefile:164: recipe for target 'check-single' failed
@@ -2828,7 +3400,7 @@ make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gdb/testsuite'
 Makefile:147: recipe for target 'check' failed
 make[3]: *** [check] Error 2
 make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gdb/testsuite'
-Makefile:1083: recipe for target 'check' failed
+Makefile:1107: recipe for target 'check' failed
 make[2]: *** [check] Error 2
 make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gdb'
 Makefile:10236: recipe for target 'check-gdb' failed