summaryrefslogtreecommitdiff
path: root/binutils-gdb/log_test.diff
blob: 1a4d3ff6812a384ef6e3c26a14f625fdac37853c (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
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
diff --git toolchain/logs/binutils-gdb/kepler.SCHWINGE/log_test_ toolchain/logs/binutils-gdb/laplace.SCHWINGE/log_test_
index 5b388e0..e33dc8a 100644
--- toolchain/logs/binutils-gdb/kepler.SCHWINGE/log_test_
+++ toolchain/logs/binutils-gdb/laplace.SCHWINGE/log_test_
@@ -11,7 +11,6 @@ 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'
@@ -51,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 Sun Oct 25 21:34:08 2015
+Test Run By thomas on Sun Nov  1 18:21:36 2015
 Native configuration is [ARCH]
 
 		=== binutils tests ===
@@ -68,6 +67,7 @@ Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/ar.exp ...
 Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/arm/objdump.exp ...
 Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/bfin/objdump.exp ...
 Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/compress.exp ...
+XPASS: objcopy compress debug sections in archive
 Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/dlltool.exp ...
 Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/elfedit.exp ...
 Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/hppa/objdump.exp ...
@@ -92,12 +92,23 @@ Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/x86-64/x86-6
 
 		=== binutils Summary ===
 
-# of expected passes		117
+# of expected passes		116
+# of unexpected successes	1
 # of unsupported tests		3
+Makefile:1287: recipe for target 'check-DEJAGNU' failed
+make[5]: *** [check-DEJAGNU] Error 1
 make[5]: Leaving directory '[...]/tschwinge/W._C._Handy.build/binutils'
+Makefile:1134: recipe for target 'check-am' failed
+make[4]: *** [check-am] Error 2
 make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/binutils'
+Makefile:981: recipe for target 'check-recursive' failed
+make[3]: *** [check-recursive] Error 1
 make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/binutils'
+Makefile:1136: recipe for target 'check' failed
+make[2]: *** [check] Error 2
 make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/binutils'
+Makefile:3650: recipe for target 'check-binutils' failed
+make[1]: *** [check-binutils] Error 2
 make[2]: Entering directory '[...]/tschwinge/W._C._Handy.build/etc'
 make[2]: Nothing to be done for 'check'.
 make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/etc'
@@ -133,7 +144,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 Sun Oct 25 21:34:22 2015
+Test Run By thomas on Sun Nov  1 18:21:46 2015
 Native configuration is [ARCH]
 
 		=== gas tests ===
@@ -297,6 +308,7 @@ make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/zlib'
 make[2]: Entering directory '[...]/tschwinge/W._C._Handy.build/bfd'
 Making info in doc
 make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/bfd/doc'
+make[3]: Nothing to be done for 'info'.
 make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/bfd/doc'
 Making info in po
 make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/bfd/po'
@@ -316,7 +328,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'
@@ -344,7 +355,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'
@@ -371,7 +381,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'
@@ -740,10 +749,10 @@ g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants
 API version:   1
 gold version:  111
 option: _Z4f13iv
-/usr/lib/gcc/i586-linux-gnu/4.9/../../../i386-linux-gnu/crt1.o: claim file hook called (offset = 0, size = 1212)
-/usr/lib/gcc/i586-linux-gnu/4.9/../../../i386-linux-gnu/crti.o: claim file hook called (offset = 0, size = 1164)
-/usr/lib/gcc/i586-linux-gnu/4.9/crtbegin.o: claim file hook called (offset = 0, size = 1940)
-two_file_test_main.o: claim file hook called (offset = 0, size = 6784)
+/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/crt1.o: claim file hook called (offset = 0, size = 1212)
+/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/crti.o: claim file hook called (offset = 0, size = 1164)
+/usr/lib/gcc/i586-gnu/4.9/crtbegin.o: claim file hook called (offset = 0, size = 1940)
+two_file_test_main.o: claim file hook called (offset = 0, size = 6780)
 two_file_test_1.o.syms: claim file hook called (offset = 0, size = 3408)
 two_file_test_1.o.syms: claiming file, adding 38 symbols
 two_file_test_1b.o.syms: claim file hook called (offset = 0, size = 967)
@@ -752,16 +761,18 @@ two_file_test_2.o.syms: claim file hook called (offset = 0, size = 2203)
 two_file_test_2.o.syms: claiming file, adding 16 symbols
 unused.o.syms: claim file hook called (offset = 0, size = 634)
 unused.o.syms: claiming file, adding 1 symbols
-/usr/lib/gcc/i586-linux-gnu/4.9/crtend.o: claim file hook called (offset = 0, size = 932)
-/usr/lib/gcc/i586-linux-gnu/4.9/../../../i386-linux-gnu/crtn.o: claim file hook called (offset = 0, size = 736)
-/usr/lib/gcc/i586-linux-gnu/4.9/libstdc++.so: claim file hook called (offset = 0, size = 1488316)
-/usr/lib/gcc/i586-linux-gnu/4.9/../../../i386-linux-gnu/libm.so: claim file hook called (offset = 0, size = 275988)
-/usr/lib/gcc/i586-linux-gnu/4.9/libgcc_s.so: claim file hook called (offset = 0, size = 113020)
-/usr/lib/gcc/i586-linux-gnu/4.9/../../../i386-linux-gnu/libc.so: claim file hook called (offset = 0, size = 283)
-/lib/i386-linux-gnu/libc.so.6: claim file hook called (offset = 0, size = 1504708)
-/usr/lib/i386-linux-gnu/libc_nonshared.a: claim file hook called (offset = 882, size = 1468)
-/lib/i386-linux-gnu/ld-linux.so.2: claim file hook called (offset = 0, size = 134380)
-/usr/lib/gcc/i586-linux-gnu/4.9/libgcc_s.so: claim file hook called (offset = 0, size = 113020)
+/usr/lib/gcc/i586-gnu/4.9/crtend.o: claim file hook called (offset = 0, size = 932)
+/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/crtn.o: claim file hook called (offset = 0, size = 736)
+/usr/lib/gcc/i586-gnu/4.9/libstdc++.so: claim file hook called (offset = 0, size = 1492412)
+/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/libm.so: claim file hook called (offset = 0, size = 276040)
+/usr/lib/gcc/i586-gnu/4.9/libgcc_s.so: claim file hook called (offset = 0, size = 113180)
+/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/libc.so: claim file hook called (offset = 0, size = 309)
+/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/libmachuser.so: claim file hook called (offset = 0, size = 87464)
+/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/libhurduser.so: claim file hook called (offset = 0, size = 198292)
+/lib/i386-gnu/libc.so.0.3: claim file hook called (offset = 0, size = 1829828)
+/usr/lib/i386-gnu/libcrt_nonshared.a: claim file hook called (offset = 882, size = 1376)
+/lib/i386-gnu/ld.so.1: claim file hook called (offset = 0, size = 159348)
+/usr/lib/gcc/i586-gnu/4.9/libgcc_s.so: claim file hook called (offset = 0, size = 113180)
 all symbols read hook called
 two_file_test_1.o.syms: _Z4f13iv: PREVAILING_DEF_IRONLY
 two_file_test_1.o.syms: _Z4f11av: PREVAILING_DEF_IRONLY
@@ -840,12 +851,12 @@ mv -f .deps/plugin_common_test_2.Tpo .deps/plugin_common_test_2.Po
 ../ld-new -r -o plugin_test_8.o --no-demangle --plugin "./plugin_test.so" two_file_test_main.o two_file_test_1.o.syms two_file_test_1b.o.syms two_file_test_2.o
 API version:   1
 gold version:  111
-two_file_test_main.o: claim file hook called (offset = 0, size = 6784)
+two_file_test_main.o: claim file hook called (offset = 0, size = 6780)
 two_file_test_1.o.syms: claim file hook called (offset = 0, size = 3408)
 two_file_test_1.o.syms: claiming file, adding 38 symbols
 two_file_test_1b.o.syms: claim file hook called (offset = 0, size = 967)
 two_file_test_1b.o.syms: claiming file, adding 2 symbols
-two_file_test_2.o: claim file hook called (offset = 0, size = 4940)
+two_file_test_2.o: claim file hook called (offset = 0, size = 4932)
 two_file_test_2.o: claiming file, adding 16 symbols
 all symbols read hook called
 two_file_test_1.o.syms: _Z4f13iv: PREVAILING_DEF_REG
@@ -912,23 +923,25 @@ cleanup hook called
 `echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o plugin_test_10 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--no-demangle,--plugin,"./plugin_test.so" plugin_common_test_1.o.syms plugin_common_test_2.o
 API version:   1
 gold version:  111
-/usr/lib/gcc/i586-linux-gnu/4.9/../../../i386-linux-gnu/crt1.o: claim file hook called (offset = 0, size = 1212)
-/usr/lib/gcc/i586-linux-gnu/4.9/../../../i386-linux-gnu/crti.o: claim file hook called (offset = 0, size = 1164)
-/usr/lib/gcc/i586-linux-gnu/4.9/crtbegin.o: claim file hook called (offset = 0, size = 1940)
+/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/crt1.o: claim file hook called (offset = 0, size = 1212)
+/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/crti.o: claim file hook called (offset = 0, size = 1164)
+/usr/lib/gcc/i586-gnu/4.9/crtbegin.o: claim file hook called (offset = 0, size = 1940)
 plugin_common_test_1.o.syms: claim file hook called (offset = 0, size = 1633)
 plugin_common_test_1.o.syms: claiming file, adding 8 symbols
-plugin_common_test_2.o: claim file hook called (offset = 0, size = 3072)
+plugin_common_test_2.o: claim file hook called (offset = 0, size = 3064)
 plugin_common_test_2.o: claiming file, adding 7 symbols
-/usr/lib/gcc/i586-linux-gnu/4.9/crtend.o: claim file hook called (offset = 0, size = 932)
-/usr/lib/gcc/i586-linux-gnu/4.9/../../../i386-linux-gnu/crtn.o: claim file hook called (offset = 0, size = 736)
-/usr/lib/gcc/i586-linux-gnu/4.9/libstdc++.so: claim file hook called (offset = 0, size = 1488316)
-/usr/lib/gcc/i586-linux-gnu/4.9/../../../i386-linux-gnu/libm.so: claim file hook called (offset = 0, size = 275988)
-/usr/lib/gcc/i586-linux-gnu/4.9/libgcc_s.so: claim file hook called (offset = 0, size = 113020)
-/usr/lib/gcc/i586-linux-gnu/4.9/../../../i386-linux-gnu/libc.so: claim file hook called (offset = 0, size = 283)
-/lib/i386-linux-gnu/libc.so.6: claim file hook called (offset = 0, size = 1504708)
-/usr/lib/i386-linux-gnu/libc_nonshared.a: claim file hook called (offset = 882, size = 1468)
-/lib/i386-linux-gnu/ld-linux.so.2: claim file hook called (offset = 0, size = 134380)
-/usr/lib/gcc/i586-linux-gnu/4.9/libgcc_s.so: claim file hook called (offset = 0, size = 113020)
+/usr/lib/gcc/i586-gnu/4.9/crtend.o: claim file hook called (offset = 0, size = 932)
+/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/crtn.o: claim file hook called (offset = 0, size = 736)
+/usr/lib/gcc/i586-gnu/4.9/libstdc++.so: claim file hook called (offset = 0, size = 1492412)
+/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/libm.so: claim file hook called (offset = 0, size = 276040)
+/usr/lib/gcc/i586-gnu/4.9/libgcc_s.so: claim file hook called (offset = 0, size = 113180)
+/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/libc.so: claim file hook called (offset = 0, size = 309)
+/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/libmachuser.so: claim file hook called (offset = 0, size = 87464)
+/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/libhurduser.so: claim file hook called (offset = 0, size = 198292)
+/lib/i386-gnu/libc.so.0.3: claim file hook called (offset = 0, size = 1829828)
+/usr/lib/i386-gnu/libcrt_nonshared.a: claim file hook called (offset = 882, size = 1376)
+/lib/i386-gnu/ld.so.1: claim file hook called (offset = 0, size = 159348)
+/usr/lib/gcc/i586-gnu/4.9/libgcc_s.so: claim file hook called (offset = 0, size = 113180)
 all symbols read hook called
 plugin_common_test_1.o.syms: main: PREVAILING_DEF_REG
 plugin_common_test_1.o.syms: foo: RESOLVED_IR
@@ -1432,8 +1445,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
@@ -1558,8 +1571,8 @@ PASS: script_test_2
 PASS: 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
@@ -1618,7 +1631,7 @@ PASS: ehdr_start_test_2
 PASS: ehdr_start_test_3
 PASS: ehdr_start_test_5
 ============================
-1 of 215 tests failed
+3 of 215 tests failed
 See testsuite/test-suite.log
 ============================
 Makefile:4065: recipe for target 'test-suite.log' failed
@@ -1722,14 +1735,14 @@ if /bin/dash -c "$runtest --version" > /dev/null 2>&1; then \
 	CC="gcc-4.9" CFLAGS="-g -O2" \
 	CXX="g++-4.9" CXXFLAGS="-g -O2" \
 	CC_FOR_HOST="gcc-4.9" 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  ldbuildid.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  ldbuildid.o" BFDLIB="../bfd/.libs/libbfd.a" \
 	LIBIBERTY="../libiberty/libiberty.a " LIBS="-ldl -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 Sun Oct 25 21:38:27 2015
+Test Run By thomas on Sun Nov  1 18:26:33 2015
 Native configuration is [ARCH]
 
 		=== ld tests ===
@@ -1788,6 +1801,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 ...
@@ -1888,16 +1903,27 @@ Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-xtensa/xtensa.exp ...
 
 		=== ld Summary ===
 
-# of expected passes		1081
-# of expected failures		4
+# of expected passes		1066
+# of unexpected failures	2
+# of expected failures		8
 # of untested testcases		6
 # of unsupported tests		8
 [...]/tschwinge/W._C._Handy.build/ld/ld-new 2.25.51.20150419
 
+Makefile:3493: recipe for target 'check-DEJAGNU' failed
+make[5]: *** [check-DEJAGNU] Error 1
 make[5]: Leaving directory '[...]/tschwinge/W._C._Handy.build/ld'
+Makefile:1850: recipe for target 'check-am' failed
+make[4]: *** [check-am] Error 2
 make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/ld'
+Makefile:1697: recipe for target 'check-recursive' failed
+make[3]: *** [check-recursive] Error 1
 make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/ld'
+Makefile:1852: recipe for target 'check' failed
+make[2]: *** [check] Error 2
 make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/ld'
+Makefile:7532: 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'
@@ -1995,7 +2021,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 [ "${READ1}" != "" ] ; then echo ${rootme}/expect-read1; elif [ -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 Sun Oct 25 21:41:55 2015
+Test Run By thomas on Sun Nov  1 18:29:31 2015
 Native configuration is [ARCH]
 
 		=== gdb tests ===
@@ -2074,7 +2100,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/mi_var_array.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/mod_from_name.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/n_arr_bound.exp ...
@@ -2097,6 +2128,7 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/ptype_tagged_param.exp ...
 FAIL: gdb.ada/ptype_tagged_param.exp: ptype s
 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 ...
@@ -2107,7 +2139,6 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/small_reg_param.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/start.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/str_ref_cmp.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/str_uninit.exp ...
-FAIL: gdb.ada/str_uninit.exp: print my_str
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/sym_print_name.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/taft_type.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/tagged.exp ...
@@ -2118,7 +2149,19 @@ FAIL: gdb.ada/tagged_access.exp: ptype c.all
 FAIL: gdb.ada/tagged_access.exp: ptype c.menu_name
 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 ...
@@ -2172,9 +2215,17 @@ 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 ...
 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 ...
@@ -2198,6 +2249,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-stap-eval-lang-ada.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-unwind.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-word.exp ...
@@ -2234,7 +2309,14 @@ 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/annota-input-while-running.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: backtrace @ signal handler (timeout)
+FAIL: gdb.base/annota1.exp: get inferior pid (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 ...
@@ -2243,24 +2325,80 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/arrayidx.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/assign.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/async-shell.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/async.exp ...
+FAIL: gdb.base/async.exp: next& (timeout)
+FAIL: gdb.base/async.exp: step& #1 (timeout)
+FAIL: gdb.base/async.exp: step& #2 (timeout)
+FAIL: gdb.base/async.exp: stepi& (timeout)
+FAIL: gdb.base/async.exp: get next insn
+FAIL: gdb.base/async.exp: nexti& (timeout)
+FAIL: gdb.base/async.exp: finish& (timeout)
+FAIL: gdb.base/async.exp: jump& (timeout)
+FAIL: gdb.base/async.exp: until& (timeout)
+FAIL: gdb.base/async.exp: set exec-done-display off
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/attach-pie-misread.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/attach-pie-noexec.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/attach-twice.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/attach-wait-input.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
+FAIL: gdb.base/attach.exp: starting with --pid (timeout)
+FAIL: gdb.base/attach.exp: cmdline attach run: run to prompt
+ERROR: Undefined command "".
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/auto-connect-native-target.exp ...
+FAIL: gdb.base/auto-connect-native-target.exp: kill: native target remains pushed
+FAIL: gdb.base/auto-connect-native-target.exp: detach: start
+FAIL: gdb.base/auto-connect-native-target.exp: detach: native target remains pushed
+FAIL: gdb.base/auto-connect-native-target.exp: run to exit: start
+FAIL: gdb.base/auto-connect-native-target.exp: run to exit: c (the program is no longer running)
+FAIL: gdb.base/auto-connect-native-target.exp: run to exit: native target remains pushed
+FAIL: gdb.base/auto-connect-native-target.exp: disconnect: start
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/auto-load.exp ...
 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/batch-preserve-term-settings.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/bfp-test.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/bg-execution-repeat.exp ...
+FAIL: gdb.base/bg-execution-repeat.exp: c&: c&
+FAIL: gdb.base/bg-execution-repeat.exp: c&: breakpoint hit 1 (timeout)
+FAIL: gdb.base/bg-execution-repeat.exp: c&: repeat bg command
+FAIL: gdb.base/bg-execution-repeat.exp: c&: breakpoint hit 2 (timeout)
+FAIL: gdb.base/bg-execution-repeat.exp: c 1&: c 1&
+FAIL: gdb.base/bg-execution-repeat.exp: c 1&: breakpoint hit 1 (timeout)
+FAIL: gdb.base/bg-execution-repeat.exp: c 1&: repeat bg command
+FAIL: gdb.base/bg-execution-repeat.exp: c 1&: breakpoint hit 2 (timeout)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/bigcore.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/bitfields.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/bitfields2.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/bitops.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/bp-cmds-execution-x-script.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/bp-permanent.exp ...
+FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: continue trips on nested permanent bp: p counter
+FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
+FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: continue to breakpoint: test_signal_no_handler
+FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: stop at permanent breakpoint
+FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: single-step past permanent breakpoint
+FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: continue trips on nested permanent bp: p counter
+FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
+FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: continue to breakpoint: test_signal_no_handler
+FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: stop at permanent breakpoint
+FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: single-step past permanent breakpoint
+FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: continue trips on nested permanent bp: p counter
+FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
+FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: continue to breakpoint: test_signal_no_handler
+FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: stop at permanent breakpoint
+FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: single-step past permanent breakpoint
+FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: continue trips on nested permanent bp: p counter
+FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
+FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: continue to breakpoint: test_signal_no_handler
+FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: stop at permanent breakpoint
+FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: single-step past permanent breakpoint
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/break-always.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/break-caller-line.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/break-entry.exp ...
@@ -2278,6 +2416,7 @@ 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 ...
@@ -2286,7 +2425,6 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/catch-load.exp ...
 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 ...
-FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/charset.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/checkpoint.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/chng-syms.exp ...
@@ -2307,7 +2445,7 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/constvars.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/continue-all-already-running.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/coredump-filter.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 ...
@@ -2315,6 +2453,8 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dbx.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dcache-line-read-error.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 ...
@@ -2326,15 +2466,43 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/disp-step-syscall.exp ...
 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/double-prompt-target-event-error.exp ...
+FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: continue: no double prompt (timeout)
+FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: continue: set height unlimited
+FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: wrapcont: no double prompt (timeout)
+FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: wrapcont: set height unlimited
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dprintf-bp-same-addr.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dprintf-detach.exp ...
+FAIL: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=on: detach program
+FAIL: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=on: re-attach to inferior
+FAIL: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=off: detach program
+FAIL: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=off: re-attach to inferior
+FAIL: gdb.base/dprintf-detach.exp: bai=on ds=call dd=on: detach program
+FAIL: gdb.base/dprintf-detach.exp: bai=on ds=call dd=on: re-attach to inferior
+FAIL: gdb.base/dprintf-detach.exp: bai=on ds=call dd=off: detach program
+FAIL: gdb.base/dprintf-detach.exp: bai=on ds=call dd=off: re-attach to inferior
+FAIL: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=on: detach program
+FAIL: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=on: re-attach to inferior
+FAIL: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=off: detach program
+FAIL: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=off: re-attach to inferior
+FAIL: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=on: detach program
+FAIL: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=on: re-attach to inferior
+FAIL: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=off: detach program
+FAIL: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=off: re-attach to inferior
+FAIL: gdb.base/dprintf-detach.exp: bai=off ds=call dd=on: detach program
+FAIL: gdb.base/dprintf-detach.exp: bai=off ds=call dd=on: re-attach to inferior
+FAIL: gdb.base/dprintf-detach.exp: bai=off ds=call dd=off: detach program
+FAIL: gdb.base/dprintf-detach.exp: bai=off ds=call dd=off: re-attach to inferior
+FAIL: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=on: detach program
+FAIL: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=on: re-attach to inferior
+FAIL: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=off: detach program
+FAIL: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=off: re-attach to inferior
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dprintf-next.exp ...
+WARNING: program timed out.
 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/dtrace-probe.exp ...
-gdb compile failed, /usr/bin/ld: i386:x86-64 architecture of input file `[...]/tschwinge/W._C._Handy.build/gdb/testsuite/gdb.base/dtrace-probe-p.o' is incompatible with i386 output
-collect2: error: ld returned 1 exit status
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dump.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dup-sect.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/duplicate-bp.exp ...
@@ -2353,9 +2521,34 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/exe-lock.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/execl-update-breakpoints.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/execution-termios.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 ...
+FAIL: gdb.base/fileio.exp: Stat a NULL pathname returns ENOENT or EFAULT
+FAIL: gdb.base/fileio.exp: Stat an empty pathname returns ENOENT
+FAIL: gdb.base/fileio.exp: Stat a nonexistant file returns ENOENT (the program is no longer running)
+FAIL: gdb.base/fileio.exp: Fstat an open file (the program is no longer running)
+FAIL: gdb.base/fileio.exp: Fstat an invalid file descriptor returns EBADF (the program is no longer running)
+FAIL: gdb.base/fileio.exp: Isatty (stdin) (the program is no longer running)
+FAIL: gdb.base/fileio.exp: Isatty (stdout) (the program is no longer running)
+FAIL: gdb.base/fileio.exp: Isatty (stderr) (the program is no longer running)
+FAIL: gdb.base/fileio.exp: Isatty (invalid fd) (the program is no longer running)
+FAIL: gdb.base/fileio.exp: Isatty (open file) (the program is no longer running)
+FAIL: gdb.base/fileio.exp: System says shell is available (the program is no longer running)
+FAIL: gdb.base/fileio.exp: System(3) call (the program is no longer running)
+FAIL: gdb.base/fileio.exp: System with invalid command returns 127 (the program is no longer running)
+FAIL: gdb.base/fileio.exp: Rename a file (the program is no longer running)
+FAIL: gdb.base/fileio.exp: Renaming a file to existing directory returns EISDIR (the program is no longer running)
+FAIL: gdb.base/fileio.exp: Renaming a directory to a non-empty directory returns ENOTEMPTY or EEXIST (the program is no longer running)
+FAIL: gdb.base/fileio.exp: Renaming a directory to a subdir of itself returns EINVAL (the program is no longer running)
+FAIL: gdb.base/fileio.exp: Renaming a nonexistant file returns ENOENT (the program is no longer running)
+FAIL: gdb.base/fileio.exp: Unlink a file (the program is no longer running)
+FAIL: gdb.base/fileio.exp: Unlinking a file in a directory w/o write access returns EACCES (the program is no longer running)
+FAIL: gdb.base/fileio.exp: Unlinking a nonexistant file returns ENOENT (the program is no longer running)
+FAIL: gdb.base/fileio.exp: Time(2) call returns the same value as in parameter (the program is no longer running)
+FAIL: gdb.base/fileio.exp: Time(2) returns feasible values (the program is no longer running)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/filesym.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/find-unmapped.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/find.exp ...
@@ -2375,6 +2568,7 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/func-ptrs.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/gdb-sigterm.exp ...
@@ -2420,13 +2614,11 @@ 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: process is alive (timeout)
 FAIL: gdb.base/interrupt.exp: child process ate our char (timeout)
-FAIL: gdb.base/interrupt.exp: echo data (timeout)
-FAIL: gdb.base/interrupt.exp: echo more data (timeout)
-FAIL: gdb.base/interrupt.exp: send end of file (timeout)
-FAIL: gdb.base/interrupt.exp: send end of file
+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 ...
 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 ...
@@ -2440,15 +2632,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/multi-line-starts-subshell.exp ...
@@ -2463,6 +2654,13 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/overlays.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/page.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/paginate-after-ctrl-c-running.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/paginate-bg-execution.exp ...
+FAIL: gdb.base/paginate-bg-execution.exp: paginate: continue&
+FAIL: gdb.base/paginate-bg-execution.exp: paginate: pagination handled, breakpoint hit (timeout)
+FAIL: gdb.base/paginate-bg-execution.exp: cancel with ctrl-c: continue&
+FAIL: gdb.base/paginate-bg-execution.exp: cancel with ctrl-c: continue& paginates (timeout)
+FAIL: gdb.base/paginate-bg-execution.exp: cancel with quit: continue&
+FAIL: gdb.base/paginate-bg-execution.exp: cancel with quit: continue& paginates (timeout)
+FAIL: gdb.base/paginate-bg-execution.exp: cancel with quit: cancel pagination (got interactive prompt)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/paginate-execution-startup.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/paginate-inferior-exit.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/pc-fp.exp ...
@@ -2492,6 +2690,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 ...
@@ -2532,6 +2731,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 ...
@@ -2546,16 +2749,41 @@ 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 ...
+WARNING: program timed out.
+FAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
+FAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
+FAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
+FAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
 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 ...
+WARNING: program timed out.
+gdb compile failed, exit status is 1
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/signest.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/signull.exp ...
+FAIL: gdb.base/signull.exp: data read; backtrace from keeper through SIGSEGV
+FAIL: gdb.base/signull.exp: data write; backtrace from keeper through SIGSEGV
+FAIL: gdb.base/signull.exp: code; backtrace from keeper through SIGSEGV
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sigrepeat.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sigstep.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sizeof.exp ...
@@ -2630,6 +2858,11 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/structs2.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/structs3.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/subst.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sym-file.exp ...
+gdb compile failed, ../../../W._C._Handy/gdb/testsuite/gdb.base/sym-file-loader.c: In function 'get_origin':
+../../../W._C._Handy/gdb/testsuite/gdb.base/sym-file-loader.c:154:25: error: 'PATH_MAX' undeclared (first use in this function)
+   static char self_path[PATH_MAX];
+                         ^
+../../../W._C._Handy/gdb/testsuite/gdb.base/sym-file-loader.c:154:25: note: each undeclared identifier is reported only once for each function it appears in
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/symbol-without-target_section.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/symtab-search-order.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/term.exp ...
@@ -2645,7 +2878,6 @@ 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/vdso-warning.exp ...
@@ -2661,9 +2893,16 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watch-non-mem.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watch-read.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watch-vfork.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watch_thread_num.exp ...
+FAIL: gdb.base/watch_thread_num.exp: Stopped in loop
+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
 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 to break-at-exit
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watchpoint-hw.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watchpoint-reuse-slot.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watchpoint-solib.exp ...
@@ -2968,7 +3207,6 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/typeddwarf.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/valop.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/watch-notconst.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.fortran/array-element.exp ...
-ERROR: couldn't run to breakpoint sub_
 Running ../../../W._C._Handy/gdb/testsuite/gdb.fortran/charset.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.fortran/common-block.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.fortran/complex.exp ...
@@ -2985,13 +3223,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: call catch_command_errors(execute_command, "python print(5)", 0)
-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)
+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 ...
@@ -3063,8 +3308,15 @@ 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 ...
+FAIL: gdb.mi/gdb669.exp: console and MI have same number of threads (at main)
+FAIL: gdb.mi/gdb669.exp: console and MI have same number of threads (try 0)
+FAIL: gdb.mi/gdb669.exp: console and MI have same number of threads (try 1)
+FAIL: gdb.mi/gdb669.exp: console and MI have same number of threads (try 2)
+FAIL: gdb.mi/gdb669.exp: console and MI have same number of threads (try 3)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/gdb680.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/gdb701.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/gdb792.exp ...
@@ -3072,9 +3324,21 @@ 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
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-catch-load.exp ...
 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-condbreak-call-thr-state.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-console.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-disassemble.exp ...
@@ -3092,6 +3356,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 ...
@@ -3100,6 +3365,13 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-nsmoribund.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-nsthrexec.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-pending.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-pthreads.exp ...
+FAIL: gdb.mi/mi-pthreads.exp: check_mi_thread_command_set: -thread-select 10
+FAIL: gdb.mi/mi-pthreads.exp: check_mi_thread_command_set: -thread-select 3
+FAIL: gdb.mi/mi-pthreads.exp: check_mi_thread_command_set: -thread-select 2
+FAIL: gdb.mi/mi-pthreads.exp: check_mi_thread_command_set: -thread-select 1
+FAIL: gdb.mi/mi-pthreads.exp: check =thread-selected: thread 3
+FAIL: gdb.mi/mi-pthreads.exp: check =thread-selected: thread 2
+FAIL: gdb.mi/mi-pthreads.exp: check =thread-selected: thread 1
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-read-memory.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-record-changed.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-reg-undefined.exp ...
@@ -3113,6 +3385,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 ...
@@ -3124,6 +3397,9 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-var-create-rtti.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-var-display.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-var-invalidate.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-var-list-children-invalid-grandchild.exp ...
+FAIL: gdb.mi/mi-var-list-children-invalid-grandchild.exp: create variable object
+FAIL: gdb.mi/mi-var-list-children-invalid-grandchild.exp: list children #1
+FAIL: gdb.mi/mi-var-list-children-invalid-grandchild.exp: list children #2
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-var-rtti.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-vla-c99.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-watch-nonstop.exp ...
@@ -3137,10 +3413,28 @@ 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/dummy-frame-restore.exp ...
+FAIL: gdb.multi/dummy-frame-restore.exp: Can't run to f2
 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/multi-attach.exp ...
+FAIL: gdb.multi/multi-attach.exp: attach to program 1
+FAIL: gdb.multi/multi-attach.exp: attach to program 2
 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: 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 ...
@@ -3194,11 +3488,25 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-cmd.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-completion.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: get current thread
+ERROR: tcl error sourcing ../../../W._C._Handy/gdb/testsuite/gdb.python/py-events.exp.
+ERROR: can't read "process_id": no such variable
+    while executing
+"lappend expected "ptid: \\($process_id, $process_id, 0\\)" "address: $addr""
+    (file "../../../W._C._Handy/gdb/testsuite/gdb.python/py-events.exp" line 99)
+    invoked from within
+"source ../../../W._C._Handy/gdb/testsuite/gdb.python/py-events.exp"
+    ("uplevel" body line 1)
+    invoked from within
+"uplevel #0 source ../../../W._C._Handy/gdb/testsuite/gdb.python/py-events.exp"
+    invoked from within
+"catch "uplevel #0 source $test_file_name""
 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
@@ -3212,10 +3520,16 @@ 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-lookup-type.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 ...
@@ -3283,82 +3597,506 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.stabs/gdb11479.exp ...
 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-many-short-lived-threads.exp ...
+gdb compile failed, ../../../W._C._Handy/gdb/testsuite/gdb.threads/attach-many-short-lived-threads.c: In function 'joinable_fn':
+../../../W._C._Handy/gdb/testsuite/gdb.threads/attach-many-short-lived-threads.c:78:3: warning: implicit declaration of function 'pthread_setname_np' [-Wimplicit-function-declaration]
+   pthread_setname_np (pthread_self (), "joinable");
+   ^
 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/break-while-running.exp ...
+FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted off: all-stop: set scheduler-locking on
+FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted off: all-stop: thread 2
+FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted off: all-stop: continuing thread 2
+FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted off: all-stop: thread 3
+FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted off: all-stop: continuing thread 3
+FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted off: all-stop: switch back to main thread
+FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted off: all-stop: only main stopped
+FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted off: all-stop: breakpoint is hit (timeout)
+FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted off: all-stop: all threads stopped
+FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted on: all-stop: set scheduler-locking on
+FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted on: all-stop: thread 2
+FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted on: all-stop: continuing thread 2
+FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted on: all-stop: thread 3
+FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted on: all-stop: continuing thread 3
+FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted on: all-stop: switch back to main thread
+FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted on: all-stop: only main stopped
+FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted on: all-stop: breakpoint is hit (timeout)
+FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted on: all-stop: all threads stopped
+FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted off: all-stop: set scheduler-locking on
+FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted off: all-stop: thread 2
+FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted off: all-stop: continuing thread 2
+FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted off: all-stop: thread 3
+FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted off: all-stop: continuing thread 3
+FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted off: all-stop: switch back to main thread
+FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted off: all-stop: breakpoint is hit (timeout)
+FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted off: all-stop: all threads stopped
+FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted on: all-stop: set scheduler-locking on
+FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted on: all-stop: thread 2
+FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted on: all-stop: continuing thread 2
+FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted on: all-stop: thread 3
+FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted on: all-stop: continuing thread 3
+FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted on: all-stop: switch back to main thread
+FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted on: all-stop: breakpoint is hit (timeout)
+FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted on: all-stop: all threads stopped
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/clone-new-thread-event.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/clone-thread_db.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/continue-pending-after-query.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/continue-pending-status.exp ...
+FAIL: gdb.threads/continue-pending-status.exp: attempt 0: continue to tight loop
+FAIL: gdb.threads/continue-pending-status.exp: attempt 0: switch to non-event thread
+FAIL: gdb.threads/continue-pending-status.exp: attempt 0: caught interrupt
+FAIL: gdb.threads/continue-pending-status.exp: attempt 1: continue to tight loop
+FAIL: gdb.threads/continue-pending-status.exp: attempt 1: switch to non-event thread
+FAIL: gdb.threads/continue-pending-status.exp: attempt 1: caught interrupt
+FAIL: gdb.threads/continue-pending-status.exp: attempt 2: continue to tight loop
+FAIL: gdb.threads/continue-pending-status.exp: attempt 2: switch to non-event thread
+FAIL: gdb.threads/continue-pending-status.exp: attempt 2: caught interrupt
+FAIL: gdb.threads/continue-pending-status.exp: attempt 3: continue to tight loop
+FAIL: gdb.threads/continue-pending-status.exp: attempt 3: switch to non-event thread
+FAIL: gdb.threads/continue-pending-status.exp: attempt 3: caught interrupt
+FAIL: gdb.threads/continue-pending-status.exp: attempt 4: continue to tight loop
+FAIL: gdb.threads/continue-pending-status.exp: attempt 4: switch to non-event thread
+FAIL: gdb.threads/continue-pending-status.exp: attempt 4: caught interrupt
+FAIL: gdb.threads/continue-pending-status.exp: attempt 5: continue to tight loop
+FAIL: gdb.threads/continue-pending-status.exp: attempt 5: switch to non-event thread
+FAIL: gdb.threads/continue-pending-status.exp: attempt 5: caught interrupt
+FAIL: gdb.threads/continue-pending-status.exp: attempt 6: continue to tight loop
+FAIL: gdb.threads/continue-pending-status.exp: attempt 6: switch to non-event thread
+FAIL: gdb.threads/continue-pending-status.exp: attempt 6: caught interrupt
+FAIL: gdb.threads/continue-pending-status.exp: attempt 7: continue to tight loop
+FAIL: gdb.threads/continue-pending-status.exp: attempt 7: switch to non-event thread
+FAIL: gdb.threads/continue-pending-status.exp: attempt 7: caught interrupt
+FAIL: gdb.threads/continue-pending-status.exp: attempt 8: continue to tight loop
+FAIL: gdb.threads/continue-pending-status.exp: attempt 8: switch to non-event thread
+FAIL: gdb.threads/continue-pending-status.exp: attempt 8: caught interrupt
+FAIL: gdb.threads/continue-pending-status.exp: attempt 9: continue to tight loop
+FAIL: gdb.threads/continue-pending-status.exp: attempt 9: switch to non-event thread
+FAIL: gdb.threads/continue-pending-status.exp: attempt 9: caught interrupt
+FAIL: gdb.threads/continue-pending-status.exp: attempt 10: continue to tight loop
+FAIL: gdb.threads/continue-pending-status.exp: attempt 10: switch to non-event thread
+FAIL: gdb.threads/continue-pending-status.exp: attempt 10: caught interrupt
+FAIL: gdb.threads/continue-pending-status.exp: attempt 11: continue to tight loop
+FAIL: gdb.threads/continue-pending-status.exp: attempt 11: switch to non-event thread
+FAIL: gdb.threads/continue-pending-status.exp: attempt 11: caught interrupt
+FAIL: gdb.threads/continue-pending-status.exp: attempt 12: continue to tight loop
+FAIL: gdb.threads/continue-pending-status.exp: attempt 12: switch to non-event thread
+FAIL: gdb.threads/continue-pending-status.exp: attempt 12: caught interrupt
+FAIL: gdb.threads/continue-pending-status.exp: attempt 13: continue to tight loop
+FAIL: gdb.threads/continue-pending-status.exp: attempt 13: switch to non-event thread
+FAIL: gdb.threads/continue-pending-status.exp: attempt 13: caught interrupt
+FAIL: gdb.threads/continue-pending-status.exp: attempt 14: continue to tight loop
+FAIL: gdb.threads/continue-pending-status.exp: attempt 14: switch to non-event thread
+FAIL: gdb.threads/continue-pending-status.exp: attempt 14: caught interrupt
+FAIL: gdb.threads/continue-pending-status.exp: attempt 15: continue to tight loop
+FAIL: gdb.threads/continue-pending-status.exp: attempt 15: switch to non-event thread
+FAIL: gdb.threads/continue-pending-status.exp: attempt 15: caught interrupt
+FAIL: gdb.threads/continue-pending-status.exp: attempt 16: continue to tight loop
+FAIL: gdb.threads/continue-pending-status.exp: attempt 16: switch to non-event thread
+FAIL: gdb.threads/continue-pending-status.exp: attempt 16: caught interrupt
+FAIL: gdb.threads/continue-pending-status.exp: attempt 17: continue to tight loop
+FAIL: gdb.threads/continue-pending-status.exp: attempt 17: switch to non-event thread
+FAIL: gdb.threads/continue-pending-status.exp: attempt 17: caught interrupt
+FAIL: gdb.threads/continue-pending-status.exp: attempt 18: continue to tight loop
+FAIL: gdb.threads/continue-pending-status.exp: attempt 18: switch to non-event thread
+FAIL: gdb.threads/continue-pending-status.exp: attempt 18: caught interrupt
+FAIL: gdb.threads/continue-pending-status.exp: attempt 19: continue to tight loop
+FAIL: gdb.threads/continue-pending-status.exp: attempt 19: switch to non-event thread
+FAIL: gdb.threads/continue-pending-status.exp: attempt 19: caught interrupt
+FAIL: gdb.threads/continue-pending-status.exp: no thread starvation
 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-stale-thread.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
 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/kill.exp ...
+FAIL: gdb.threads/kill.exp: threaded: all threads started
 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
+FAIL: gdb.threads/leader-exit.exp: caught interrupt
 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-ns-info-thr.exp ...
+gdb compile failed, ../../../W._C._Handy/gdb/testsuite/gdb.threads/multi-create.c: In function 'create_function':
+../../../W._C._Handy/gdb/testsuite/gdb.threads/multi-create.c:46:39: error: 'PTHREAD_STACK_MIN' undeclared (first use in this function)
+   pthread_attr_setstacksize (&attr, 2*PTHREAD_STACK_MIN);
+                                       ^
+../../../W._C._Handy/gdb/testsuite/gdb.threads/multi-create.c:46:39: note: each undeclared identifier is reported only once for each function it appears in
+../../../W._C._Handy/gdb/testsuite/gdb.threads/multi-create.c: In function 'main':
+../../../W._C._Handy/gdb/testsuite/gdb.threads/multi-create.c:73:39: error: 'PTHREAD_STACK_MIN' undeclared (first use in this function)
+   pthread_attr_setstacksize (&attr, 2*PTHREAD_STACK_MIN);
+                                       ^
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/multi-create.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/multiple-step-overs.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/next-bp-other-thread.exp ...
+FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=off: info threads shows all threads
+FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=off: set scheduler-locking off
+FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=off: next over function call
+FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=step: info threads shows all threads
+FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=step: set scheduler-locking step
+FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=step: next over function call
+FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=on: info threads shows all threads
+FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=on: set scheduler-locking on
+FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=on: next over function call
 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
+FAIL: gdb.threads/no-unwaited-for-left.exp: thread apply all with exited thread
 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/non-stop-fair-events.exp ...
 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/queue-signal.exp ...
+FAIL: gdb.threads/queue-signal.exp: determine thread functions
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/reconnect-signal.exp ...
 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/signal-command-handle-nopass.exp ...
+FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over yes: stopped in thread
+FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over yes: thread 1
+FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over yes: thread 1 selected
+FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over yes: signal SIGUSR1
+FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over yes: thread 1 got the signal
+FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over no: stopped in thread
+FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over no: thread 1
+FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over no: thread 1 selected
+FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over no: signal SIGUSR1
+FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over no: thread 1 got the signal
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/signal-command-multiple-signals-pending.exp ...
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: thread 2 created
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: thread 3 created
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: continue
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: set scheduler-locking on
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: continue (the program is no longer running)
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: thread 1 selected
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: thread 3
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: stop with SIGUSR2 (the program is no longer running)
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: thread 2
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: stop with SIGUSR1 (the program is no longer running)
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: set scheduler-locking off
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: thread 1
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: signal command queries (the program is no longer running)
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: second signal: signal delivered (the program is no longer running)
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: no more signals (the program is no longer running)
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: thread 2 created
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: thread 3 created
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: continue
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: set scheduler-locking on
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: continue (the program is no longer running)
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: thread 1 selected
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: thread 3
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: stop with SIGUSR2 (the program is no longer running)
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: thread 2
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: stop with SIGUSR1 (the program is no longer running)
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: signal command does not query, signal delivered (the program is no longer running)
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: second signal: set scheduler-locking off
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: second signal: signal command queries (the program is no longer running)
+FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: no more signals (the program is no longer running)
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/signal-delivered-right-thread.exp ...
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/signal-sigtrap.exp ...
+FAIL: gdb.threads/signal-sigtrap.exp: sigtrap thread 1: Can't run to thread_function
+FAIL: gdb.threads/signal-sigtrap.exp: sigtrap thread 2: Can't run to thread_function
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/signal-while-stepping-over-bp-other-thread.exp ...
+FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: continue to breakpoint: run to breakpoint in thread 3
+FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: continue to breakpoint: run to breakpoint in thread 2
+FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: force loop break in thread 2
+FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: queue signal in thread 2
+FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: get my_number
+FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step (pattern 1)
+FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: stepped thread under control
 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-bg-decr-pc-switch-thread.exp ...
+FAIL: gdb.threads/step-bg-decr-pc-switch-thread.exp: continue to breakpoint: run to nop breakpoint
+FAIL: gdb.threads/step-bg-decr-pc-switch-thread.exp: info threads shows all threads
+FAIL: gdb.threads/step-bg-decr-pc-switch-thread.exp: next over nop
+FAIL: gdb.threads/step-bg-decr-pc-switch-thread.exp: next& over inf loop
+FAIL: gdb.threads/step-bg-decr-pc-switch-thread.exp: switch to main thread
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/step-over-lands-on-breakpoint.exp ...
+FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: step: info threads shows all threads
+FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: step: set scheduler-locking on
+FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: step: thread 2
+FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: step: continue to breakpoint: run to breakpoint in thread 2
+FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: step: thread 1
+FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: step: set scheduler-locking off
+FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: step: step
+FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: next: info threads shows all threads
+FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: next: set scheduler-locking on
+FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: next: thread 2
+FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: next: continue to breakpoint: run to breakpoint in thread 2
+FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: next: thread 1
+FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: next: set scheduler-locking off
+FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: next: next
+FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: continue: info threads shows all threads
+FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: continue: set scheduler-locking on
+FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: continue: thread 2
+FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: continue: continue to breakpoint: run to breakpoint in thread 2
+FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: continue: thread 1
+FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: continue: set scheduler-locking off
+FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: continue: continue
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/step-over-trips-on-watchpoint.exp ...
 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: schedlock off: continue to thread start
+FAIL: gdb.threads/thread-execl.exp: schedlock off: set scheduler-locking off
+FAIL: gdb.threads/thread-execl.exp: schedlock off: get to main in new image
+FAIL: gdb.threads/thread-execl.exp: schedlock step: continue to thread start
+FAIL: gdb.threads/thread-execl.exp: schedlock step: set scheduler-locking step
+FAIL: gdb.threads/thread-execl.exp: schedlock step: get to main in new image
+FAIL: gdb.threads/thread-execl.exp: schedlock on: continue to thread start
+FAIL: gdb.threads/thread-execl.exp: schedlock on: set scheduler-locking on
+FAIL: gdb.threads/thread-execl.exp: schedlock on: get to main in new image
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/thread-find.exp ...
 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
 Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/thread-specific.exp ...
+FAIL: gdb.threads/thread-specific.exp: continue to thread-specific breakpoint
 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 ...
+WARNING: program timed out.
+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/tid-reuse.exp ...
+FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: do_nothing_thread_func (the program exited)
+FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time (the program is no longer running)
 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 ...
 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: threaded watch loop (timeout)
+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
+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: Thread 0 hit breakpoint at thread_started
+FAIL: gdb.threads/wp-replication.exp: Thread 1 hit breakpoint at thread_started
+FAIL: gdb.threads/wp-replication.exp: Thread 2 hit breakpoint at thread_started
+FAIL: gdb.threads/wp-replication.exp: Thread 3 hit breakpoint at thread_started
+FAIL: gdb.threads/wp-replication.exp: Thread 4 hit breakpoint at thread_started
+FAIL: gdb.threads/wp-replication.exp: Thread 5 hit breakpoint at thread_started
+FAIL: gdb.threads/wp-replication.exp: Thread 6 hit breakpoint at thread_started
+FAIL: gdb.threads/wp-replication.exp: Thread 7 hit breakpoint at thread_started
+FAIL: gdb.threads/wp-replication.exp: Thread 8 hit breakpoint at thread_started
+FAIL: gdb.threads/wp-replication.exp: Thread 9 hit breakpoint at thread_started
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 21 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 22 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 23 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 24 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 25 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 26 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 27 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 28 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 29 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 30 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 31 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 32 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 33 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 34 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 35 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 36 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 37 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 38 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 39 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 40 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 41 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 42 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 43 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 44 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 45 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 46 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 47 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 48 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 49 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 50 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 51 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 52 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 53 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 54 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 55 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 56 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 57 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 58 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 59 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 60 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 61 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 62 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 63 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 64 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 65 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 66 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 67 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 68 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 69 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 70 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 71 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 72 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 73 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 74 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 75 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 76 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 77 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 78 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 79 out of 80 on watched_data
+FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 80 out of 80 on watched_data
 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 ...
@@ -3397,6 +4135,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 ...
@@ -3411,15 +4150,15 @@ Running ../../../W._C._Handy/gdb/testsuite/gdb.xml/tdesc-xinclude.exp ...
 
 		=== gdb Summary ===
 
-# of expected passes		33071
-# of unexpected failures	136
+# of expected passes		24707
+# of unexpected failures	803
 # of unexpected successes	2
-# of expected failures		61
+# of expected failures		38
 # of unknown successes		1
-# of known failures		58
+# of known failures		53
 # of unresolved testcases	2
-# of untested testcases		38
-# of unsupported tests		64
+# of untested testcases		65
+# of unsupported tests		97
 [...]/tschwinge/W._C._Handy.build/gdb/testsuite/../../gdb/gdb version  7.9.50.20150419-cvs -nw -nx -data-directory [...]/tschwinge/W._C._Handy.build/gdb/testsuite/../data-directory 
 
 Makefile:196: recipe for target 'check-single' failed
@@ -3428,7 +4167,7 @@ make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gdb/testsuite'
 Makefile:155: recipe for target 'check' failed
 make[3]: *** [check] Error 2
 make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gdb/testsuite'
-Makefile:1143: recipe for target 'check' failed
+Makefile:1167: recipe for target 'check' failed
 make[2]: *** [check] Error 2
 make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gdb'
 Makefile:10718: recipe for target 'check-gdb' failed