summaryrefslogtreecommitdiff
path: root/open_issues/gdb_testsuite.mdwn
blob: c349294f4a375114f7fc9f96d694fb10cdadb6c3 (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
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
[[!meta copyright="Copyright © 2009 Free Software Foundation, Inc."]]

[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
id="license" text="Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with no Invariant
Sections, no Front-Cover Texts, and no Back-Cover Texts.  A copy of the license
is included in the section entitled [[GNU Free Documentation
License|/fdl]]."]]"""]]

[[!meta title="GDB testsuite"]]

Note that there may be false failures listed here, due to the [[term blocking]]
issue.


[[!tag open_issue_gdb]]

Here's a log of a GDB testsuite run; this is from 2009-09-15 HEAD sources.

    make[1]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build'
    make[2]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/bfd'
    make  check-recursive
    make[3]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/bfd'
    Making check in doc
    make[4]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/bfd/doc'
    make[4]: Nothing to be done for `check'.
    make[4]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/bfd/doc'
    Making check in po
    make[4]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/bfd/po'
    make[4]: Nothing to be done for `check'.
    make[4]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/bfd/po'
    make[4]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/bfd'
    make[4]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/bfd'
    make[3]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/bfd'
    make[2]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/bfd'
    make[2]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/opcodes'
    Making check in .
    make[3]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/opcodes'
    make[3]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/opcodes'
    Making check in po
    make[3]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/opcodes/po'
    make[3]: Nothing to be done for `check'.
    make[3]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/opcodes/po'
    make[2]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/opcodes'
    make[2]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/etc'
    make[2]: Nothing to be done for `check'.
    make[2]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/etc'
    make[2]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/intl'
    make[2]: Nothing to be done for `check'.
    make[2]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/intl'
    make[2]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/libdecnumber'
    make[2]: Nothing to be done for `check'.
    make[2]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/libdecnumber'
    make[2]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/libiberty'
    make[3]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/libiberty/testsuite'
    gcc -DHAVE_CONFIG_H -g -O2 -I.. -I../../../HEAD/src/libiberty/testsuite/../../include  -o test-demangle \
                    ../../../HEAD/src/libiberty/testsuite/test-demangle.c ../libiberty.a
    ./test-demangle < ../../../HEAD/src/libiberty/testsuite/demangle-expected
    ./test-demangle: 777 tests, 0 failures
    gcc -DHAVE_CONFIG_H -g -O2 -I.. -I../../../HEAD/src/libiberty/testsuite/../../include  -DHAVE_CONFIG_H -I.. -o test-pexecute \
                    ../../../HEAD/src/libiberty/testsuite/test-pexecute.c ../libiberty.a
    ./test-pexecute
    gcc -DHAVE_CONFIG_H -g -O2 -I.. -I../../../HEAD/src/libiberty/testsuite/../../include  -DHAVE_CONFIG_H -I.. -o test-expandargv \
                    ../../../HEAD/src/libiberty/testsuite/test-expandargv.c ../libiberty.a
    ./test-expandargv
    PASS: test-expandargv-0.
    PASS: test-expandargv-1.
    PASS: test-expandargv-2.
    PASS: test-expandargv-3.
    make[3]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/libiberty/testsuite'
    make[2]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/libiberty'
    make[2]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/readline'
    make[2]: Nothing to be done for `check'.
    make[2]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/readline'
    make[2]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/sim'
    make[2]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/sim'
    make[2]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb'
    make[3]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite'
    make -k check-gdb.base1 check-gdb.base2 check-gdb.ada check-gdb.arch check-gdb.asm check-gdb.cell check-gdb.cp check-gdb.disasm check-gdb.dwarf2 check-gdb.fortran check-gdb.gdb check-gdb.java check-gdb.mi check-gdb.modula2 check-gdb.objc check-gdb.opt check-gdb.pascal check-gdb.python check-gdb.reverse check-gdb.server check-gdb.stabs check-gdb.threads check-gdb.trace check-gdb.xml; \
            /bin/bash ../../../HEAD/src/gdb/testsuite/dg-extract-results.sh \
              gdb.base1/gdb.sum gdb.base2/gdb.sum gdb.ada/gdb.sum gdb.arch/gdb.sum gdb.asm/gdb.sum gdb.cell/gdb.sum gdb.cp/gdb.sum gdb.disasm/gdb.sum gdb.dwarf2/gdb.sum gdb.fortran/gdb.sum gdb.gdb/gdb.sum gdb.java/gdb.sum gdb.mi/gdb.sum gdb.modula2/gdb.sum gdb.objc/gdb.sum gdb.opt/gdb.sum gdb.pascal/gdb.sum gdb.python/gdb.sum gdb.reverse/gdb.sum gdb.server/gdb.sum gdb.stabs/gdb.sum gdb.threads/gdb.sum gdb.trace/gdb.sum gdb.xml/gdb.sum > gdb.sum; \
            /bin/bash ../../../HEAD/src/gdb/testsuite/dg-extract-results.sh -L \
              gdb.base1/gdb.log gdb.base2/gdb.log gdb.ada/gdb.log gdb.arch/gdb.log gdb.asm/gdb.log gdb.cell/gdb.log gdb.cp/gdb.log gdb.disasm/gdb.log gdb.dwarf2/gdb.log gdb.fortran/gdb.log gdb.gdb/gdb.log gdb.java/gdb.log gdb.mi/gdb.log gdb.modula2/gdb.log gdb.objc/gdb.log gdb.opt/gdb.log gdb.pascal/gdb.log gdb.python/gdb.log gdb.reverse/gdb.log gdb.server/gdb.log gdb.stabs/gdb.log gdb.threads/gdb.log gdb.trace/gdb.log gdb.xml/gdb.log > gdb.log
    make[4]: Entering directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite'
    Nothing to be done for all...
    Making a new config file...
    rootme=`pwd`; export rootme; srcdir=../../../HEAD/src/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest gdb.base/a2-run.exp gdb.base/advance.exp gdb.base/all-bin.exp gdb.base/annota1.exp gdb.base/annota3.exp gdb.base/args.exp gdb.base/arithmet.exp gdb.base/arrayidx.exp gdb.base/assign.exp gdb.base/async.exp gdb.base/attach.exp gdb.base/auxv.exp gdb.base/bang.exp gdb.base/bfp-test.exp gdb.base/bigcore.exp gdb.base/bitfields.exp gdb.base/bitfields2.exp gdb.base/bitops.exp gdb.base/break-always.exp gdb.base/break.exp gdb.base/breakpoint-shadow.exp gdb.base/call-ar-st.exp gdb.base/call-rt-st.exp gdb.base/call-sc.exp gdb.base/call-signal-resume.exp gdb.base/call-strs.exp gdb.base/callexit.exp gdb.base/callfuncs.exp gdb.base/charset.exp gdb.base/checkpoint.exp gdb.base/chng-syms.exp gdb.base/code-expr.exp gdb.base/commands.exp gdb.base/completion.exp gdb.base/complex.exp gdb.base/cond-expr.exp gdb.base/condbreak.exp gdb.base/consecutive.exp gdb.base/constvars.exp gdb.base/corefile.exp gdb.base/cursal.exp gdb.base/cvexpr.exp gdb.base/dbx.exp gdb.base/default.exp gdb.base/define.exp gdb.base/del.exp gdb.base/detach.exp gdb.base/dfp-exprs.exp gdb.base/dfp-test.exp gdb.base/display.exp gdb.base/dump.exp gdb.base/echo.exp gdb.base/ena-dis-br.exp gdb.base/ending-run.exp gdb.base/environ.exp gdb.base/eval-skip.exp gdb.base/exe-lock.exp gdb.base/expand-psymtabs.exp gdb.base/exprs.exp gdb.base/fileio.exp gdb.base/find.exp gdb.base/finish.exp gdb.base/fixsection.exp gdb.base/float.exp gdb.base/foll-exec.exp gdb.base/foll-fork.exp gdb.base/foll-vfork.exp gdb.base/frame-args.exp gdb.base/freebpcmd.exp gdb.base/fullname.exp gdb.base/funcargs.exp gdb.base/gcore-buffer-overflow.exp gdb.base/gcore.exp gdb.base/gdb1056.exp gdb.base/gdb1090.exp gdb.base/gdb1250.exp gdb.base/gdb1555.exp gdb.base/gdb1821.exp gdb.base/gdbvars.exp gdb.base/hashline1.exp gdb.base/hashline2.exp gdb.base/hashline3.exp gdb.base/help.exp gdb.base/hook-stop-continue.exp gdb.base/hook-stop-frame.exp gdb.base/huge.exp gdb.base/ifelse.exp gdb.base/included.exp gdb.base/infnan.exp gdb.base/info-proc.exp gdb.base/info-target.exp gdb.base/interp.exp gdb.base/interrupt.exp gdb.base/jump.exp gdb.base/langs.exp gdb.base/lineinc.exp gdb.base/list.exp gdb.base/logical.exp gdb.base/long_long.exp gdb.base/longjmp.exp gdb.base/macscp.exp gdb.base/maint.exp gdb.base/mips_pro.exp gdb.base/miscexprs.exp gdb.base/multi-forks.exp --outdir gdb.base1 
    Test Run By tschwinge on Fri Nov 13 02:02:31 2009
    Native configuration is i386-unknown-gnu0.3
    
                    === gdb tests ===
    
    Schedule of variations:
        unix
    
    Running target unix
    Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
    Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
    Using ../../../HEAD/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/gcore.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/exe-lock.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/complex.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/gdbvars.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/condbreak.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/detach.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/breakpoint-shadow.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/bigcore.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/jump.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/multi-forks.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/frame-args.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/dbx.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/echo.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/all-bin.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/bitfields2.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/gdb1821.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/environ.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/infnan.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/advance.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/commands.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/callfuncs.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/define.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/foll-fork.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/auxv.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/interrupt.exp ...
    FAIL: gdb.base/interrupt.exp: Send Control-C, second time
    FAIL: gdb.base/interrupt.exp: send end of file
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/a2-run.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/call-signal-resume.exp ...
    FAIL: gdb.base/call-signal-resume.exp: dummy stack frame number
    XPASS: gdb.base/call-signal-resume.exp: frame
    FAIL: gdb.base/call-signal-resume.exp: continue to breakpoint at stop_two
    FAIL: gdb.base/call-signal-resume.exp: continue to receipt of signal (timeout)
    FAIL: gdb.base/call-signal-resume.exp: break null_hand_call (timeout)
    FAIL: gdb.base/call-signal-resume.exp: null_hand_call (timeout)
    FAIL: gdb.base/call-signal-resume.exp: dummy stack frame number
    FAIL: gdb.base/call-signal-resume.exp: set confirm off (timeout)
    FAIL: gdb.base/call-signal-resume.exp: return (timeout)
    FAIL: gdb.base/call-signal-resume.exp: break handle_signal (timeout)
    FAIL: gdb.base/call-signal-resume.exp: continue to breakpoint at handle_signal (timeout)
    FAIL: gdb.base/call-signal-resume.exp: continue to program exit (timeout)
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/hashline2.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/async.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/callexit.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/freebpcmd.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/corefile.exp ...
    WARNING: can't generate a core file - core tests suppressed - check ulimit -c
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/hook-stop-frame.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/info-proc.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/arithmet.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/call-sc.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/info-target.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/expand-psymtabs.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/checkpoint.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/cond-expr.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/consecutive.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/help.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/finish.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/lineinc.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/annota1.exp ...
    FAIL: gdb.base/annota1.exp: run until main breakpoint
    FAIL: gdb.base/annota1.exp: send SIGUSR1 (timeout)
    FAIL: gdb.base/annota1.exp: backtrace @ signal handler (timeout)
    FAIL: gdb.base/annota1.exp: delete bp 1 (timeout)
    FAIL: gdb.base/annota1.exp: delete bp 2 (timeout)
    FAIL: gdb.base/annota1.exp: delete bp 3 (timeout)
    FAIL: gdb.base/annota1.exp: break at 28 (timeout)
    FAIL: gdb.base/annota1.exp: set up display (timeout)
    FAIL: gdb.base/annota1.exp: re-run (timeout)
    FAIL: gdb.base/annota1.exp: break at 46 (timeout)
    FAIL: gdb.base/annota1.exp: ignore 5 4 (timeout)
    FAIL: gdb.base/annota1.exp: annotate ignore count change (timeout)
    FAIL: gdb.base/annota1.exp: next to exit loop
    FAIL: gdb.base/annota1.exp: breakpoint ignore count (timeout)
    FAIL: gdb.base/annota1.exp: signal sent (timeout)
    FAIL: gdb.base/annota1.exp: thread switch (timeout)
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/logical.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/fixsection.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/annota3.exp ...
    FAIL: gdb.base/annota3.exp: send SIGUSR1 (pattern 4) (timeout)
    FAIL: gdb.base/annota3.exp: backtrace @ signal handler (pattern 1) (timeout)
    FAIL: gdb.base/annota3.exp: delete bp 1 (pattern 1 + sentinel) (timeout)
    FAIL: gdb.base/annota3.exp: delete bp 2 (pattern 1 + sentinel) (timeout)
    FAIL: gdb.base/annota3.exp: delete bp 3 (pattern 1 + sentinel) (timeout)
    FAIL: gdb.base/annota3.exp: break at 28 (pattern 1) (timeout)
    FAIL: gdb.base/annota3.exp: set up display (pattern 1) (timeout)
    FAIL: gdb.base/annota3.exp: re-run (timeout)
    FAIL: gdb.base/annota3.exp: break at 46 (pattern 1) (timeout)
    FAIL: gdb.base/annota3.exp: ignore 5 4 (pattern 1) (timeout)
    FAIL: gdb.base/annota3.exp: annotate ignore count change (pattern 1) (timeout)
    FAIL: gdb.base/annota3.exp: next to exit loop (pattern 1) (timeout)
    FAIL: gdb.base/annota3.exp: breakpoint ignore count (pattern 1) (timeout)
    FAIL: gdb.base/annota3.exp: signal sent (pattern 1) (timeout)
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/args.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/hook-stop-continue.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/display.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/ifelse.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/gdb1056.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/bitops.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/completion.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/list.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/long_long.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/bang.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/mips_pro.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/dfp-exprs.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/interp.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/exprs.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/ena-dis-br.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/langs.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/hashline1.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/assign.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/call-strs.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/default.exp ...
    FAIL: gdb.base/default.exp: show convenience
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/dump.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/hashline3.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/foll-exec.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/ending-run.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/dfp-test.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/gcore-buffer-overflow.exp ...
    Running ../../../HEAD/src/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 ../../../HEAD/src/gdb/testsuite/gdb.base/huge.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/find.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/eval-skip.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/arrayidx.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/gdb1555.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/attach.exp ...
    FAIL: gdb.base/attach.exp: attach to nonsense is prohibited (bogus pid allowed)
    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: set file, before attach2
    FAIL: gdb.base/attach.exp: after attach2, set tbreak postloop
    FAIL: gdb.base/attach.exp: (timeout) after attach2, reach tbreak postloop
    FAIL: gdb.base/attach.exp: after attach2, exit (timeout)
    FAIL: gdb.base/attach.exp: set source path
    FAIL: gdb.base/attach.exp: cd away from process working directory (the program is no longer running)
    FAIL: gdb.base/attach.exp: before attach3, flush symbols
    FAIL: gdb.base/attach.exp: before attach3, flush exec
    FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
    FAIL: gdb.base/attach.exp: after attach3, exit
    FAIL: gdb.base/attach.exp: attach call
    FAIL: gdb.base/attach.exp: c
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/break.exp ...
    FAIL: gdb.base/break.exp: breakpoint at start of multi line while conditional
    FAIL: gdb.base/break.exp: breakpoint info
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/del.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/miscexprs.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/float.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/longjmp.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/code-expr.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/included.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/call-ar-st.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/cvexpr.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/maint.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/funcargs.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/chng-syms.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/foll-vfork.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/charset.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/cursal.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/break-always.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/call-rt-st.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/constvars.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/fullname.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/gdb1250.exp ...
    FAIL: gdb.base/gdb1250.exp: running to abort in runto
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/bfp-test.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/bitfields.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/macscp.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/gdb1090.exp ...
    
                    === gdb Summary ===
    
    # of expected passes            3882
    # of unexpected failures        86
    # of unexpected successes       1
    # of expected failures          6
    # of known failures             19
    # of untested testcases         1
    # of unsupported tests          4
    /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb version  6.8.50.20090914-cvs -nw -nx 
    
    make[4]: *** [check-gdb.base1] Error 1
    rootme=`pwd`; export rootme; srcdir=../../../HEAD/src/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest gdb.base/nodebug.exp gdb.base/nofield.exp gdb.base/opaque.exp gdb.base/overlays.exp gdb.base/page.exp gdb.base/pc-fp.exp gdb.base/pending.exp gdb.base/pie-support.exp gdb.base/pointers.exp gdb.base/prelink.exp gdb.base/printcmds.exp gdb.base/prologue.exp gdb.base/psymtab.exp gdb.base/ptr-typedef.exp gdb.base/ptype.exp gdb.base/radix.exp gdb.base/randomize.exp gdb.base/readline.exp gdb.base/recurse.exp gdb.base/regs.exp gdb.base/relational.exp gdb.base/relativedebug.exp gdb.base/relocate.exp gdb.base/remote.exp gdb.base/remotetimeout.exp gdb.base/reread.exp gdb.base/restore.exp gdb.base/return-nodebug.exp gdb.base/return.exp gdb.base/return2.exp gdb.base/savedregs.exp gdb.base/scope.exp gdb.base/sect-cmd.exp gdb.base/sep.exp gdb.base/sepdebug.exp gdb.base/sepsymtab.exp gdb.base/set-lang-auto.exp gdb.base/setshow.exp gdb.base/setvar.exp gdb.base/shlib-call.exp gdb.base/shreloc.exp gdb.base/sigall.exp gdb.base/sigaltstack.exp gdb.base/sigbpt.exp gdb.base/sigchld.exp gdb.base/siginfo-addr.exp gdb.base/siginfo-obj.exp gdb.base/siginfo.exp gdb.base/signals.exp gdb.base/signull.exp gdb.base/sigrepeat.exp gdb.base/sigstep.exp gdb.base/sizeof.exp gdb.base/so-impl-ld.exp gdb.base/so-indr-cl.exp gdb.base/solib-disc.exp gdb.base/solib-display.exp gdb.base/solib-overlap.exp gdb.base/solib-symbol.exp gdb.base/solib-weak.exp gdb.base/solib.exp gdb.base/source.exp gdb.base/stack-checking.exp gdb.base/start.exp gdb.base/step-break.exp gdb.base/step-bt.exp gdb.base/step-line.exp gdb.base/step-test.exp gdb.base/store.exp gdb.base/structs.exp gdb.base/structs2.exp gdb.base/structs3.exp gdb.base/subst.exp gdb.base/term.exp gdb.base/trace-commands.exp gdb.base/twice.exp gdb.base/type-opaque.exp gdb.base/unload.exp gdb.base/until.exp gdb.base/unwindonsignal.exp gdb.base/value-double-free.exp gdb.base/varargs.exp gdb.base/volatile.exp gdb.base/watch_thread_num.exp gdb.base/watchpoint-hw.exp gdb.base/watchpoint-solib.exp gdb.base/watchpoint.exp gdb.base/whatis-exp.exp gdb.base/whatis.exp --outdir gdb.base2 
    Test Run By tschwinge on Fri Nov 13 04:33:11 2009
    Native configuration is i386-unknown-gnu0.3
    
                    === gdb tests ===
    
    Schedule of variations:
        unix
    
    Running target unix
    Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
    Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
    Using ../../../HEAD/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/radix.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/return.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/watchpoint.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/signals.exp ...
    FAIL: gdb.base/signals.exp: p count #1
    FAIL: gdb.base/signals.exp: p func1 () #2
    FAIL: gdb.base/signals.exp: backtrace from handler when calling func1
    FAIL: gdb.base/signals.exp: continue (the program exited)
    FAIL: gdb.base/signals.exp: p count #2
    FAIL: gdb.base/signals.exp: signal without arguments disallowed (the program is no longer running)
    FAIL: gdb.base/signals.exp: signal SIGUSR1 (the program is no longer running)
    FAIL: gdb.base/signals.exp: backtrace for SIGUSR1
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/randomize.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/return-nodebug.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/set-lang-auto.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/structs2.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/opaque.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/printcmds.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/restore.exp ...
    Running ../../../HEAD/src/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
    FAIL: gdb.base/savedregs.exp: call caller (1,2,3,4,5,6,7,8) (timeout)
    FAIL: gdb.base/savedregs.exp: Get dummy info frame (timeout)
    FAIL: gdb.base/savedregs.exp: Get catcher info frame (timeout)
    FAIL: gdb.base/savedregs.exp: Check sigtramp info frame; stack contains caller dummy catcher sigtramp thrower main (timeout)
    FAIL: gdb.base/savedregs.exp: advance callee (timeout)
    FAIL: gdb.base/savedregs.exp: Get caller info frame (timeout)
    FAIL: gdb.base/savedregs.exp: Check dummy info frame; stack contains callee caller dummy catcher sigtramp thrower main (timeout)
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/prologue.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/pending.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/setvar.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/varargs.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/trace-commands.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/so-impl-ld.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/relocate.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/sepdebug.exp ...
    FAIL: gdb.base/sepdebug.exp: breakpoint at start of multi line while conditional
    FAIL: gdb.base/sepdebug.exp: breakpoint info
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/siginfo-obj.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/shreloc.exp ...
    Running ../../../HEAD/src/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)
    ERROR: internal buffer is full.
    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 ../../../HEAD/src/gdb/testsuite/gdb.base/relational.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/volatile.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/sizeof.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/solib.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/store.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/start.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/solib-weak.exp ...
    FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 nodebug, lib2 nodebug, lib1 first
    FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 debug, lib2 nodebug, lib1 first
    FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 debug, lib2 debug, lib1 first
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/term.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/sep.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/nofield.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/whatis-exp.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/return2.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/shlib-call.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/solib-symbol.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/sigall.exp ...
    FAIL: gdb.base/sigall.exp: advance to HUP (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGHUP stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_HUP (timeout)
    FAIL: gdb.base/sigall.exp: b gen_QUIT (timeout)
    FAIL: gdb.base/sigall.exp: get signal HUP (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to QUIT (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGQUIT stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_QUIT (timeout)
    FAIL: gdb.base/sigall.exp: b gen_ILL (timeout)
    FAIL: gdb.base/sigall.exp: get signal QUIT (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to ILL (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGILL stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_ILL (timeout)
    FAIL: gdb.base/sigall.exp: b gen_EMT (timeout)
    FAIL: gdb.base/sigall.exp: get signal ILL (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to EMT (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGEMT stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_EMT (timeout)
    FAIL: gdb.base/sigall.exp: b gen_FPE (timeout)
    FAIL: gdb.base/sigall.exp: get signal EMT (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to FPE (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGFPE stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_FPE (timeout)
    FAIL: gdb.base/sigall.exp: b gen_BUS (timeout)
    FAIL: gdb.base/sigall.exp: get signal FPE (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to BUS (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGBUS stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_BUS (timeout)
    FAIL: gdb.base/sigall.exp: b gen_SEGV (timeout)
    FAIL: gdb.base/sigall.exp: get signal BUS (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to SEGV (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGSEGV stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_SEGV (timeout)
    FAIL: gdb.base/sigall.exp: b gen_SYS (timeout)
    FAIL: gdb.base/sigall.exp: get signal SEGV (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to SYS (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGSYS stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_SYS (timeout)
    FAIL: gdb.base/sigall.exp: b gen_PIPE (timeout)
    FAIL: gdb.base/sigall.exp: get signal SYS (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to PIPE (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGPIPE stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_PIPE (timeout)
    FAIL: gdb.base/sigall.exp: b gen_ALRM (timeout)
    FAIL: gdb.base/sigall.exp: get signal PIPE (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to ALRM (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGALRM stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_ALRM (timeout)
    FAIL: gdb.base/sigall.exp: b gen_URG (timeout)
    FAIL: gdb.base/sigall.exp: get signal ALRM (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to URG (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGURG stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_URG (timeout)
    FAIL: gdb.base/sigall.exp: b gen_TSTP (timeout)
    FAIL: gdb.base/sigall.exp: get signal URG (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to TSTP (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGTSTP stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_TSTP (timeout)
    FAIL: gdb.base/sigall.exp: b gen_CONT (timeout)
    FAIL: gdb.base/sigall.exp: get signal TSTP (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to CONT (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGCONT stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_CONT (timeout)
    FAIL: gdb.base/sigall.exp: b gen_CHLD (timeout)
    FAIL: gdb.base/sigall.exp: get signal CONT (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to CHLD (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGCHLD stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_CHLD (timeout)
    FAIL: gdb.base/sigall.exp: b gen_TTIN (timeout)
    FAIL: gdb.base/sigall.exp: get signal CHLD (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to TTIN (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGTTIN stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_TTIN (timeout)
    FAIL: gdb.base/sigall.exp: b gen_TTOU (timeout)
    FAIL: gdb.base/sigall.exp: get signal TTIN (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to TTOU (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGTTOU stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_TTOU (timeout)
    FAIL: gdb.base/sigall.exp: b gen_IO (timeout)
    FAIL: gdb.base/sigall.exp: get signal TTOU (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to IO (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGIO stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_IO (timeout)
    FAIL: gdb.base/sigall.exp: b gen_XCPU (timeout)
    FAIL: gdb.base/sigall.exp: get signal IO (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to XCPU (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGXCPU stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_XCPU (timeout)
    FAIL: gdb.base/sigall.exp: b gen_XFSZ (timeout)
    FAIL: gdb.base/sigall.exp: get signal XCPU (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to XFSZ (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGXFSZ stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_XFSZ (timeout)
    FAIL: gdb.base/sigall.exp: b gen_VTALRM (timeout)
    FAIL: gdb.base/sigall.exp: get signal XFSZ (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to VTALRM (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGVTALRM stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_VTALRM (timeout)
    FAIL: gdb.base/sigall.exp: b gen_PROF (timeout)
    FAIL: gdb.base/sigall.exp: get signal VTALRM (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to PROF (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGPROF stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_PROF (timeout)
    FAIL: gdb.base/sigall.exp: b gen_WINCH (timeout)
    FAIL: gdb.base/sigall.exp: get signal PROF (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to WINCH (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGWINCH stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_WINCH (timeout)
    FAIL: gdb.base/sigall.exp: b gen_LOST (timeout)
    FAIL: gdb.base/sigall.exp: get signal WINCH (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to LOST (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGLOST stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_LOST (timeout)
    FAIL: gdb.base/sigall.exp: b gen_USR1 (timeout)
    FAIL: gdb.base/sigall.exp: get signal LOST (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to USR1 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGUSR1 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_USR1 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_USR2 (timeout)
    FAIL: gdb.base/sigall.exp: get signal USR1 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to USR2 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGUSR2 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_USR2 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_PWR (timeout)
    FAIL: gdb.base/sigall.exp: get signal USR2 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to PWR (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGPWR stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_PWR (timeout)
    FAIL: gdb.base/sigall.exp: b gen_POLL (timeout)
    FAIL: gdb.base/sigall.exp: get signal PWR (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to POLL (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGPOLL stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_POLL (timeout)
    FAIL: gdb.base/sigall.exp: b gen_WIND (timeout)
    FAIL: gdb.base/sigall.exp: get signal POLL (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to WIND (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGWIND stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_WIND (timeout)
    FAIL: gdb.base/sigall.exp: b gen_PHONE (timeout)
    FAIL: gdb.base/sigall.exp: get signal WIND (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to PHONE (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGPHONE stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_PHONE (timeout)
    FAIL: gdb.base/sigall.exp: b gen_WAITING (timeout)
    FAIL: gdb.base/sigall.exp: get signal PHONE (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to WAITING (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGWAITING stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_WAITING (timeout)
    FAIL: gdb.base/sigall.exp: b gen_LWP (timeout)
    FAIL: gdb.base/sigall.exp: get signal WAITING (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to LWP (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGLWP stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_LWP (timeout)
    FAIL: gdb.base/sigall.exp: b gen_DANGER (timeout)
    FAIL: gdb.base/sigall.exp: get signal LWP (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to DANGER (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGDANGER stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_DANGER (timeout)
    FAIL: gdb.base/sigall.exp: b gen_GRANT (timeout)
    FAIL: gdb.base/sigall.exp: get signal DANGER (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to GRANT (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGGRANT stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_GRANT (timeout)
    FAIL: gdb.base/sigall.exp: b gen_RETRACT (timeout)
    FAIL: gdb.base/sigall.exp: get signal GRANT (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to RETRACT (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGRETRACT stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_RETRACT (timeout)
    FAIL: gdb.base/sigall.exp: b gen_MSG (timeout)
    FAIL: gdb.base/sigall.exp: get signal RETRACT (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to MSG (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGMSG stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_MSG (timeout)
    FAIL: gdb.base/sigall.exp: b gen_SOUND (timeout)
    FAIL: gdb.base/sigall.exp: get signal MSG (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to SOUND (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGSOUND stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_SOUND (timeout)
    FAIL: gdb.base/sigall.exp: b gen_SAK (timeout)
    FAIL: gdb.base/sigall.exp: get signal SOUND (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to SAK (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGSAK stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_SAK (timeout)
    FAIL: gdb.base/sigall.exp: b gen_PRIO (timeout)
    FAIL: gdb.base/sigall.exp: get signal SAK (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to PRIO (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGPRIO stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_PRIO (timeout)
    FAIL: gdb.base/sigall.exp: b gen_33 (timeout)
    FAIL: gdb.base/sigall.exp: get signal PRIO (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 33 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG33 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_33 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_34 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 33 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 34 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG34 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_34 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_35 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 34 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 35 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG35 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_35 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_36 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 35 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 36 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG36 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_36 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_37 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 36 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 37 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG37 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_37 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_38 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 37 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 38 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG38 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_38 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_39 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 38 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 39 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG39 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_39 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_40 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 39 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 40 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG40 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_40 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_41 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 40 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 41 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG41 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_41 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_42 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 41 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 42 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG42 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_42 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_43 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 42 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 43 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG43 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_43 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_44 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 43 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 44 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG44 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_44 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_45 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 44 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 45 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG45 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_45 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_46 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 45 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 46 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG46 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_46 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_47 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 46 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 47 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG47 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_47 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_48 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 47 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 48 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG48 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_48 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_49 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 48 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 49 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG49 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_49 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_50 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 49 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 50 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG50 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_50 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_51 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 50 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 51 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG51 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_51 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_52 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 51 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 52 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG52 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_52 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_53 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 52 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 53 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG53 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_53 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_54 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 53 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 54 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG54 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_54 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_55 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 54 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 55 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG55 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_55 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_56 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 55 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 56 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG56 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_56 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_57 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 56 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 57 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG57 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_57 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_58 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 57 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 58 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG58 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_58 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_59 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 58 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 59 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG59 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_59 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_60 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 59 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 60 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG60 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_60 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_61 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 60 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 61 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG61 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_61 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_62 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 61 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 62 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG62 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_62 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_63 (timeout)
    FAIL: gdb.base/sigall.exp: get signal 62 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to 63 (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIG63 stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_63 (timeout)
    FAIL: gdb.base/sigall.exp: b gen_TERM (timeout)
    FAIL: gdb.base/sigall.exp: get signal 63 (eof or timeout)
    FAIL: gdb.base/sigall.exp: advance to TERM (eof or timeout)
    FAIL: gdb.base/sigall.exp: handle SIGTERM stop print (timeout)
    FAIL: gdb.base/sigall.exp: b handle_TERM (timeout)
    FAIL: gdb.base/sigall.exp: get signal TERM (timeout)
    FAIL: gdb.base/sigall.exp: send signal TERM (timeout)
    FAIL: gdb.base/sigall.exp: continue until exit at continue to sigall exit (timeout)
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/setshow.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/unwindonsignal.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/structs3.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/page.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/pc-fp.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/step-bt.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/solib-overlap.exp ...
    sh: prelink: not found
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/siginfo-addr.exp ...
    gdb compile failed, ../../../HEAD/src/gdb/testsuite/gdb.base/siginfo-addr.c: In function 'main':
    ../../../HEAD/src/gdb/testsuite/gdb.base/siginfo-addr.c:58: error: 'SA_SIGINFO' undeclared (first use in this function)
    ../../../HEAD/src/gdb/testsuite/gdb.base/siginfo-addr.c:58: error: (Each undeclared identifier is reported only once
    ../../../HEAD/src/gdb/testsuite/gdb.base/siginfo-addr.c:58: error: for each function it appears in.)
    Running ../../../HEAD/src/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 ../../../HEAD/src/gdb/testsuite/gdb.base/structs.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/subst.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/step-test.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/step-line.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/source.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/recurse.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/regs.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/type-opaque.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/ptype.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/relativedebug.exp ...
    FAIL: gdb.base/relativedebug.exp: pause found in backtrace
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/remotetimeout.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/until.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/pointers.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/ptr-typedef.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/readline.exp ...
    FAIL: gdb.base/readline.exp: Simple operate-and-get-next - C-o for p 1
    FAIL: gdb.base/readline.exp: operate-and-get-next with secondary prompt - send if 1 > 0
    FAIL: gdb.base/readline.exp: print 42 (timeout)
    FAIL: gdb.base/readline.exp: arrow keys with secondary prompt (timeout)
    ERROR: (timeout) GDB never initialized after 10 seconds.
    ERROR: no fileid for www2
    ERROR: no fileid for www2
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/watchpoint-hw.exp ...
    ERROR: (timeout) GDB never initialized after 10 seconds.
    ERROR: no fileid for www2
    ERROR: no fileid for www2
    ERROR: no fileid for www2
    ERROR: couldn't load /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/gdb.base/watchpoint-hw into /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb (timed out).
    ERROR: no fileid for www2
    ERROR: Couldn't send watch watchee to GDB.
    ERROR: no fileid for www2
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/signull.exp ...
    ERROR: (timeout) GDB never initialized after 10 seconds.
    ERROR: no fileid for www2
    ERROR: no fileid for www2
    ERROR: no fileid for www2
    ERROR: couldn't load /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/gdb.base/signull into /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb (timed out).
    ERROR: no fileid for www2
    ERROR: Delete all breakpoints in delete_breakpoints (timeout)
    ERROR: no fileid for www2
    ERROR: no fileid for www2
    ERROR: no fileid for www2
    ERROR: Couldn't send set test = code_entry_point to GDB.
    ERROR: no fileid for www2
    ERROR: Couldn't send continue to GDB.
    ERROR: no fileid for www2
    ERROR: no fileid for www2
    ERROR: Couldn't send break bowler to GDB.
    ERROR: no fileid for www2
    ERROR: Couldn't send break keeper to GDB.
    ERROR: no fileid for www2
    ERROR: Couldn't send handle SIGSEGV to GDB.
    ERROR: no fileid for www2
    ERROR: Couldn't send handle SIGBUS to GDB.
    ERROR: no fileid for www2
    ERROR: Couldn't send continue to GDB.
    ERROR: no fileid for www2
    ERROR: Couldn't send set test = data_read to GDB.
    ERROR: no fileid for www2
    ERROR: Couldn't send continue to GDB.
    ERROR: no fileid for www2
    ERROR: Couldn't send backtrace to GDB.
    ERROR: no fileid for www2
    ERROR: Couldn't send continue to GDB.
    ERROR: no fileid for www2
    ERROR: Couldn't send backtrace to GDB.
    ERROR: no fileid for www2
    ERROR: Couldn't send continue to GDB.
    ERROR: no fileid for www2
    ERROR: Couldn't send set test = data_write to GDB.
    ERROR: no fileid for www2
    ERROR: Couldn't send continue to GDB.
    ERROR: no fileid for www2
    ERROR: Couldn't send backtrace to GDB.
    ERROR: no fileid for www2
    ERROR: Couldn't send continue to GDB.
    ERROR: no fileid for www2
    ERROR: Couldn't send backtrace to GDB.
    ERROR: no fileid for www2
    ERROR: Couldn't send continue to GDB.
    ERROR: no fileid for www2
    ERROR: Couldn't send set test = code_entry_point to GDB.
    ERROR: no fileid for www2
    ERROR: Couldn't send continue to GDB.
    ERROR: no fileid for www2
    ERROR: Couldn't send backtrace to GDB.
    ERROR: no fileid for www2
    ERROR: Couldn't send continue to GDB.
    ERROR: no fileid for www2
    ERROR: Couldn't send backtrace to GDB.
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/so-indr-cl.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/psymtab.exp ...
    ERROR: (timeout) GDB never initialized after 10 seconds.
    ERROR: no fileid for www2
    ERROR: no fileid for www2
    ERROR: no fileid for www2
    ERROR: couldn't load /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/gdb.base/psymtab into /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb (timed out).
    ERROR: no fileid for www2
    ERROR: Couldn't send set breakpoint pending off to GDB.
    ERROR: no fileid for www2
    ERROR: Couldn't send break zzz::dummy to GDB.
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/sect-cmd.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/sepsymtab.exp ...
    ERROR: (timeout) GDB never initialized after 10 seconds.
    ERROR: no fileid for www2
    ERROR: no fileid for www2
    ERROR: no fileid for www2
    ERROR: couldn't load /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/gdb.base/sepsymtab into /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb (timed out).
    ERROR: no fileid for www2
    ERROR: Couldn't send info sym main to GDB.
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/unload.exp ...
    ERROR: (timeout) GDB never initialized after 10 seconds.
    ERROR: no fileid for www2
    ERROR: no fileid for www2
    ERROR: no fileid for www2
    ERROR: couldn't load /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/gdb.base/unload into /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb (timed out).
    ERROR: no fileid for www2
    ERROR: Couldn't send break shrfunc1 to GDB.
    ERROR: no fileid for www2
    ERROR: Couldn't send info break to GDB.
    ERROR: no fileid for www2
    ERROR: no fileid for www2
    ERROR: Couldn't send continue to GDB.
    ERROR: no fileid for www2
    ERROR: no fileid for www2
    ERROR: Couldn't send continue to GDB.
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/twice.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/nodebug.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/remote.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/sigchld.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/whatis.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/pie-support.exp ...
    FAIL: gdb.base/pie-support.exp: correctly detected PIE binary
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/solib-disc.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/sigbpt.exp ...
    FAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler (timeout)
    FAIL: gdb.base/sigbpt.exp: (timeout) rerun to main
    FAIL: gdb.base/sigbpt.exp: stepi bp before segv; pass SIGSEGV (timeout)
    FAIL: gdb.base/sigbpt.exp: stepi bp before segv; continue to keeper (timeout)
    FAIL: gdb.base/sigbpt.exp: stepi bp before segv; nopass SIGSEGV (timeout)
    FAIL: gdb.base/sigbpt.exp: stepi bp before segv; set breakpoint 0 of 1 (timeout)
    FAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler (timeout)
    FAIL: gdb.base/sigbpt.exp: stepi bp before segv; clear breakpoint 0 of 1 (timeout)
    FAIL: gdb.base/sigbpt.exp: (timeout) rerun to main
    FAIL: gdb.base/sigbpt.exp: stepi bp at segv; pass SIGSEGV (timeout)
    FAIL: gdb.base/sigbpt.exp: stepi bp at segv; continue to keeper (timeout)
    FAIL: gdb.base/sigbpt.exp: stepi bp at segv; nopass SIGSEGV (timeout)
    FAIL: gdb.base/sigbpt.exp: stepi bp at segv; set breakpoint 0 of 1 (timeout)
    FAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler (timeout)
    FAIL: gdb.base/sigbpt.exp: stepi bp at segv; clear breakpoint 0 of 1 (timeout)
    FAIL: gdb.base/sigbpt.exp: (timeout) rerun to main
    FAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; pass SIGSEGV (timeout)
    FAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; continue to keeper (timeout)
    FAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; nopass SIGSEGV (timeout)
    FAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; set breakpoint 0 of 2 (timeout)
    FAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; set breakpoint 1 of 2 (timeout)
    FAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler (timeout)
    FAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; clear breakpoint 0 of 2 (timeout)
    FAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; clear breakpoint 1 of 2 (timeout)
    FAIL: gdb.base/sigbpt.exp: (timeout) rerun to main
    FAIL: gdb.base/sigbpt.exp: cont; pass SIGSEGV (timeout)
    FAIL: gdb.base/sigbpt.exp: cont; continue to keeper (timeout)
    FAIL: gdb.base/sigbpt.exp: cont; nopass SIGSEGV (timeout)
    FAIL: gdb.base/sigbpt.exp: cont; set breakpoint 0  of 1 (timeout)
    FAIL: gdb.base/sigbpt.exp: cont; continue to breakpoint at fault (timeout)
    FAIL: gdb.base/sigbpt.exp: cont; stepi fault (timeout)
    FAIL: gdb.base/sigbpt.exp: cont; clear breakpoint 0 of 1 (timeout)
    FAIL: gdb.base/sigbpt.exp: (timeout) rerun to main
    FAIL: gdb.base/sigbpt.exp: cont bp after segv; pass SIGSEGV (timeout)
    FAIL: gdb.base/sigbpt.exp: cont bp after segv; continue to keeper (timeout)
    FAIL: gdb.base/sigbpt.exp: cont bp after segv; nopass SIGSEGV (timeout)
    FAIL: gdb.base/sigbpt.exp: cont bp after segv; set breakpoint 0  of 2 (timeout)
    FAIL: gdb.base/sigbpt.exp: cont bp after segv; set breakpoint 1  of 2 (timeout)
    FAIL: gdb.base/sigbpt.exp: cont bp after segv; continue to breakpoint at fault (timeout)
    FAIL: gdb.base/sigbpt.exp: cont bp after segv; stepi fault (timeout)
    FAIL: gdb.base/sigbpt.exp: cont bp after segv; clear breakpoint 0 of 2 (timeout)
    FAIL: gdb.base/sigbpt.exp: cont bp after segv; clear breakpoint 1 of 2 (timeout)
    FAIL: gdb.base/sigbpt.exp: (timeout) rerun to main
    FAIL: gdb.base/sigbpt.exp: cont bp before and after segv; pass SIGSEGV (timeout)
    FAIL: gdb.base/sigbpt.exp: cont bp before and after segv; continue to keeper (timeout)
    FAIL: gdb.base/sigbpt.exp: cont bp before and after segv; nopass SIGSEGV (timeout)
    FAIL: gdb.base/sigbpt.exp: cont bp before and after segv; set breakpoint 0  of 3 (timeout)
    FAIL: gdb.base/sigbpt.exp: cont bp before and after segv; set breakpoint 1  of 3 (timeout)
    FAIL: gdb.base/sigbpt.exp: cont bp before and after segv; set breakpoint 2  of 3 (timeout)
    FAIL: gdb.base/sigbpt.exp: cont bp before and after segv; continue to breakpoint at fault (timeout)
    FAIL: gdb.base/sigbpt.exp: cont bp before and after segv; stepi fault (timeout)
    FAIL: gdb.base/sigbpt.exp: cont bp before and after segv; clear breakpoint 0 of 3 (timeout)
    FAIL: gdb.base/sigbpt.exp: cont bp before and after segv; clear breakpoint 1 of 3 (timeout)
    FAIL: gdb.base/sigbpt.exp: cont bp before and after segv; clear breakpoint 2 of 3 (timeout)
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/scope.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/reread.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/value-double-free.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/solib-display.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/sigrepeat.exp ...
    FAIL: gdb.base/sigrepeat.exp: next
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/watch_thread_num.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/prelink.exp ...
    sh: prelink: not found
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/overlays.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/step-break.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/watchpoint-solib.exp ...
    FAIL: gdb.base/watchpoint-solib.exp: continue to foo (the program exited)
    FAIL: gdb.base/watchpoint-solib.exp: set watchpoint on g
    FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit (the program is no longer running)
    FAIL: gdb.base/watchpoint-solib.exp: continue to foo again (the program exited)
    FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again (the program is no longer running)
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/stack-checking.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.base/sigstep.exp ...
    FAIL: gdb.base/sigstep.exp: backtrace for nexti (pattern 2)
    FAIL: gdb.base/sigstep.exp: step from handler; continue to handler (timeout)
    FAIL: gdb.base/sigstep.exp: step from handler; leave handler (timeout)
    FAIL: gdb.base/sigstep.exp: stepi from handleri; continue to handler (timeout)
    FAIL: gdb.base/sigstep.exp: stepi from handleri; leave handler (timeout)
    FAIL: gdb.base/sigstep.exp: stepi from handleri; leave signal trampoline (timeout)
    FAIL: gdb.base/sigstep.exp: next from handler; continue to handler (timeout)
    FAIL: gdb.base/sigstep.exp: next from handler; leave handler (timeout)
    FAIL: gdb.base/sigstep.exp: nexti from handleri; continue to handler (timeout)
    FAIL: gdb.base/sigstep.exp: nexti from handleri; leave handler (timeout)
    FAIL: gdb.base/sigstep.exp: nexti from handleri; leave signal trampoline (timeout)
    FAIL: gdb.base/sigstep.exp: finish from handleri; continue to handler (timeout)
    FAIL: gdb.base/sigstep.exp: finish from handleri; leave handler (timeout)
    FAIL: gdb.base/sigstep.exp: finish from handleri; leave signal trampoline (timeout)
    FAIL: gdb.base/sigstep.exp: return from handleri; continue to handler (timeout)
    FAIL: gdb.base/sigstep.exp: return from handleri; leave handler (timeout)
    FAIL: gdb.base/sigstep.exp: return from handleri; leave signal trampoline (timeout)
    FAIL: gdb.base/sigstep.exp: Set done as return will have skipped it (timeout)
    ERROR: Delete all breakpoints in delete_breakpoints (timeout)
    FAIL: gdb.base/sigstep.exp: break 79 (timeout)
    FAIL: gdb.base/sigstep.exp: step to handler; resync (timeout)
    FAIL: gdb.base/sigstep.exp: step to handler; advance to infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: step to handler; break handler (timeout)
    FAIL: gdb.base/sigstep.exp: step to handler; performing step (timeout)
    FAIL: gdb.base/sigstep.exp: step to handler; clear handler (timeout)
    FAIL: gdb.base/sigstep.exp: next to handler; resync (timeout)
    FAIL: gdb.base/sigstep.exp: next to handler; advance to infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: next to handler; break handler (timeout)
    FAIL: gdb.base/sigstep.exp: next to handler; performing next (timeout)
    FAIL: gdb.base/sigstep.exp: next to handler; clear handler (timeout)
    FAIL: gdb.base/sigstep.exp: continue to handler; resync (timeout)
    FAIL: gdb.base/sigstep.exp: continue to handler; advance to infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: continue to handler; break handler (timeout)
    FAIL: gdb.base/sigstep.exp: continue to handler; performing continue (timeout)
    FAIL: gdb.base/sigstep.exp: continue to handler; clear handler (timeout)
    FAIL: gdb.base/sigstep.exp: step to handler entry; resync (timeout)
    FAIL: gdb.base/sigstep.exp: step to handler entry; advance to infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: step to handler entry; break handler (timeout)
    FAIL: gdb.base/sigstep.exp: step to handler entry; performing step (timeout)
    FAIL: gdb.base/sigstep.exp: step to handler entry; clear handler (timeout)
    FAIL: gdb.base/sigstep.exp: next to handler entry; resync (timeout)
    FAIL: gdb.base/sigstep.exp: next to handler entry; advance to infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: next to handler entry; break handler (timeout)
    FAIL: gdb.base/sigstep.exp: next to handler entry; performing next (timeout)
    FAIL: gdb.base/sigstep.exp: next to handler entry; clear handler (timeout)
    FAIL: gdb.base/sigstep.exp: continue to handler entry; resync (timeout)
    FAIL: gdb.base/sigstep.exp: continue to handler entry; advance to infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: continue to handler entry; break handler (timeout)
    FAIL: gdb.base/sigstep.exp: continue to handler entry; performing continue (timeout)
    FAIL: gdb.base/sigstep.exp: continue to handler entry; clear handler (timeout)
    FAIL: gdb.base/sigstep.exp: step over handler; resync (timeout)
    FAIL: gdb.base/sigstep.exp: step over handler; advance to infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: step over handler; performing step (timeout)
    FAIL: gdb.base/sigstep.exp: next over handler; resync (timeout)
    FAIL: gdb.base/sigstep.exp: next over handler; advance to infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: next over handler; performing next (timeout)
    FAIL: gdb.base/sigstep.exp: continue over handler; resync (timeout)
    FAIL: gdb.base/sigstep.exp: continue over handler; advance to infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: continue over handler; performing continue (timeout)
    FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler; resync (timeout)
    FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler; break infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler; break handler (timeout)
    FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler; continue to infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler; performing step (timeout)
    FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler; clear infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler; clear handler (timeout)
    FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler; resync (timeout)
    FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler; break infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler; break handler (timeout)
    FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler; continue to infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler; performing next (timeout)
    FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler; clear infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler; clear handler (timeout)
    FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler; resync (timeout)
    FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler; break infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler; break handler (timeout)
    FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler; continue to infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler; performing continue (timeout)
    FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler; clear infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler; clear handler (timeout)
    FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler entry; resync (timeout)
    FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler entry; break infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler entry; break handler (timeout)
    FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler entry; continue to infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler entry; performing step (timeout)
    FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler entry; clear infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler entry; clear handler (timeout)
    FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler entry; resync (timeout)
    FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler entry; break infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler entry; break handler (timeout)
    FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler entry; continue to infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler entry; performing next (timeout)
    FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler entry; clear infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler entry; clear handler (timeout)
    FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler entry; resync (timeout)
    FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler entry; break infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler entry; break handler (timeout)
    FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler entry; continue to infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler entry; performing continue (timeout)
    FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler entry; clear infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler entry; clear handler (timeout)
    FAIL: gdb.base/sigstep.exp: step on breakpoint, skip handler; resync (timeout)
    FAIL: gdb.base/sigstep.exp: step on breakpoint, skip handler; break infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: step on breakpoint, skip handler; continue to infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: step on breakpoint, skip handler; performing step (timeout)
    FAIL: gdb.base/sigstep.exp: step on breakpoint, skip handler; clear infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: next on breakpoint, skip handler; resync (timeout)
    FAIL: gdb.base/sigstep.exp: next on breakpoint, skip handler; break infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: next on breakpoint, skip handler; continue to infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: next on breakpoint, skip handler; performing next (timeout)
    FAIL: gdb.base/sigstep.exp: next on breakpoint, skip handler; clear infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: continue on breakpoint, skip handler; resync (timeout)
    FAIL: gdb.base/sigstep.exp: continue on breakpoint, skip handler; break infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: continue on breakpoint, skip handler; continue to infinite loop (timeout)
    FAIL: gdb.base/sigstep.exp: continue on breakpoint, skip handler; performing continue (timeout)
    FAIL: gdb.base/sigstep.exp: continue on breakpoint, skip handler; clear infinite loop (timeout)
    
                    === gdb Summary ===
    
    # of expected passes            3181
    # of unexpected failures        566
    # of known failures             5
    # of unresolved testcases       40
    # of untested testcases         3
    /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb version  6.8.50.20090914-cvs -nw -nx 
    
    make[4]: *** [check-gdb.base2] Error 1
    rootme=`pwd`; export rootme; srcdir=../../../HEAD/src/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest --directory=gdb.ada --outdir=gdb.ada 
    Test Run By tschwinge on Fri Nov 13 12:32:22 2009
    Native configuration is i386-unknown-gnu0.3
    
                    === gdb tests ===
    
    Schedule of variations:
        unix
    
    Running target unix
    Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
    Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
    Using ../../../HEAD/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/array_bounds.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/array_return.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/array_subscript_addr.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/arrayidx.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/arrayparam.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/arrayptr.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/assign_1.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/atomic_enum.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/boolean_expr.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/catch_ex.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/char_param.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/complete.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/exec_changed.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/exprs.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/fixed_cmp.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/fixed_points.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/formatted_ref.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/frame_args.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/fun_addr.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/fun_in_declare.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/funcall_param.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/homonym.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/int_deref.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/interface.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/lang_switch.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/mod_from_name.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/nested.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/null_array.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/null_record.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/packed_array.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/packed_tagged.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/print_chars.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/print_pc.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/ptype_arith_binop.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/ptype_field.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/ref_param.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/ref_tick_size.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/start.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/str_ref_cmp.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/sym_print_name.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/taft_type.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/tagged.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/tasks.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/tick_last_segv.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/type_coercion.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/uninitialized_vars.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/variant_record_packed_array.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.ada/watch_arg.exp ...
    
                    === gdb Summary ===
    
    # of expected passes            8
    # of untested testcases         1
    # of unsupported tests          45
    /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb version  6.8.50.20090914-cvs -nw -nx 
    
    rootme=`pwd`; export rootme; srcdir=../../../HEAD/src/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest --directory=gdb.arch --outdir=gdb.arch 
    Test Run By tschwinge on Fri Nov 13 12:33:06 2009
    Native configuration is i386-unknown-gnu0.3
    
                    === gdb tests ===
    
    Schedule of variations:
        unix
    
    Running target unix
    Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
    Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
    Using ../../../HEAD/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/alpha-step.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/altivec-abi.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/altivec-regs.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/amd64-disp-step.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/amd64-i386-address.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/e500-abi.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/e500-prologue.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/e500-regs.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/gdb1291.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/gdb1431.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/gdb1558.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/i386-bp_permanent.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/i386-disp-step.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/i386-gnu-cfi.exp ...
    FAIL: gdb.arch/i386-gnu-cfi.exp: backtrace
    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 ../../../HEAD/src/gdb/testsuite/gdb.arch/i386-permbkpt.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/i386-prologue.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/i386-signal.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/i386-size-overlap.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/i386-size.exp ...
    Running ../../../HEAD/src/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 ../../../HEAD/src/gdb/testsuite/gdb.arch/i386-unwind.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/iwmmxt-regs.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/pa-nullify.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/powerpc-aix-prologue.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/powerpc-d128-regs.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/powerpc-prologue.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/ppc-dfp.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/ppc-fp.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/ppc64-atomic-inst.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/spu-info.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/thumb-prologue.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.arch/vsx-regs.exp ...
    
                    === gdb Summary ===
    
    # of expected passes            69
    # of unexpected failures        27
    # of known failures             1
    /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb version  6.8.50.20090914-cvs -nw -nx 
    
    make[4]: *** [check-gdb.arch] Error 1
    rootme=`pwd`; export rootme; srcdir=../../../HEAD/src/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest --directory=gdb.asm --outdir=gdb.asm 
    Test Run By tschwinge on Fri Nov 13 12:35:00 2009
    Native configuration is i386-unknown-gnu0.3
    
                    === gdb tests ===
    
    Schedule of variations:
        unix
    
    Running target unix
    Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
    Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
    Using ../../../HEAD/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
    Running ../../../HEAD/src/gdb/testsuite/gdb.asm/asm-source.exp ...
    FAIL: gdb.asm/asm-source.exp: info target (timeout)
    FAIL: gdb.asm/asm-source.exp: info symbol (timeout)
    FAIL: gdb.asm/asm-source.exp: list (timeout)
    FAIL: gdb.asm/asm-source.exp: search (timeout)
    FAIL: gdb.asm/asm-source.exp: f in foo2 (timeout)
    FAIL: gdb.asm/asm-source.exp: n in foo2 (timeout)
    FAIL: gdb.asm/asm-source.exp: bt ALL in foo2 (timeout)
    FAIL: gdb.asm/asm-source.exp: bt 2 in foo2 (timeout)
    FAIL: gdb.asm/asm-source.exp: s 2 (timeout)
    FAIL: gdb.asm/asm-source.exp: n 2 (timeout)
    FAIL: gdb.asm/asm-source.exp: bt 3 in foo3 (timeout)
    FAIL: gdb.asm/asm-source.exp: info source asmsrc1.s (timeout)
    FAIL: gdb.asm/asm-source.exp: finish from foo3 (timeout)
    FAIL: gdb.asm/asm-source.exp: info source asmsrc2.s (timeout)
    FAIL: gdb.asm/asm-source.exp: info sources (timeout)
    FAIL: gdb.asm/asm-source.exp: info line (timeout)
    FAIL: gdb.asm/asm-source.exp: next over foo3 (timeout)
    FAIL: gdb.asm/asm-source.exp: return from foo2 (timeout)
    FAIL: gdb.asm/asm-source.exp: look at global variable (timeout)
    FAIL: gdb.asm/asm-source.exp: x/i &globalvar (timeout)
    FAIL: gdb.asm/asm-source.exp: disassem &globalvar &globalvar+1 (timeout)
    FAIL: gdb.asm/asm-source.exp: look at static variable (timeout)
    FAIL: gdb.asm/asm-source.exp: x/i &staticvar (timeout)
    FAIL: gdb.asm/asm-source.exp: disassem &staticvar &staticvar+1 (timeout)
    FAIL: gdb.asm/asm-source.exp: look at static function (timeout)
    
                    === gdb Summary ===
    
    # of expected passes            3
    # of unexpected failures        25
    /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb version  6.8.50.20090914-cvs -nw -nx 
    
    make[4]: *** [check-gdb.asm] Error 1
    rootme=`pwd`; export rootme; srcdir=../../../HEAD/src/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest --directory=gdb.cell --outdir=gdb.cell 
    Test Run By tschwinge on Fri Nov 13 13:00:35 2009
    Native configuration is i386-unknown-gnu0.3
    
                    === gdb tests ===
    
    Schedule of variations:
        unix
    
    Running target unix
    Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
    Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
    Using ../../../HEAD/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
    Running ../../../HEAD/src/gdb/testsuite/gdb.cell/arch.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cell/break.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cell/bt.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cell/core.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cell/data.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cell/ea-cache.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cell/ea-standalone.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cell/ea-test.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cell/f-regs.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cell/gcore.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cell/mem-access.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cell/ptype.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cell/registers.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cell/sizeof.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cell/solib-symbol.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cell/solib.exp ...
    
                    === gdb Summary ===
    
    /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb version  6.8.50.20090914-cvs -nw -nx 
    
    rootme=`pwd`; export rootme; srcdir=../../../HEAD/src/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest --directory=gdb.cp --outdir=gdb.cp 
    Test Run By tschwinge on Fri Nov 13 13:00:43 2009
    Native configuration is i386-unknown-gnu0.3
    
                    === gdb tests ===
    
    Schedule of variations:
        unix
    
    Running target unix
    Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
    Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
    Using ../../../HEAD/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/abstract-origin.exp ...
    FAIL: gdb.cp/abstract-origin.exp: p problem
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/ambiguous.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/annota2.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/annota3.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/anon-union.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/arg-reference.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/bool.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/breakpoint.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/bs15503.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/call-c.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/casts.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/class2.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/classes.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/cp-relocate.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/cpcompletion.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/cplusfuncs.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/ctti.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/demangle.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/derivation.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/exception.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/expand-sals.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/formatted-ref.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/gdb1355.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/gdb2384.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/gdb2495.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/hang.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/inherit.exp ...
    FAIL: gdb.cp/inherit.exp: ptype tagless struct
    FAIL: gdb.cp/inherit.exp: ptype variable of type tagless struct
    FAIL: gdb.cp/inherit.exp: print type of anonymous union // unrecognized line type 1: class_with_anon_union::<anonymous union>;
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/local.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/m-data.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/m-static.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/maint.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/mb-ctor.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/mb-inline.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/mb-templates.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/member-ptr.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/method.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/method2.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/misc.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/namespace-nested-import.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/namespace-using.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/namespace.exp ...
    FAIL: gdb.cp/namespace.exp: print 'F::cXf'
    FAIL: gdb.cp/namespace.exp: print F::cXf
    FAIL: gdb.cp/namespace.exp: print F::cXfX
    FAIL: gdb.cp/namespace.exp: print 'G::Xg'
    FAIL: gdb.cp/namespace.exp: print G::Xg
    FAIL: gdb.cp/namespace.exp: print G::XgX
    FAIL: gdb.cp/namespace.exp: print cXOtherFile
    FAIL: gdb.cp/namespace.exp: print XOtherFile
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/overload.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/ovldbreak.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/pass-by-ref.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/pr-1023.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/pr-1210.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/pr-574.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/pr9631.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/printmethod.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/psmang.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/punctuator.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/ref-params.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/ref-types.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/rtti.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/templates.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/try_catch.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/userdef.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.cp/virtfunc.exp ...
    
                    === gdb Summary ===
    
    # of expected passes            2005
    # of unexpected failures        12
    # of known failures             22
    /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb version  6.8.50.20090914-cvs -nw -nx 
    
    make[4]: *** [check-gdb.cp] Error 1
    rootme=`pwd`; export rootme; srcdir=../../../HEAD/src/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest --directory=gdb.disasm --outdir=gdb.disasm 
    Test Run By tschwinge on Fri Nov 13 13:20:04 2009
    Native configuration is i386-unknown-gnu0.3
    
                    === gdb tests ===
    
    Schedule of variations:
        unix
    
    Running target unix
    Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
    Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
    Using ../../../HEAD/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
    Running ../../../HEAD/src/gdb/testsuite/gdb.disasm/am33.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.disasm/h8300s.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.disasm/hppa.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.disasm/mn10300.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.disasm/sh3.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.disasm/t01_mov.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.disasm/t02_mova.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.disasm/t03_add.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.disasm/t04_sub.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.disasm/t05_cmp.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.disasm/t06_ari2.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.disasm/t07_ari3.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.disasm/t08_or.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.disasm/t09_xor.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.disasm/t10_and.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.disasm/t11_logs.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.disasm/t12_bit.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.disasm/t13_otr.exp ...
    
                    === gdb Summary ===
    
    /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb version  6.8.50.20090914-cvs -nw -nx 
    
    rootme=`pwd`; export rootme; srcdir=../../../HEAD/src/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest --directory=gdb.dwarf2 --outdir=gdb.dwarf2 
    Test Run By tschwinge on Fri Nov 13 13:20:12 2009
    Native configuration is i386-unknown-gnu0.3
    
                    === gdb tests ===
    
    Schedule of variations:
        unix
    
    Running target unix
    Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
    Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
    Using ../../../HEAD/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
    Running ../../../HEAD/src/gdb/testsuite/gdb.dwarf2/callframecfa.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.dwarf2/dup-psym.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.dwarf2/dw2-basic.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.dwarf2/dw2-compressed.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.dwarf2/dw2-cu-size.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.dwarf2/dw2-inheritance.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.dwarf2/dw2-intercu.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.dwarf2/dw2-intermix.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.dwarf2/dw2-noloc.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.dwarf2/dw2-producer.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.dwarf2/dw2-ranges.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.dwarf2/dw2-ref-missing-frame.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.dwarf2/dw2-restore.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.dwarf2/dw2-strp.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.dwarf2/dw2-unresolved.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.dwarf2/mac-fileno.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.dwarf2/valop.exp ...
    
                    === gdb Summary ===
    
    # of expected passes            111
    /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb version  6.8.50.20090914-cvs -nw -nx 
    
    rootme=`pwd`; export rootme; srcdir=../../../HEAD/src/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest --directory=gdb.fortran --outdir=gdb.fortran 
    Test Run By tschwinge on Fri Nov 13 13:23:28 2009
    Native configuration is i386-unknown-gnu0.3
    
                    === gdb tests ===
    
    Schedule of variations:
        unix
    
    Running target unix
    Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
    Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
    Using ../../../HEAD/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
    Running ../../../HEAD/src/gdb/testsuite/gdb.fortran/array-element.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.fortran/complex.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.fortran/derived-type.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.fortran/exprs.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.fortran/module.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.fortran/subarray.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.fortran/types.exp ...
    
                    === gdb Summary ===
    
    # of expected passes            125
    # of untested testcases         5
    /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb version  6.8.50.20090914-cvs -nw -nx 
    
    rootme=`pwd`; export rootme; srcdir=../../../HEAD/src/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest --directory=gdb.gdb --outdir=gdb.gdb 
    Test Run By tschwinge on Fri Nov 13 13:24:02 2009
    Native configuration is i386-unknown-gnu0.3
    
                    === gdb tests ===
    
    Schedule of variations:
        unix
    
    Running target unix
    Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
    Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
    Using ../../../HEAD/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
    Running ../../../HEAD/src/gdb/testsuite/gdb.gdb/complaints.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.gdb/observer.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.gdb/selftest.exp ...
    FAIL: gdb.gdb/selftest.exp: backtrace through signal handler
    Running ../../../HEAD/src/gdb/testsuite/gdb.gdb/xfullpath.exp ...
    
                    === gdb Summary ===
    
    # of expected passes            165
    # of unexpected failures        1
    /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb version  6.8.50.20090914-cvs -nw -nx 
    
    make[4]: *** [check-gdb.gdb] Error 1
    rootme=`pwd`; export rootme; srcdir=../../../HEAD/src/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest --directory=gdb.java --outdir=gdb.java 
    Test Run By tschwinge on Fri Nov 13 13:26:31 2009
    Native configuration is i386-unknown-gnu0.3
    
                    === gdb tests ===
    
    Schedule of variations:
        unix
    
    Running target unix
    Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
    Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
    Using ../../../HEAD/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
    Running ../../../HEAD/src/gdb/testsuite/gdb.java/jmain.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.java/jmisc.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.java/jprint.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.java/jv-exp.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.java/jv-print.exp ...
    
                    === gdb Summary ===
    
    # of expected passes            49
    # of untested testcases         3
    /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb version  6.8.50.20090914-cvs -nw -nx 
    
    rootme=`pwd`; export rootme; srcdir=../../../HEAD/src/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest --directory=gdb.mi --outdir=gdb.mi 
    Test Run By tschwinge on Fri Nov 13 13:26:56 2009
    Native configuration is i386-unknown-gnu0.3
    
                    === gdb tests ===
    
    Schedule of variations:
        unix
    
    Running target unix
    Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
    Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
    Using ../../../HEAD/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/gdb2549.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/gdb669.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/gdb680.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/gdb701.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/gdb792.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-async.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-basics.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-break.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-cli.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-console.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-disassemble.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-eval.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-file-transfer.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-file.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-hack-cli.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-nonstop-exit.exp ...
    ERROR: mi-nonstop-exit.exp tests suppressed
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-nonstop.exp ...
    ERROR: mi-nonstop.exp tests suppressed
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-nsintrall.exp ...
    ERROR: mi-nsintrall.exp tests suppressed
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-nsmoribund.exp ...
    ERROR: mi-nsmoribund.exp tests suppressed
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-nsthrexec.exp ...
    ERROR: mi-nsthrexec.exp tests suppressed
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-pending.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-pthreads.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-read-memory.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-regs.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-return.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-simplerun.exp ...
    FAIL: gdb.mi/mi-simplerun.exp: continue to end (failed to resume)
    FAIL: gdb.mi/mi-simplerun.exp: continue to end (unknown output after running)
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-stack.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-stepi.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-syn-frame.exp ...
    FAIL: gdb.mi/mi-syn-frame.exp: list stack frames
    FAIL: gdb.mi/mi-syn-frame.exp: finished exec continue (unknown output after running)
    FAIL: gdb.mi/mi-syn-frame.exp: list stack frames (timeout)
    FAIL: gdb.mi/mi-syn-frame.exp: call inferior function which raises exception (timeout)
    FAIL: gdb.mi/mi-syn-frame.exp: backtrace from inferior function at exception (timeout)
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-until.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-var-block.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-var-child-f.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-var-child.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-var-cmd.exp ...
    FAIL: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: out of scope now
    FAIL: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: out of scope now, not changed
    FAIL: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: in scope now
    FAIL: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: in scope now, not changed
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-var-cp.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-var-display.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-var-invalidate.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi-watch.exp ...
    FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi2-basics.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi2-break.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi2-cli.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi2-console.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi2-disassemble.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi2-eval.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi2-file.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi2-hack-cli.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi2-pthreads.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi2-read-memory.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi2-regs.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi2-return.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi2-simplerun.exp ...
    FAIL: gdb.mi/mi2-simplerun.exp: continue to end (failed to resume)
    FAIL: gdb.mi/mi2-simplerun.exp: continue to end (unknown output after running)
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi2-stack.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi2-stepi.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi2-syn-frame.exp ...
    FAIL: gdb.mi/mi2-syn-frame.exp: list stack frames
    FAIL: gdb.mi/mi2-syn-frame.exp: finished exec continue (unknown output after running)
    FAIL: gdb.mi/mi2-syn-frame.exp: list stack frames (timeout)
    FAIL: gdb.mi/mi2-syn-frame.exp: call inferior function which raises exception (timeout)
    FAIL: gdb.mi/mi2-syn-frame.exp: backtrace from inferior function at exception (timeout)
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi2-until.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi2-var-block.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi2-var-child.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi2-var-cmd.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi2-var-display.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.mi/mi2-watch.exp ...
    FAIL: gdb.mi/mi2-watch.exp: hw: watchpoint trigger (unknown output after running)
    
    		=== gdb Summary ===
    
    # of expected passes		1460
    # of unexpected failures	20
    # of expected failures		28
    # of known failures		3
    # of unresolved testcases	5
    # of untested testcases		1
    # of unsupported tests		5
    /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb version  6.8.50.20090914-cvs -nw -nx 
    
    make[4]: *** [check-gdb.mi] Error 1
    rootme=`pwd`; export rootme; srcdir=../../../HEAD/src/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest --directory=gdb.modula2 --outdir=gdb.modula2 
    Test Run By tschwinge on Fri Nov 13 13:48:43 2009
    Native configuration is i386-unknown-gnu0.3
    
    		=== gdb tests ===
    
    Schedule of variations:
        unix
    
    Running target unix
    Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
    Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
    Using ../../../HEAD/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
    Running ../../../HEAD/src/gdb/testsuite/gdb.modula2/unbounded-array.exp ...
    
    		=== gdb Summary ===
    
    # of expected passes		8
    /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb version  6.8.50.20090914-cvs -nw -nx 
    
    rootme=`pwd`; export rootme; srcdir=../../../HEAD/src/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest --directory=gdb.objc --outdir=gdb.objc 
    Test Run By tschwinge on Fri Nov 13 13:48:56 2009
    Native configuration is i386-unknown-gnu0.3
    
    		=== gdb tests ===
    
    Schedule of variations:
        unix
    
    Running target unix
    Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
    Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
    Using ../../../HEAD/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
    Running ../../../HEAD/src/gdb/testsuite/gdb.objc/basicclass.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.objc/nondebug.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.objc/objcdecode.exp ...
    FAIL: gdb.objc/objcdecode.exp: continue after break on multiply defined symbol (GDB internal error)
    
    		=== gdb Summary ===
    
    # of expected passes		21
    # of unexpected failures	1
    # of known failures		1
    /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb version  6.8.50.20090914-cvs -nw -nx 
    
    make[4]: *** [check-gdb.objc] Error 1
    rootme=`pwd`; export rootme; srcdir=../../../HEAD/src/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest --directory=gdb.opt --outdir=gdb.opt 
    Test Run By tschwinge on Fri Nov 13 13:49:32 2009
    Native configuration is i386-unknown-gnu0.3
    
    		=== gdb tests ===
    
    Schedule of variations:
        unix
    
    Running target unix
    Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
    Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
    Using ../../../HEAD/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
    Running ../../../HEAD/src/gdb/testsuite/gdb.opt/clobbered-registers-O2.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.opt/inline-bt.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.opt/inline-cmds.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.opt/inline-locals.exp ...
    
    		=== gdb Summary ===
    
    # of expected passes		83
    # of expected failures		2
    # of known failures		1
    /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb version  6.8.50.20090914-cvs -nw -nx 
    
    rootme=`pwd`; export rootme; srcdir=../../../HEAD/src/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest --directory=gdb.pascal --outdir=gdb.pascal 
    Test Run By tschwinge on Fri Nov 13 13:50:44 2009
    Native configuration is i386-unknown-gnu0.3
    
    		=== gdb tests ===
    
    Schedule of variations:
        unix
    
    Running target unix
    Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
    Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
    Using ../../../HEAD/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
    Running ../../../HEAD/src/gdb/testsuite/gdb.pascal/floats.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.pascal/hello.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.pascal/integers.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.pascal/types.exp ...
    
    		=== gdb Summary ===
    
    # of expected passes		10
    # of known failures		1
    # of unsupported tests		3
    /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb version  6.8.50.20090914-cvs -nw -nx 
    
    rootme=`pwd`; export rootme; srcdir=../../../HEAD/src/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest --directory=gdb.python --outdir=gdb.python 
    Test Run By tschwinge on Fri Nov 13 13:50:57 2009
    Native configuration is i386-unknown-gnu0.3
    
    		=== gdb tests ===
    
    Schedule of variations:
        unix
    
    Running target unix
    Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
    Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
    Using ../../../HEAD/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
    Running ../../../HEAD/src/gdb/testsuite/gdb.python/py-cmd.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.python/py-frame.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.python/py-function.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.python/py-mi.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.python/py-prettyprint.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.python/py-template.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.python/py-value.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.python/python.exp ...
    
    		=== gdb Summary ===
    
    # of expected passes		284
    /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb version  6.8.50.20090914-cvs -nw -nx 
    
    rootme=`pwd`; export rootme; srcdir=../../../HEAD/src/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest --directory=gdb.reverse --outdir=gdb.reverse 
    Test Run By tschwinge on Fri Nov 13 13:54:17 2009
    Native configuration is i386-unknown-gnu0.3
    
    		=== gdb tests ===
    
    Schedule of variations:
        unix
    
    Running target unix
    Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
    Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
    Using ../../../HEAD/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
    Running ../../../HEAD/src/gdb/testsuite/gdb.reverse/break-reverse.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.reverse/consecutive-reverse.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.reverse/finish-reverse.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.reverse/i386-reverse.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.reverse/machinestate.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.reverse/sigall-reverse.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.reverse/solib-reverse.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.reverse/step-reverse.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.reverse/until-reverse.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.reverse/watch-reverse.exp ...
    
    		=== gdb Summary ===
    
    /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb version  6.8.50.20090914-cvs -nw -nx 
    
    rootme=`pwd`; export rootme; srcdir=../../../HEAD/src/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest --directory=gdb.server --outdir=gdb.server 
    Test Run By tschwinge on Fri Nov 13 13:54:23 2009
    Native configuration is i386-unknown-gnu0.3
    
    		=== gdb tests ===
    
    Schedule of variations:
        unix
    
    Running target unix
    Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
    Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
    Using ../../../HEAD/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
    Running ../../../HEAD/src/gdb/testsuite/gdb.server/ext-attach.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.server/ext-run.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.server/file-transfer.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.server/server-mon.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.server/server-run.exp ...
    
    		=== gdb Summary ===
    
    /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb version  6.8.50.20090914-cvs -nw -nx 
    
    rootme=`pwd`; export rootme; srcdir=../../../HEAD/src/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest --directory=gdb.stabs --outdir=gdb.stabs 
    Test Run By tschwinge on Fri Nov 13 13:54:29 2009
    Native configuration is i386-unknown-gnu0.3
    
    		=== gdb tests ===
    
    Schedule of variations:
        unix
    
    Running target unix
    Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
    Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
    Using ../../../HEAD/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
    Running ../../../HEAD/src/gdb/testsuite/gdb.stabs/exclfwd.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.stabs/weird.exp ...
    
    		=== gdb Summary ===
    
    # of expected passes		193
    # of expected failures		7
    /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb version  6.8.50.20090914-cvs -nw -nx 
    
    rootme=`pwd`; export rootme; srcdir=../../../HEAD/src/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest --directory=gdb.threads --outdir=gdb.threads 
    Test Run By tschwinge on Fri Nov 13 13:55:20 2009
    Native configuration is i386-unknown-gnu0.3
    
    		=== gdb tests ===
    
    Schedule of variations:
        unix
    
    Running target unix
    Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
    Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
    Using ../../../HEAD/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/attach-into-signal.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/attach-stopped.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/attachstop-mt.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/bp_in_thread.exp ...
    FAIL: gdb.threads/bp_in_thread.exp: run to noreturn
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/current-lwp-dead.exp ...
    Running ../../../HEAD/src/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 to end
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/fork-child-threads.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/fork-thread-pending.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/gcore-thread.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/hand-call-in-threads.exp ...
    FAIL: gdb.threads/hand-call-in-threads.exp: show scheduler locking on
    FAIL: gdb.threads/hand-call-in-threads.exp: hand call, thread 5 (timeout)
    FAIL: gdb.threads/hand-call-in-threads.exp: set confirm off (timeout)
    FAIL: gdb.threads/hand-call-in-threads.exp: prepare to discard hand call, thread 1 (timeout)
    FAIL: gdb.threads/hand-call-in-threads.exp: dummy stack frame number, thread 1
    FAIL: gdb.threads/hand-call-in-threads.exp: setting frame, thread 1 (timeout)
    FAIL: gdb.threads/hand-call-in-threads.exp: discard hand call, thread 1 (timeout)
    FAIL: gdb.threads/hand-call-in-threads.exp: prepare to discard hand call, thread 2 (timeout)
    FAIL: gdb.threads/hand-call-in-threads.exp: dummy stack frame number, thread 2
    FAIL: gdb.threads/hand-call-in-threads.exp: setting frame, thread 2 (timeout)
    FAIL: gdb.threads/hand-call-in-threads.exp: discard hand call, thread 2 (timeout)
    FAIL: gdb.threads/hand-call-in-threads.exp: prepare to discard hand call, thread 3 (timeout)
    FAIL: gdb.threads/hand-call-in-threads.exp: dummy stack frame number, thread 3
    FAIL: gdb.threads/hand-call-in-threads.exp: setting frame, thread 3 (timeout)
    FAIL: gdb.threads/hand-call-in-threads.exp: discard hand call, thread 3 (timeout)
    FAIL: gdb.threads/hand-call-in-threads.exp: prepare to discard hand call, thread 4 (timeout)
    FAIL: gdb.threads/hand-call-in-threads.exp: dummy stack frame number, thread 4
    FAIL: gdb.threads/hand-call-in-threads.exp: setting frame, thread 4 (timeout)
    FAIL: gdb.threads/hand-call-in-threads.exp: discard hand call, thread 4 (timeout)
    FAIL: gdb.threads/hand-call-in-threads.exp: prepare to discard hand call, thread 5 (timeout)
    FAIL: gdb.threads/hand-call-in-threads.exp: dummy stack frame number, thread 5
    FAIL: gdb.threads/hand-call-in-threads.exp: setting frame, thread 5 (timeout)
    FAIL: gdb.threads/hand-call-in-threads.exp: discard hand call, thread 5 (timeout)
    FAIL: gdb.threads/hand-call-in-threads.exp: all dummies popped (timeout)
    FAIL: gdb.threads/hand-call-in-threads.exp: disable scheduler locking (timeout)
    FAIL: gdb.threads/hand-call-in-threads.exp: show scheduler locking off (timeout)
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/interrupted-hand-call.exp ...
    FAIL: gdb.threads/interrupted-hand-call.exp: hand-call interrupted by signal in another thread
    FAIL: gdb.threads/interrupted-hand-call.exp: continue to program exit (timeout)
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/killed.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/linux-dp.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/manythreads.exp ...
    FAIL: gdb.threads/manythreads.exp: info threads
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/multi-create.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/pending-step.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/print-threads.exp ...
    FAIL: gdb.threads/print-threads.exp: Running threads (fast) (unknown output)
    FAIL: gdb.threads/print-threads.exp: Running threads (slow) (unknown output)
    FAIL: gdb.threads/print-threads.exp: Running threads (slow with kill breakpoint) (unknown output)
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/pthread_cond_wait.exp ...
    Running ../../../HEAD/src/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: continue until common routine run 15 times
    FAIL: gdb.threads/pthreads.exp: Stopped with a ^C (timeout)
    WARNING: Could not stop child with ^C; skipping rest of tests.
    
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/schedlock.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/sigthread.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/staticthreads.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/step.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/step2.exp ...
    Running ../../../HEAD/src/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 ../../../HEAD/src/gdb/testsuite/gdb.threads/thread-execl.exp ...
    FAIL: gdb.threads/thread-execl.exp: continue to thread start
    FAIL: gdb.threads/thread-execl.exp: get to main in new image
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/thread-specific.exp ...
    FAIL: gdb.threads/thread-specific.exp: continue to thread-specific breakpoint
    Running ../../../HEAD/src/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 to program exit (the program is no longer running)
    Running ../../../HEAD/src/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 ../../../HEAD/src/gdb/testsuite/gdb.threads/thread_events.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/threadapply.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/threxit-hop-specific.exp ...
    FAIL: gdb.threads/threxit-hop-specific.exp: continue to thread start
    FAIL: gdb.threads/threxit-hop-specific.exp: get past the thread specific breakpoint
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/tls-nodebug.exp ...
    FAIL: gdb.threads/tls-nodebug.exp: thread local storage
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/tls-shared.exp ...
    FAIL: gdb.threads/tls-shared.exp: print thread local storage variable
    Running ../../../HEAD/src/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: 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: selected thread: 1
    FAIL: gdb.threads/tls.exp: selected thread: 2
    FAIL: gdb.threads/tls.exp: selected thread: 3
    FAIL: gdb.threads/tls.exp: 8 thread local storage
    FAIL: gdb.threads/tls.exp: 8 another thread local storage
    FAIL: gdb.threads/tls.exp: 6 thread local storage
    FAIL: gdb.threads/tls.exp: 6 another thread local storage
    FAIL: gdb.threads/tls.exp: 7 thread local storage
    FAIL: gdb.threads/tls.exp: 7 another thread local storage
    FAIL: gdb.threads/tls.exp: mess at end
    FAIL: gdb.threads/tls.exp: running to spin in runto
    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 ../../../HEAD/src/gdb/testsuite/gdb.threads/watchthreads.exp ...
    FAIL: gdb.threads/watchthreads.exp: watch args[0]
    FAIL: gdb.threads/watchthreads.exp: watch args[1]
    FAIL: gdb.threads/watchthreads.exp: threaded watch loop
    FAIL: gdb.threads/watchthreads.exp: first watchpoint on args[0] hit
    FAIL: gdb.threads/watchthreads.exp: first watchpoint on args[1] hit
    FAIL: gdb.threads/watchthreads.exp: watchpoint on args[0] hit in thread
    FAIL: gdb.threads/watchthreads.exp: watchpoint on args[1] hit in thread
    FAIL: gdb.threads/watchthreads.exp: combination of threaded watchpoints = 30
    Running ../../../HEAD/src/gdb/testsuite/gdb.threads/watchthreads2.exp ...
    FAIL: gdb.threads/watchthreads2.exp: run to thread_started
    FAIL: gdb.threads/watchthreads2.exp: run to thread_started
    FAIL: gdb.threads/watchthreads2.exp: run to thread_started
    FAIL: gdb.threads/watchthreads2.exp: run to thread_started (the program is no longer running)
    FAIL: gdb.threads/watchthreads2.exp: all threads started
    
    		=== gdb Summary ===
    
    # of expected passes		172
    # of unexpected failures	93
    # of known failures		1
    # of unsupported tests		4
    /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb version  6.8.50.20090914-cvs -nw -nx 
    
    make[4]: *** [check-gdb.threads] Error 1
    rootme=`pwd`; export rootme; srcdir=../../../HEAD/src/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest --directory=gdb.trace --outdir=gdb.trace 
    Test Run By tschwinge on Fri Nov 13 14:16:00 2009
    Native configuration is i386-unknown-gnu0.3
    
    		=== gdb tests ===
    
    Schedule of variations:
        unix
    
    Running target unix
    Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
    Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
    Using ../../../HEAD/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
    Running ../../../HEAD/src/gdb/testsuite/gdb.trace/actions.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.trace/backtrace.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.trace/circ.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.trace/collection.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.trace/deltrace.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.trace/infotrace.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.trace/limits.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.trace/packetlen.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.trace/passc-dyn.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.trace/passcount.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.trace/report.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.trace/save-trace.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.trace/tfind.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.trace/tracecmd.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.trace/while-dyn.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.trace/while-stepping.exp ...
    
    		=== gdb Summary ===
    
    # of expected passes		125
    /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb version  6.8.50.20090914-cvs -nw -nx 
    
    rootme=`pwd`; export rootme; srcdir=../../../HEAD/src/gdb/testsuite ; export srcdir ; EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest --directory=gdb.xml --outdir=gdb.xml 
    Test Run By tschwinge on Fri Nov 13 14:19:31 2009
    Native configuration is i386-unknown-gnu0.3
    
    		=== gdb tests ===
    
    Schedule of variations:
        unix
    
    Running target unix
    Using /usr/share/dejagnu/baseboards/unix.exp as board description file for target.
    Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
    Using ../../../HEAD/src/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
    Running ../../../HEAD/src/gdb/testsuite/gdb.xml/tdesc-arch.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.xml/tdesc-errors.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.xml/tdesc-regs.exp ...
    Running ../../../HEAD/src/gdb/testsuite/gdb.xml/tdesc-xinclude.exp ...
    
    		=== gdb Summary ===
    
    # of expected passes		13
    # of known failures		1
    # of unsupported tests		1
    /media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite/../../gdb/gdb version  6.8.50.20090914-cvs -nw -nx 
    
    make[4]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite'
    make[3]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb/testsuite'
    make[2]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build/gdb'
    make[1]: Nothing to be done for `check-target'.
    make[1]: Leaving directory `/media/data/home/tschwinge/tmp/gdb/HEAD.build'