summaryrefslogtreecommitdiff
path: root/gdb/coulomb.SCHWINGE/log_test
blob: 8b99434454ed8a645f45cc1952e2674793c84439 (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
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
make[1]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build'
make[2]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/bfd'
make  check-recursive
make[3]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/bfd'
Making check in doc
make[4]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/bfd/doc'
make[4]: Nothing to be done for `check'.
make[4]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/bfd/doc'
Making check in po
make[4]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/bfd/po'
make[4]: Nothing to be done for `check'.
make[4]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/bfd/po'
make[4]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/bfd'
make[4]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/bfd'
make[3]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/bfd'
make[2]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/bfd'
make[2]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/opcodes'
Making check in .
make[3]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/opcodes'
../../Ferry_Tagscherer/opcodes/i386-tbl.h
make[3]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/opcodes'
Making check in po
make[3]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/opcodes/po'
make[3]: Nothing to be done for `check'.
make[3]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/opcodes/po'
make[2]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/opcodes'
make[2]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/etc'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/etc'
make[2]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/intl'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/intl'
make[2]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/libdecnumber'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/libdecnumber'
make[2]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/libiberty'
make[3]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/libiberty/testsuite'
gcc-4.8 -DHAVE_CONFIG_H -g -O2 -I.. -I../../../Ferry_Tagscherer/libiberty/testsuite/../../include  -o test-demangle \
		../../../Ferry_Tagscherer/libiberty/testsuite/test-demangle.c ../libiberty.a
./test-demangle < ../../../Ferry_Tagscherer/libiberty/testsuite/demangle-expected
./test-demangle: 882 tests, 0 failures
gcc-4.8 -DHAVE_CONFIG_H -g -O2 -I.. -I../../../Ferry_Tagscherer/libiberty/testsuite/../../include  -DHAVE_CONFIG_H -I.. -o test-pexecute \
		../../../Ferry_Tagscherer/libiberty/testsuite/test-pexecute.c ../libiberty.a
./test-pexecute
gcc-4.8 -DHAVE_CONFIG_H -g -O2 -I.. -I../../../Ferry_Tagscherer/libiberty/testsuite/../../include  -DHAVE_CONFIG_H -I.. -o test-expandargv \
		../../../Ferry_Tagscherer/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.
PASS: test-expandargv-4.
PASS: test-expandargv-5.
PASS: test-expandargv-6.
make[3]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/libiberty/testsuite'
make[2]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/libiberty'
make[2]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/readline'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/readline'
make[2]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/sim'
make[2]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/sim'
make[2]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb'
make[3]: Entering directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite'
make -k check-gdb.base1 check-gdb.base2 check-gdb.ada check-gdb.arch check-gdb.asm check-gdb.btrace check-gdb.cell check-gdb.cp check-gdb.disasm check-gdb.dwarf2 check-gdb.fortran check-gdb.gdb check-gdb.go check-gdb.java check-gdb.linespec check-gdb.mi check-gdb.modula2 check-gdb.multi check-gdb.objc check-gdb.opencl 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/dash ../../../Ferry_Tagscherer/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.btrace/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.go/gdb.sum gdb.java/gdb.sum gdb.linespec/gdb.sum gdb.mi/gdb.sum gdb.modula2/gdb.sum gdb.multi/gdb.sum gdb.objc/gdb.sum gdb.opencl/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/dash ../../../Ferry_Tagscherer/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.btrace/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.go/gdb.log gdb.java/gdb.log gdb.linespec/gdb.log gdb.mi/gdb.log gdb.modula2/gdb.log gdb.multi/gdb.log gdb.objc/gdb.log gdb.opencl/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 `[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite'
Nothing to be done for all...
Making a new config file...
rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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/alias.exp gdb.base/all-bin.exp gdb.base/annota1.exp gdb.base/annota3.exp gdb.base/anon.exp gdb.base/args.exp gdb.base/arithmet.exp gdb.base/arrayidx.exp gdb.base/assign.exp gdb.base/async-shell.exp gdb.base/async.exp gdb.base/attach-pie-misread.exp gdb.base/attach-pie-noexec.exp gdb.base/attach-twice.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-caller-line.exp gdb.base/break-entry.exp gdb.base/break-inline.exp gdb.base/break-interp.exp gdb.base/break-on-linker-gcd-function.exp gdb.base/break-probes.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/catch-load.exp gdb.base/catch-signal-fork.exp gdb.base/catch-signal.exp gdb.base/catch-syscall.exp gdb.base/charset.exp gdb.base/checkpoint.exp gdb.base/chng-syms.exp gdb.base/code-expr.exp gdb.base/code_elim.exp gdb.base/commands.exp gdb.base/completion.exp gdb.base/complex.exp gdb.base/comprdebug.exp gdb.base/cond-eval-mode.exp gdb.base/cond-expr.exp gdb.base/condbreak.exp gdb.base/consecutive.exp gdb.base/constvars.exp gdb.base/corefile.exp gdb.base/ctxobj.exp gdb.base/cursal.exp gdb.base/cvexpr.exp gdb.base/dbx.exp gdb.base/debug-expr.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/disabled-location.exp gdb.base/disasm-end-cu.exp gdb.base/disp-step-syscall.exp gdb.base/display.exp gdb.base/dmsym.exp gdb.base/dprintf-pending.exp gdb.base/dprintf.exp gdb.base/dump.exp gdb.base/dup-sect.exp gdb.base/duplicate-bp.exp gdb.base/echo.exp gdb.base/empty_exe.exp gdb.base/ena-dis-br.exp gdb.base/ending-run.exp gdb.base/enum_cond.exp gdb.base/enumval.exp gdb.base/environ.exp gdb.base/eu-strip-infcall.exp gdb.base/eval-skip.exp gdb.base/eval.exp gdb.base/exe-lock.exp gdb.base/expand-psymtabs.exp gdb.base/exprs.exp gdb.base/fileio.exp gdb.base/filesym.exp gdb.base/find-unmapped.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/fortran-sym-case.exp gdb.base/frame-args.exp gdb.base/freebpcmd.exp gdb.base/fullname.exp gdb.base/fullpath-expand.exp gdb.base/funcargs.exp gdb.base/gcore-buffer-overflow.exp gdb.base/gcore-relro.exp gdb.base/gcore.exp gdb.base/gdb1056.exp gdb.base/gdb1090.exp gdb.base/gdb11530.exp gdb.base/gdb11531.exp gdb.base/gdb1250.exp gdb.base/gdb1555.exp gdb.base/gdb1821.exp gdb.base/gdbindex-stabs.exp gdb.base/gdbvars.exp gdb.base/gnu-debugdata.exp gdb.base/gnu-ifunc.exp gdb.base/gnu_vector.exp gdb.base/hashline1.exp gdb.base/hashline2.exp gdb.base/hashline3.exp gdb.base/hbreak.exp gdb.base/hbreak2.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/inferior-died.exp gdb.base/infnan.exp gdb.base/info-fun.exp gdb.base/info-macros.exp gdb.base/info-os.exp gdb.base/info-proc.exp gdb.base/info-shared.exp gdb.base/info-target.exp gdb.base/infoline.exp gdb.base/interact.exp gdb.base/interp.exp gdb.base/interrupt.exp gdb.base/jit-simple.exp gdb.base/jit-so.exp gdb.base/jit.exp gdb.base/jump.exp gdb.base/kill-after-signal.exp gdb.base/label.exp gdb.base/langs.exp gdb.base/ldbl_e308.exp gdb.base/lineinc.exp gdb.base/linespecs.exp gdb.base/list.exp gdb.base/logical.exp gdb.base/long_long.exp gdb.base/longest-types.exp gdb.base/longjmp.exp gdb.base/macscp.exp gdb.base/maint.exp gdb.base/memattr.exp gdb.base/mips_pro.exp gdb.base/miscexprs.exp gdb.base/morestack.exp gdb.base/moribund-step.exp gdb.base/multi-forks.exp --outdir gdb.base1 
Test Run By thomas on Fri Jun 14 11:42:00 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/gcore.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/exe-lock.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/complex.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/gdbvars.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/detach.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/condbreak.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/breakpoint-shadow.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/info-os.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/bigcore.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/jump.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/multi-forks.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/hbreak.exp ...
FAIL: gdb.base/hbreak.exp: hbreak
FAIL: gdb.base/hbreak.exp: continue to break-at-exit after hbreak (the program exited)
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/frame-args.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/catch-signal-fork.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/dbx.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/jit.exp ...
FAIL: gdb.base/jit.exp: PIE: one_jit_test-1: Can't run to main
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/hbreak2.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/eu-strip-infcall.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/echo.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/dprintf.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/all-bin.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/attach-pie-noexec.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/empty_exe.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/bitfields2.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/moribund-step.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/gdb1821.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/environ.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/disp-step-syscall.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/break-inline.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/interact.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/info-fun.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/infnan.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/commands.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/advance.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/define.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/callfuncs.exp ...
FAIL: gdb.base/callfuncs.exp: continue after stop in call dummy preserves register contents
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/catch-syscall.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/foll-fork.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/auxv.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/interrupt.exp ...
FAIL: gdb.base/interrupt.exp: call function when asleep (wrong output)
FAIL: gdb.base/interrupt.exp: call function a second time
FAIL: gdb.base/interrupt.exp: Send Control-C, second time
FAIL: gdb.base/interrupt.exp: send end of file
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/fullpath-expand.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/a2-run.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/call-signal-resume.exp ...
FAIL: gdb.base/call-signal-resume.exp: continue to program exit
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/hashline2.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/async.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/callexit.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/break-on-linker-gcd-function.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/freebpcmd.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/find-unmapped.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/inferior-died.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/corefile.exp ...
WARNING: can't generate a core file - core tests suppressed - check ulimit -c
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/duplicate-bp.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/debug-expr.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/hook-stop-frame.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/info-proc.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/longest-types.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/linespecs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/kill-after-signal.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/info-macros.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/disabled-location.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/arithmet.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/attach-twice.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/call-sc.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/info-target.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/info-shared.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/expand-psymtabs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/consecutive.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/cond-expr.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/checkpoint.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/help.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/finish.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/dprintf-pending.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/code_elim.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/lineinc.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/disasm-end-cu.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/annota1.exp ...
FAIL: gdb.base/annota1.exp: run until main breakpoint (timeout)
FAIL: gdb.base/annota1.exp: break handle_USR1 (timeout)
FAIL: gdb.base/annota1.exp: break printf (timeout)
FAIL: gdb.base/annota1.exp: continue to printf
FAIL: gdb.base/annota1.exp: backtrace @ signal handler (timeout)
FAIL: gdb.base/annota1.exp: get inferior pid (timeout)
FAIL: gdb.base/annota1.exp: signal sent (timeout)
FAIL: gdb.base/annota1.exp: thread switch (timeout)
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/break-caller-line.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/logical.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/async-shell.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/infoline.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/fixsection.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/annota3.exp ...
FAIL: gdb.base/annota3.exp: backtrace @ signal handler (pattern 2)
FAIL: gdb.base/annota3.exp: get inferior pid (timeout)
FAIL: gdb.base/annota3.exp: signal sent (pattern 2)
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/break-entry.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/break-interp.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/args.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/jit-simple.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/hook-stop-continue.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/display.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/catch-signal.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/ifelse.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/gdb11531.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/catch-load.exp ...
FAIL: gdb.base/catch-load.exp: plain load: continue
FAIL: gdb.base/catch-load.exp: plain load with stop-on-solib-events: continue
FAIL: gdb.base/catch-load.exp: rx load: continue
FAIL: gdb.base/catch-load.exp: rx load with stop-on-solib-events: continue
FAIL: gdb.base/catch-load.exp: non-matching load: continue
FAIL: gdb.base/catch-load.exp: non-matching load with stop-on-solib-events: continue
FAIL: gdb.base/catch-load.exp: plain unload: continue
FAIL: gdb.base/catch-load.exp: plain unload with stop-on-solib-events: continue
FAIL: gdb.base/catch-load.exp: rx unload: continue
FAIL: gdb.base/catch-load.exp: rx unload with stop-on-solib-events: continue
FAIL: gdb.base/catch-load.exp: non-matching unload: continue
FAIL: gdb.base/catch-load.exp: non-matching unload with stop-on-solib-events: continue
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/gdb1056.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/bitops.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/memattr.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/dmsym.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/completion.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/list.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/dup-sect.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/long_long.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/gdbindex-stabs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/label.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/eval.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/bang.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/morestack.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/mips_pro.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/filesym.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/dfp-exprs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/interp.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/exprs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/ena-dis-br.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/alias.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/attach-pie-misread.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/gnu-ifunc.exp ...
FAIL: gdb.base/gnu-ifunc.exp: step
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/ldbl_e308.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/langs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/hashline1.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/default.exp ...
FAIL: gdb.base/default.exp: cd
FAIL: gdb.base/default.exp: info set
FAIL: gdb.base/default.exp: show
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/assign.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/call-strs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/dump.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/hashline3.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/foll-exec.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/ending-run.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/dfp-test.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/gcore-buffer-overflow.exp ...
Running ../../../Ferry_Tagscherer/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 ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/enumval.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/enum_cond.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/huge.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/gcore-relro.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/find.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/ctxobj.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/cond-eval-mode.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/eval-skip.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/arrayidx.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/gdb1555.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/del.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/attach.exp ...
FAIL: gdb.base/attach.exp: attach to nonexistent process is prohibited
FAIL: gdb.base/attach.exp: attach1, after setting file
FAIL: gdb.base/attach.exp: attach1 detach
FAIL: gdb.base/attach.exp: attach2, with no file
FAIL: gdb.base/attach.exp: continue until exit at after attach2, exit
FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
FAIL: gdb.base/attach.exp: attach call
FAIL: gdb.base/attach.exp: continue until exit
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/break.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/miscexprs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/float.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/longjmp.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/code-expr.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/included.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/gnu-debugdata.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/cvexpr.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/comprdebug.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/call-ar-st.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/maint.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/funcargs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/chng-syms.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/foll-vfork.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/cursal.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/charset.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/fortran-sym-case.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/constvars.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/break-always.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/call-rt-st.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/gnu_vector.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/fullname.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/anon.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/gdb1250.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/bfp-test.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/break-probes.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/jit-so.exp ...
FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here after-dlopen
FAIL: gdb.base/jit-so.exp: one_jit_test-1: setting breakpoint at jit-main.c:130
FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 0
FAIL: gdb.base/jit-so.exp: one_jit_test-1: set var argc = 2
FAIL: gdb.base/jit-so.exp: one_jit_test-1: set var libname = "SHLIBDIR/jit-solib.so"
FAIL: gdb.base/jit-so.exp: one_jit_test-1: set var count = 1
FAIL: gdb.base/jit-so.exp: one_jit_test-1: setting breakpoint at jit-main.c:193
FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 1
FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
FAIL: gdb.base/jit-so.exp: one_jit_test-1: setting breakpoint at jit-main.c:218
FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 2
FAIL: gdb.base/jit-so.exp: one_jit_test-2: continue to breakpoint: break here after-dlopen
FAIL: gdb.base/jit-so.exp: one_jit_test-2: setting breakpoint at jit-main.c:130
FAIL: gdb.base/jit-so.exp: one_jit_test-2: continue to breakpoint: break here 0
FAIL: gdb.base/jit-so.exp: one_jit_test-2: set var argc = 2
FAIL: gdb.base/jit-so.exp: one_jit_test-2: set var libname = "SHLIBDIR/jit-solib.so"
FAIL: gdb.base/jit-so.exp: one_jit_test-2: set var count = 2
FAIL: gdb.base/jit-so.exp: one_jit_test-2: setting breakpoint at jit-main.c:193
FAIL: gdb.base/jit-so.exp: one_jit_test-2: continue to breakpoint: break here 1
FAIL: gdb.base/jit-so.exp: one_jit_test-2: info function jit_function
FAIL: gdb.base/jit-so.exp: one_jit_test-2: setting breakpoint at jit-main.c:218
FAIL: gdb.base/jit-so.exp: one_jit_test-2: continue to breakpoint: break here 2
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/bitfields.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/macscp.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/gdb11530.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/gdb1090.exp ...

		=== gdb Summary ===

# of expected passes		4701
# of unexpected failures	89
# of expected failures		5
# of known failures		20
# of untested testcases		3
# of unsupported tests		12
[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

make[4]: *** [check-gdb.base1] Error 1
rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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/nextoverexit.exp gdb.base/nodebug.exp gdb.base/nofield.exp gdb.base/nostdlib.exp gdb.base/opaque.exp gdb.base/overlays.exp gdb.base/page.exp gdb.base/pc-fp.exp gdb.base/pending.exp gdb.base/permissions.exp gdb.base/pie-execl.exp gdb.base/pointers.exp gdb.base/pr10179.exp gdb.base/pr11022.exp gdb.base/prelink.exp gdb.base/print-file-var.exp gdb.base/printcmds.exp gdb.base/prologue-include.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/range-stepping.exp gdb.base/readline-ask.exp gdb.base/readline.exp gdb.base/realname-expand.exp gdb.base/recpar.exp gdb.base/recurse.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/save-bp.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/set-noassign.exp gdb.base/setshow.exp gdb.base/setvar.exp gdb.base/shell.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-infcall.exp gdb.base/siginfo-obj.exp gdb.base/siginfo-thread.exp gdb.base/siginfo.exp gdb.base/signals.exp gdb.base/signest.exp gdb.base/signull.exp gdb.base/sigrepeat.exp gdb.base/sigstep.exp gdb.base/sizeof.exp gdb.base/skip-solib.exp gdb.base/skip.exp gdb.base/so-impl-ld.exp gdb.base/so-indr-cl.exp gdb.base/solib-corrupted.exp gdb.base/solib-disc.exp gdb.base/solib-display.exp gdb.base/solib-nodir.exp gdb.base/solib-overlap.exp gdb.base/solib-search.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/stale-infcall.exp gdb.base/stap-probe.exp gdb.base/start.exp gdb.base/step-break.exp gdb.base/step-bt.exp gdb.base/step-line.exp gdb.base/step-resume-infcall.exp gdb.base/step-symless.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/symbol-without-target_section.exp gdb.base/term.exp gdb.base/testenv.exp gdb.base/trace-commands.exp gdb.base/tui-layout.exp gdb.base/twice.exp gdb.base/type-opaque.exp gdb.base/ui-redirect.exp gdb.base/unload.exp gdb.base/until.exp gdb.base/unwindonsignal.exp gdb.base/valgrind-db-attach.exp gdb.base/valgrind-infcall.exp gdb.base/value-double-free.exp gdb.base/varargs.exp gdb.base/volatile.exp gdb.base/watch-cond-infcall.exp gdb.base/watch-cond.exp gdb.base/watch-non-mem.exp gdb.base/watch-read.exp gdb.base/watch-vfork.exp gdb.base/watch_thread_num.exp gdb.base/watchpoint-cond-gone.exp gdb.base/watchpoint-delete.exp gdb.base/watchpoint-hw-hit-once.exp gdb.base/watchpoint-hw.exp gdb.base/watchpoint-solib.exp gdb.base/watchpoint.exp gdb.base/watchpoints.exp gdb.base/wchar.exp gdb.base/whatis-exp.exp gdb.base/whatis.exp --outdir gdb.base2 
Test Run By thomas on Fri Jun 14 11:53:14 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/watchpoint-cond-gone.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/watch-read.exp ...
FAIL: gdb.base/watch-read.exp: set hardware read watchpoint on global variable
FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/radix.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/return.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/watchpoint.exp ...
FAIL: gdb.base/watchpoint.exp: watch foo2
FAIL: gdb.base/watchpoint.exp: continue with watch foo2
FAIL: gdb.base/watchpoint.exp: watch foo4
FAIL: gdb.base/watchpoint.exp: continue with watch foo4
Running ../../../Ferry_Tagscherer/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 ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/randomize.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/return-nodebug.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/set-lang-auto.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/structs2.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/opaque.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/watchpoints.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/printcmds.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/restore.exp ...
FAIL: gdb.base/restore.exp: caller3 calls callee1; return restored l1 to 32492
FAIL: gdb.base/restore.exp: caller3 calls callee2; return restored l1 to 32492
FAIL: gdb.base/restore.exp: caller3 calls callee3; return restored l1 to 32492
FAIL: gdb.base/restore.exp: caller3 calls callee4; return restored l1 to 32492
FAIL: gdb.base/restore.exp: caller3 calls callee5; return restored l1 to 32492
FAIL: gdb.base/restore.exp: caller4 calls callee1; return restored l1 to 32492
FAIL: gdb.base/restore.exp: caller4 calls callee1; return restored l2 to 32493
FAIL: gdb.base/restore.exp: caller4 calls callee2; return restored l1 to 32492
FAIL: gdb.base/restore.exp: caller4 calls callee2; return restored l2 to 32493
FAIL: gdb.base/restore.exp: caller4 calls callee3; return restored l1 to 32492
FAIL: gdb.base/restore.exp: caller4 calls callee3; return restored l2 to 32493
FAIL: gdb.base/restore.exp: caller4 calls callee4; return restored l1 to 32492
FAIL: gdb.base/restore.exp: caller4 calls callee4; return restored l2 to 32493
FAIL: gdb.base/restore.exp: caller4 calls callee5; return restored l1 to 32492
FAIL: gdb.base/restore.exp: caller4 calls callee5; return restored l2 to 32493
FAIL: gdb.base/restore.exp: caller5 calls callee1; return restored l1 to 32492
FAIL: gdb.base/restore.exp: caller5 calls callee1; return restored l2 to 32493
FAIL: gdb.base/restore.exp: caller5 calls callee1; return restored l3 to 32494
FAIL: gdb.base/restore.exp: caller5 calls callee2; return restored l1 to 32492
FAIL: gdb.base/restore.exp: caller5 calls callee2; return restored l2 to 32493
FAIL: gdb.base/restore.exp: caller5 calls callee2; return restored l3 to 32494
FAIL: gdb.base/restore.exp: caller5 calls callee3; return restored l1 to 32492
FAIL: gdb.base/restore.exp: caller5 calls callee3; return restored l2 to 32493
FAIL: gdb.base/restore.exp: caller5 calls callee3; return restored l3 to 32494
FAIL: gdb.base/restore.exp: caller5 calls callee4; return restored l1 to 32492
FAIL: gdb.base/restore.exp: caller5 calls callee4; return restored l2 to 32493
FAIL: gdb.base/restore.exp: caller5 calls callee4; return restored l3 to 32494
FAIL: gdb.base/restore.exp: caller5 calls callee5; return restored l1 to 32492
FAIL: gdb.base/restore.exp: caller5 calls callee5; return restored l2 to 32493
FAIL: gdb.base/restore.exp: caller5 calls callee5; return restored l3 to 32494
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/savedregs.exp ...
FAIL: gdb.base/savedregs.exp: Get thrower info frame
FAIL: gdb.base/savedregs.exp: Check main info frame; stack contains catcher sigtramp thrower main (GDB internal error)
FAIL: gdb.base/savedregs.exp: Check main info frame; stack contains caller dummy catcher sigtramp thrower main (GDB internal error)
FAIL: gdb.base/savedregs.exp: Check main info frame; stack contains callee caller dummy catcher sigtramp thrower main (GDB internal error)
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/ui-redirect.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/tui-layout.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/signest.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/setvar.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/pending.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/nextoverexit.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/prologue.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/varargs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/trace-commands.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/so-impl-ld.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/siginfo-obj.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/relocate.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/sepdebug.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/shreloc.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/pr11022.exp ...
FAIL: gdb.base/pr11022.exp: set watchpoint
FAIL: gdb.base/pr11022.exp: watchpoint hit
FAIL: gdb.base/pr11022.exp: watchpoint hit 2
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/testenv.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/sigaltstack.exp ...
FAIL: gdb.base/sigaltstack.exp: continue to catch (timeout)
FAIL: gdb.base/sigaltstack.exp: next (timeout)
FAIL: gdb.base/sigaltstack.exp: backtrace (pattern 1) (timeout)
FAIL: gdb.base/sigaltstack.exp: finish from catch LEAF (timeout)
FAIL: gdb.base/sigaltstack.exp: finish to throw INNER (timeout)
FAIL: gdb.base/sigaltstack.exp: finish to catch INNER (timeout)
FAIL: gdb.base/sigaltstack.exp: finish from catch INNER (timeout)
FAIL: gdb.base/sigaltstack.exp: finish to OUTER (timeout)
FAIL: gdb.base/sigaltstack.exp: finish to catch MAIN (timeout)
FAIL: gdb.base/sigaltstack.exp: finish to MAIN (timeout)
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/set-noassign.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/relational.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/recpar.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/volatile.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/sizeof.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/watchpoint-hw-hit-once.exp ...
FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/solib.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/solib-nodir.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/valgrind-db-attach.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/store.exp ...
FAIL: gdb.base/store.exp: var longest l; print old r, expecting -2
FAIL: gdb.base/store.exp: var float l; print old l, expecting -1
FAIL: gdb.base/store.exp: var float l; setting l to 4
FAIL: gdb.base/store.exp: var float l; print new l, expecting 4
FAIL: gdb.base/store.exp: var float l; print incremented l, expecting 2
FAIL: gdb.base/store.exp: var double l; print old l, expecting -1
FAIL: gdb.base/store.exp: var double l; print old r, expecting -2
FAIL: gdb.base/store.exp: var double l; setting l to 4
FAIL: gdb.base/store.exp: var double l; print new l, expecting 4
FAIL: gdb.base/store.exp: var double l; print incremented l, expecting 2
FAIL: gdb.base/store.exp: var doublest l; print old l, expecting -1
FAIL: gdb.base/store.exp: var doublest l; print old r, expecting -2
FAIL: gdb.base/store.exp: var doublest l; setting l to 4
FAIL: gdb.base/store.exp: var doublest l; print new l, expecting 4
FAIL: gdb.base/store.exp: var doublest l; print incremented l, expecting 2
FAIL: gdb.base/store.exp: upvar longest l; print old r, expecting -2
FAIL: gdb.base/store.exp: upvar float l; print old l, expecting -1
FAIL: gdb.base/store.exp: upvar float l; set l to 4
FAIL: gdb.base/store.exp: upvar float l; print new l, expecting 4
FAIL: gdb.base/store.exp: upvar double l; print old l, expecting -1
FAIL: gdb.base/store.exp: upvar double l; print old r, expecting -2
FAIL: gdb.base/store.exp: upvar double l; set l to 4
FAIL: gdb.base/store.exp: upvar double l; print new l, expecting 4
FAIL: gdb.base/store.exp: upvar doublest l; print old l, expecting -1
FAIL: gdb.base/store.exp: upvar doublest l; print old r, expecting -2
FAIL: gdb.base/store.exp: upvar doublest l; set l to 4
FAIL: gdb.base/store.exp: upvar doublest l; print new l, expecting 4
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/skip-solib.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/start.exp ...
Running ../../../Ferry_Tagscherer/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 nodebug, lib2 debug, 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 ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/save-bp.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/term.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/step-resume-infcall.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/print-file-var.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/readline-ask.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/sep.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/nofield.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/whatis-exp.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/return2.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/shlib-call.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/watch-vfork.exp ...
FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (timeout)
FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (sw) (timeout)
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/solib-symbol.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/sigall.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/pie-execl.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/range-stepping.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/valgrind-infcall.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/siginfo-infcall.exp ...
FAIL: gdb.base/siginfo-infcall.exp: continue to the handler
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/setshow.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/watch-cond-infcall.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/prologue-include.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/unwindonsignal.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/step-symless.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/structs3.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/siginfo-thread.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/page.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/pc-fp.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/step-bt.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/stale-infcall.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/solib-overlap.exp ...
sh: prelink: command not found
Running ../../../Ferry_Tagscherer/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 ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/siginfo-addr.exp ...
FAIL: gdb.base/siginfo-addr.exp: si_addr value
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/watch-cond.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/structs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/subst.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/step-test.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/step-line.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/source.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/recurse.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/type-opaque.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/ptype.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/realname-expand.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/relativedebug.exp ...
FAIL: gdb.base/relativedebug.exp: pause found in backtrace
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/remotetimeout.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/until.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/pointers.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/ptr-typedef.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/readline.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/wchar.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/watchpoint-hw.exp ...
FAIL: gdb.base/watchpoint-hw.exp: start (timeout)
FAIL: gdb.base/watchpoint-hw.exp: info watchpoints (timeout)
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/signull.exp ...
FAIL: gdb.base/signull.exp: data read; backtrace from keeper through SIGSEGV
FAIL: gdb.base/signull.exp: data write; backtrace from keeper through SIGSEGV
FAIL: gdb.base/signull.exp: code; backtrace from keeper through SIGSEGV
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/so-indr-cl.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/shell.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/psymtab.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/sect-cmd.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/sepsymtab.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/watchpoint-delete.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/watch-non-mem.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/unload.exp ...
FAIL: gdb.base/unload.exp: running program (the program exited)
FAIL: gdb.base/unload.exp: pending breakpoint info on first run at shrfunc1
FAIL: gdb.base/unload.exp: continuing to unloaded libfile (the program is no longer running)
FAIL: gdb.base/unload.exp: print y from libfile
FAIL: gdb.base/unload.exp: rerun to shared library breakpoint (the program exited)
FAIL: gdb.base/unload.exp: pending breakpoint info on second run at shrfunc1
FAIL: gdb.base/unload.exp: continuing to unloaded libfile (the program is no longer running)
FAIL: gdb.base/unload.exp: continue to shrfunc2 (the program is no longer running)
FAIL: gdb.base/unload.exp: pending breakpoint info on second run at shrfunc2
FAIL: gdb.base/unload.exp: continuing to unloaded libfile2 (the program is no longer running)
FAIL: gdb.base/unload.exp: print y from libfile2
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/twice.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/permissions.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/nodebug.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/pr10179.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/remote.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/stap-probe.exp ...
gdb compile failed, ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/stap-probe.c:39:21: fatal error: sys/sdt.h: No such file or directory
 #include <sys/sdt.h>
                     ^
compilation terminated.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/sigchld.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/skip.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/whatis.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/solib-disc.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/sigbpt.exp ...
FAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
FAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
FAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
FAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/scope.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/reread.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/value-double-free.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/solib-search.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/solib-display.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/sigrepeat.exp ...
FAIL: gdb.base/sigrepeat.exp: next
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/watch_thread_num.exp ...
FAIL: gdb.base/watch_thread_num.exp: Watchpoint on shared variable
FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 6
FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 7
FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 8
FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 9
FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 10
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/overlays.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/prelink.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/step-break.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/solib-corrupted.exp ...
Running ../../../Ferry_Tagscherer/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 ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/symbol-without-target_section.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/stack-checking.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/sigstep.exp ...
FAIL: gdb.base/sigstep.exp: backtrace for nexti (pattern 2)
FAIL: gdb.base/sigstep.exp: step from handler; leave handler (timeout)
FAIL: gdb.base/sigstep.exp: stepi from handleri; leave handler (hit breakpoint again)
FAIL: gdb.base/sigstep.exp: stepi from handleri; leave signal trampoline
FAIL: gdb.base/sigstep.exp: next from handler; leave handler
FAIL: gdb.base/sigstep.exp: nexti from handleri; leave handler
FAIL: gdb.base/sigstep.exp: nexti from handleri; leave signal trampoline
FAIL: gdb.base/sigstep.exp: finish from handleri; leave handler
FAIL: gdb.base/sigstep.exp: finish from handleri; leave signal trampoline
FAIL: gdb.base/sigstep.exp: return from handleri; leave handler
FAIL: gdb.base/sigstep.exp: return from handleri; leave signal trampoline
FAIL: gdb.base/sigstep.exp: step to handler; resync (the program exited)
FAIL: gdb.base/sigstep.exp: step to handler; performing step (the program is no longer running)
FAIL: gdb.base/sigstep.exp: next to handler; resync (the program is no longer running)
FAIL: gdb.base/sigstep.exp: next to handler; performing next (the program is no longer running)
FAIL: gdb.base/sigstep.exp: continue to handler; resync (the program is no longer running)
FAIL: gdb.base/sigstep.exp: continue to handler; performing continue (the program is no longer running)
FAIL: gdb.base/sigstep.exp: step to handler entry; resync (the program is no longer running)
FAIL: gdb.base/sigstep.exp: step to handler entry; performing step (the program is no longer running)
FAIL: gdb.base/sigstep.exp: next to handler entry; resync (the program is no longer running)
FAIL: gdb.base/sigstep.exp: next to handler entry; performing next (the program is no longer running)
FAIL: gdb.base/sigstep.exp: continue to handler entry; resync (the program is no longer running)
FAIL: gdb.base/sigstep.exp: continue to handler entry; performing continue (the program is no longer running)
FAIL: gdb.base/sigstep.exp: step over handler; resync (the program is no longer running)
FAIL: gdb.base/sigstep.exp: step over handler; performing step (the program is no longer running)
FAIL: gdb.base/sigstep.exp: next over handler; resync (the program is no longer running)
FAIL: gdb.base/sigstep.exp: next over handler; performing next (the program is no longer running)
FAIL: gdb.base/sigstep.exp: continue over handler; resync (the program is no longer running)
FAIL: gdb.base/sigstep.exp: continue over handler; performing continue (the program is no longer running)
FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler; resync (the program is no longer running)
FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler; continue to infinite loop (the program is no longer running)
FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler; performing step (the program is no longer running)
FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler; resync (the program is no longer running)
FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler; continue to infinite loop (the program is no longer running)
FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler; performing next (the program is no longer running)
FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler; resync (the program is no longer running)
FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler; continue to infinite loop (the program is no longer running)
FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler; performing continue (the program is no longer running)
FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler entry; resync (the program is no longer running)
FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler entry; continue to infinite loop (the program is no longer running)
FAIL: gdb.base/sigstep.exp: step on breakpoint, to handler entry; performing step (the program is no longer running)
FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler entry; resync (the program is no longer running)
FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler entry; continue to infinite loop (the program is no longer running)
FAIL: gdb.base/sigstep.exp: next on breakpoint, to handler entry; performing next (the program is no longer running)
FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler entry; resync (the program is no longer running)
FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler entry; continue to infinite loop (the program is no longer running)
FAIL: gdb.base/sigstep.exp: continue on breakpoint, to handler entry; performing continue (the program is no longer running)
FAIL: gdb.base/sigstep.exp: step on breakpoint, skip handler; resync (the program is no longer running)
FAIL: gdb.base/sigstep.exp: step on breakpoint, skip handler; continue to infinite loop (the program is no longer running)
FAIL: gdb.base/sigstep.exp: step on breakpoint, skip handler; performing step (the program is no longer running)
FAIL: gdb.base/sigstep.exp: next on breakpoint, skip handler; resync (the program is no longer running)
FAIL: gdb.base/sigstep.exp: next on breakpoint, skip handler; continue to infinite loop (the program is no longer running)
FAIL: gdb.base/sigstep.exp: next on breakpoint, skip handler; performing next (the program is no longer running)
FAIL: gdb.base/sigstep.exp: continue on breakpoint, skip handler; resync (the program is no longer running)
FAIL: gdb.base/sigstep.exp: continue on breakpoint, skip handler; continue to infinite loop (the program is no longer running)
FAIL: gdb.base/sigstep.exp: continue on breakpoint, skip handler; performing continue (the program is no longer running)
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.base/nostdlib.exp ...

		=== gdb Summary ===

# of expected passes		3867
# of unexpected failures	201
# of expected failures		2
# of known failures		2
# of untested testcases		7
# of unsupported tests		4
[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

make[4]: *** [check-gdb.base2] Error 1
rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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 thomas on Fri Jun 14 12:06:11 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/aliased_array.exp ...
FAIL: gdb.ada/aliased_array.exp: print bt
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/array_bounds.exp ...
FAIL: gdb.ada/array_bounds.exp: print table'first
FAIL: gdb.ada/array_bounds.exp: print table'last
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/array_return.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/array_subscript_addr.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/arrayidx.exp ...
FAIL: gdb.ada/arrayidx.exp: print e_one_two_three, indexes off
FAIL: gdb.ada/arrayidx.exp: print r_two_three, indexes off
FAIL: gdb.ada/arrayidx.exp: print p_one_two_three, indexes off
FAIL: gdb.ada/arrayidx.exp: print e_one_two_three
FAIL: gdb.ada/arrayidx.exp: print r_two_three
FAIL: gdb.ada/arrayidx.exp: print p_one_two_three
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/arrayparam.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/arrayptr.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/assign_1.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/atomic_enum.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/bad-task-bp-keyword.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/boolean_expr.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/bp_enum_homonym.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/bp_on_var.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/bp_range_type.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/bp_reset.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/call_pn.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/catch_ex.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/char_enum.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/char_param.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/complete.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/cond_lang.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/dyn_loc.exp ...
FAIL: gdb.ada/dyn_loc.exp: info locals
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/enum_idx_packed.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/exec_changed.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/expr_delims.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/exprs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/fixed_cmp.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/fixed_points.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/float_param.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/formatted_ref.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/frame_args.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/fullname_bp.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/fun_addr.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/fun_in_declare.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/funcall_param.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/homonym.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/info_locals_renaming.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/info_types.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/int_deref.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/interface.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/iwide.exp ...
FAIL: gdb.ada/iwide.exp: print My_Drawable
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/lang_switch.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/mi_catch_ex.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/mi_task_arg.exp ...
FAIL: gdb.ada/mi_task_arg.exp: mi runto task_switch.break_me (unknown output after running)
FAIL: gdb.ada/mi_task_arg.exp: -stack-list-arguments 1
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/mi_task_info.exp ...
FAIL: gdb.ada/mi_task_info.exp: mi runto task_switch.break_me (unknown output after running)
FAIL: gdb.ada/mi_task_info.exp: -ada-task-info with no argument
FAIL: gdb.ada/mi_task_info.exp: -ada-task-info 3
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/mod_from_name.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/nested.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/null_array.exp ...
FAIL: gdb.ada/null_array.exp: print my_table
FAIL: gdb.ada/null_array.exp: ptype my_table
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/null_record.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/operator_bp.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/optim_drec.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/packed_array.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/packed_tagged.exp ...
FAIL: gdb.ada/packed_tagged.exp: print x
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/print_chars.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/print_pc.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/ptr_typedef.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/ptype_arith_binop.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/ptype_field.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/ptype_tagged_param.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/rdv_wait.exp ...
FAIL: gdb.ada/rdv_wait.exp: task 2
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/rec_return.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/ref_param.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/ref_tick_size.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/same_enum.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/set_pckd_arr_elt.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/set_wstr.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/small_reg_param.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/start.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/str_ref_cmp.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/sym_print_name.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/taft_type.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/tagged.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/tagged_not_init.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/task_bp.exp ...
FAIL: gdb.ada/task_bp.exp: run to pck.dummy_task - from psymtab
FAIL: gdb.ada/task_bp.exp: run to dummy_task - from psymtab
FAIL: gdb.ada/task_bp.exp: run to pck.adb:pck.dummy_task - from psymtab
FAIL: gdb.ada/task_bp.exp: run to pck.adb:dummy_task - from psymtab
FAIL: gdb.ada/task_bp.exp: run to pck.dummy_task - from full symtab
FAIL: gdb.ada/task_bp.exp: run to dummy_task - from full symtab
FAIL: gdb.ada/task_bp.exp: run to pck.adb:pck.dummy_task - from full symtab
FAIL: gdb.ada/task_bp.exp: run to pck.adb:dummy_task - from full symtab
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/tasks.exp ...
FAIL: gdb.ada/tasks.exp: info tasks before inserting breakpoint
FAIL: gdb.ada/tasks.exp: continue to breakpoint
FAIL: gdb.ada/tasks.exp: info tasks after hitting breakpoint
FAIL: gdb.ada/tasks.exp: continue until exit
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/tick_last_segv.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/type_coercion.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/unc_arr_ptr_in_var_rec.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/uninitialized_vars.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/variant_record_packed_array.exp ...
FAIL: gdb.ada/variant_record_packed_array.exp: print adress content
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/watch_arg.exp ...
FAIL: gdb.ada/watch_arg.exp: Continuing to second breakpoint
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/whatis_array_val.exp ...
FAIL: gdb.ada/whatis_array_val.exp: print full
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/widewide.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.ada/win_fu_syms.exp ...

		=== gdb Summary ===

# of expected passes		419
# of unexpected failures	35
# of expected failures		1
# of known failures		1
# of unsupported tests		2
[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

make[4]: *** [check-gdb.ada] Error 1
rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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 thomas on Fri Jun 14 12:11:54 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/alpha-step.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/altivec-abi.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/altivec-regs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/amd64-byte.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/amd64-disp-step.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/amd64-dword.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/amd64-entry-value-inline.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/amd64-entry-value-param.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/amd64-entry-value.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/amd64-i386-address.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/amd64-prologue-xmm.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/amd64-tailcall-cxx.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/amd64-tailcall-noret.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/amd64-tailcall-ret.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/amd64-word.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/arm-bl-branch-dest.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/arm-disp-step.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/e500-abi.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/e500-prologue.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/e500-regs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/gdb1291.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/gdb1431.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/gdb1558.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/i386-avx.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/i386-bp_permanent.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/i386-byte.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/i386-cfi-notcurrent.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/i386-disp-step.exp ...
FAIL: gdb.arch/i386-disp-step.exp: continue to test_syscall_end
FAIL: gdb.arch/i386-disp-step.exp: continue to test_prefixed_syscall
FAIL: gdb.arch/i386-disp-step.exp: continue to test_prefixed_syscall_end (the program is no longer running)
FAIL: gdb.arch/i386-disp-step.exp: continue to test_int3 (the program is no longer running)
FAIL: gdb.arch/i386-disp-step.exp: continue to test_int3_end (the program is no longer running)
FAIL: gdb.arch/i386-disp-step.exp: continue until exit at i386-disp-step (the program is no longer running)
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/i386-dr3-watch.exp ...
FAIL: gdb.arch/i386-dr3-watch.exp: watch i1
FAIL: gdb.arch/i386-dr3-watch.exp: watch i2
FAIL: gdb.arch/i386-dr3-watch.exp: watch i3
FAIL: gdb.arch/i386-dr3-watch.exp: watch i4
FAIL: gdb.arch/i386-dr3-watch.exp: continue to i1 watchpoint
FAIL: gdb.arch/i386-dr3-watch.exp: continue to i2 watchpoint
FAIL: gdb.arch/i386-dr3-watch.exp: continue to i3 watchpoint
FAIL: gdb.arch/i386-dr3-watch.exp: continue to i4 watchpoint
FAIL: gdb.arch/i386-dr3-watch.exp: set watchpoint occuping one debug register
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/i386-float.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/i386-gnu-cfi.exp ...
FAIL: gdb.arch/i386-gnu-cfi.exp: shift up to the modified frame
FAIL: gdb.arch/i386-gnu-cfi.exp: Existence of the CFI inserted register
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/i386-permbkpt.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/i386-prologue.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/i386-signal.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/i386-size-overlap.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/i386-size.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/i386-sse-stack-align.exp ...
Running ../../../Ferry_Tagscherer/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 ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/i386-unwind.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/i386-word.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/ia64-breakpoint-shadow.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/iwmmxt-regs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/mips-octeon-bbit.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/mips16-thunks.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/pa-nullify.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/powerpc-aix-prologue.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/powerpc-d128-regs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/powerpc-prologue.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/ppc-dfp.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/ppc-fp.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/ppc64-atomic-inst.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/spu-info.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/spu-ls.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/thumb-bx-pc.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/thumb-prologue.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/thumb-singlestep.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/thumb2-it.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.arch/vsx-regs.exp ...

		=== gdb Summary ===

# of expected passes		144
# of unexpected failures	41
# of known failures		1
[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

make[4]: *** [check-gdb.arch] Error 1
rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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 thomas on Fri Jun 14 12:12:33 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/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
[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

make[4]: *** [check-gdb.asm] Error 1
rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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.btrace --outdir=gdb.btrace 
Test Run By thomas on Fri Jun 14 12:16:47 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.btrace/enable.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.btrace/function_call_history.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.btrace/instruction_history.exp ...

		=== gdb Summary ===

[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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 thomas on Fri Jun 14 12:16:50 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cell/arch.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cell/break.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cell/bt.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cell/core.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cell/data.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cell/dwarfaddr.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cell/ea-cache.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cell/ea-standalone.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cell/ea-test.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cell/f-regs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cell/fork.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cell/gcore.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cell/mem-access.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cell/ptype.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cell/registers.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cell/sizeof.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cell/solib-symbol.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cell/solib.exp ...

		=== gdb Summary ===

[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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 thomas on Fri Jun 14 12:16:52 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/abstract-origin.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/ambiguous.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/annota2.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/annota3.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/anon-ns.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/anon-struct.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/anon-union.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/arg-reference.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/baseenum.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/bool.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/breakpoint.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/bs15503.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/call-c.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/casts.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/class2.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/classes.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/cmpd-minsyms.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/converts.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/cp-relocate.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/cpcompletion.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/cpexprs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/cplabel.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/cplusfuncs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/ctti.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/debug-expr.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/demangle.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/derivation.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/destrprint.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/dispcxx.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/exception.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/exceptprint.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/expand-psymtabs-cxx.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/expand-sals.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/extern-c.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/formatted-ref.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/fpointer.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/gdb1355.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/gdb2384.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/gdb2495.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/hang.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/infcall-dlopen.exp ...
FAIL: gdb.cp/infcall-dlopen.exp: test 0
FAIL: gdb.cp/infcall-dlopen.exp: test 1
FAIL: gdb.cp/infcall-dlopen.exp: test 2
FAIL: gdb.cp/infcall-dlopen.exp: test 3
FAIL: gdb.cp/infcall-dlopen.exp: test 4
FAIL: gdb.cp/infcall-dlopen.exp: test 5
FAIL: gdb.cp/infcall-dlopen.exp: test 6
FAIL: gdb.cp/infcall-dlopen.exp: test 7
FAIL: gdb.cp/infcall-dlopen.exp: test 8
FAIL: gdb.cp/infcall-dlopen.exp: test 9
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/inherit.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/koenig.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/local.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/m-data.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/m-static.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/maint.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/mb-ctor.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/mb-inline.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/mb-templates.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/member-name.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/member-ptr.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/meth-typedefs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/method.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/method2.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/minsym-fallback.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/misc.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/namespace-enum.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/namespace-nested-import.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/namespace.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/nextoverthrow.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/no-dmgl-verbose.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/noparam.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/nsdecl.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/nsimport.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/nsnested.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/nsnoimports.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/nsrecurs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/nsstress.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/nsusing.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/operator.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/oranking.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/overload-const.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/overload.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/ovldbreak.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/ovsrch.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/paren-type.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/parse-lang.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/pass-by-ref.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/pr-1023.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/pr-1210.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/pr-574.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/pr10687.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/pr10728.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/pr12028.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/pr9067.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/pr9167.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/pr9631.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/printmethod.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/psmang.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/psymtab-parameter.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/ptype-cv-cp.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/ptype-flags.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/punctuator.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/re-set-overloaded.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/readnow-language.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/ref-params.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/ref-types.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/rtti.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/shadow.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/smartp.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/static-method.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/static-print-quit.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/temargs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/templates.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/try_catch.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/typedef-operator.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/typeid.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/userdef.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/using-crash.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/virtbase.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/virtfunc.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.cp/virtfunc2.exp ...

		=== gdb Summary ===

# of expected passes		4023
# of unexpected failures	10
# of expected failures		6
# of known failures		20
# of untested testcases		1
# of unsupported tests		1
[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

make[4]: *** [check-gdb.cp] Error 1
rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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 thomas on Fri Jun 14 12:24:37 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.disasm/am33.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.disasm/h8300s.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.disasm/hppa.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.disasm/mn10300.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.disasm/sh3.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.disasm/t01_mov.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.disasm/t02_mova.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.disasm/t03_add.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.disasm/t04_sub.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.disasm/t05_cmp.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.disasm/t06_ari2.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.disasm/t07_ari3.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.disasm/t08_or.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.disasm/t09_xor.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.disasm/t10_and.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.disasm/t11_logs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.disasm/t12_bit.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.disasm/t13_otr.exp ...

		=== gdb Summary ===

[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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 thomas on Fri Jun 14 12:24:39 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/callframecfa.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/clztest.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dup-psym.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-ada-ffffffff.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-anon-mptr.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-anonymous-func.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-bad-parameter-type.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-basic.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-canonicalize-type.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-case-insensitive.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-common-block.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-compdir-oldgcc.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-compressed.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-const.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-cp-infcall-ref-static.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-cu-size.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-dir-file-name.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-dos-drive.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-double-set-die-type.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-empty-namespace.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-empty-pc-range.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-entry-value.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-error.exp ...
gdb compile failed, dw2-error.c: Assembler messages:
dw2-error.c:33: Error: bad register name `%rbp'
dw2-error.c:36: Error: bad register name `%rsp'
dw2-error.c:43: Error: bad register name `%rbp'
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-filename.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-icc-opaque.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-ifort-parameter.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-inheritance.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-inline-break.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-inline-param.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-intercu.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-intermix.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-linkage-name-trust.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-minsym-in-cu.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-modula2-self-type.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-namespaceless-anonymous.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-noloc.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-objfile-overlap.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-op-call.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-op-out-param.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-op-stack-value.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-param-error.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-producer.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-ranges.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-ref-missing-frame.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-restore.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-restrict.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-simple-locdesc.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-skip-prologue.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-stack-boundary.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-strp.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-unresolved.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw2-var-zero-addr.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw4-sig-type-unused.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/dw4-sig-types.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/fission-base.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/fission-loclists.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/fission-reread.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/implptr-64bit.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/implptr-optimized-out.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/implptr.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/implptrconst.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/mac-fileno.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/member-ptr-forwardref.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/method-ptr.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/missing-sig-type.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/nostaticblock.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/pieces.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/pr10770.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/pr11465.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/pr13961.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/subrange.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/trace-crash.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/typeddwarf.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/valop.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.dwarf2/watch-notconst.exp ...

		=== gdb Summary ===

# of expected passes		520
# of known failures		1
# of untested testcases		9
# of unsupported tests		1
[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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 thomas on Fri Jun 14 12:27:16 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.fortran/array-element.exp ...
FAIL: gdb.fortran/array-element.exp: continue to breakpoint once again (the program exited)
FAIL: gdb.fortran/array-element.exp: print the second element of array a
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.fortran/charset.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.fortran/common-block.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.fortran/complex.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.fortran/derived-type.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.fortran/exprs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.fortran/library-module.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.fortran/logical.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.fortran/module.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.fortran/multi-dim.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.fortran/subarray.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.fortran/types.exp ...

		=== gdb Summary ===

# of expected passes		243
# of unexpected failures	2
[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

make[4]: *** [check-gdb.fortran] Error 1
rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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 thomas on Fri Jun 14 12:27:52 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.gdb/complaints.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.gdb/observer.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.gdb/python-selftest.exp ...
FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print 5", 0, RETURN_MASK_ALL)
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.gdb/selftest.exp ...
FAIL: gdb.gdb/selftest.exp: backtrace through signal handler
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.gdb/xfullpath.exp ...

		=== gdb Summary ===

# of expected passes		168
# of unexpected failures	2
[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

make[4]: *** [check-gdb.gdb] Error 1
rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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.go --outdir=gdb.go 
Test Run By thomas on Fri Jun 14 12:29:09 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.go/basic-types.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.go/chan.exp ...
gdb compile failed, default_target_compile: Can't find gccgo.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.go/handcall.exp ...
gdb compile failed, default_target_compile: Can't find gccgo.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.go/hello.exp ...
gdb compile failed, default_target_compile: Can't find gccgo.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.go/integers.exp ...
gdb compile failed, default_target_compile: Can't find gccgo.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.go/methods.exp ...
gdb compile failed, default_target_compile: Can't find gccgo.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.go/package.exp ...
gdb compile failed, default_target_compile: Can't find gccgo.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.go/print.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.go/strings.exp ...
gdb compile failed, default_target_compile: Can't find gccgo.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.go/types.exp ...
gdb compile failed, default_target_compile: Can't find gccgo.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.go/unsafe.exp ...
gdb compile failed, default_target_compile: Can't find gccgo.

		=== gdb Summary ===

# of expected passes		44
# of expected failures		4
# of untested testcases		9
[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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 thomas on Fri Jun 14 12:29:16 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.java/jmain.exp ...
KPASS: gdb.java/jmain.exp: break jmain.main (PRMS java/1565)
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.java/jmisc.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.java/jnpe.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.java/jprint.exp ...
XPASS: gdb.java/jprint.exp: print a java.util.Properties (PRMS gcc/43260)
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.java/jv-exp.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.java/jv-print.exp ...

		=== gdb Summary ===

# of expected passes		88
# of unexpected successes	1
# of expected failures		1
# of unknown successes		1
# of known failures		2
# of unsupported tests		1
[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

make[4]: *** [check-gdb.java] Error 1
rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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.linespec --outdir=gdb.linespec 
Test Run By thomas on Fri Jun 14 12:30:06 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.linespec/break-ask.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.linespec/linespec.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.linespec/ls-dollar.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.linespec/ls-errs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.linespec/macro-relative.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.linespec/skip-two.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.linespec/thread.exp ...

		=== gdb Summary ===

# of expected passes		204
[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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 thomas on Fri Jun 14 12:30:35 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/dw2-ref-missing-frame.exp ...
FAIL: gdb.mi/dw2-ref-missing-frame.exp: test func_nofb_marker
FAIL: gdb.mi/dw2-ref-missing-frame.exp: test func_loopfb_var
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/gdb2549.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/gdb669.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/gdb680.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/gdb701.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/gdb792.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-async.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-basics.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-break.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-breakpoint-changed.exp ...
FAIL: gdb.mi/mi-breakpoint-changed.exp: catch syscall
FAIL: gdb.mi/mi-breakpoint-changed.exp: dprintf marker, "arg" "
FAIL: gdb.mi/mi-breakpoint-changed.exp: delete 6
FAIL: gdb.mi/mi-breakpoint-changed.exp: pending resolved: breakpoint on pendfunc3 resolved
FAIL: gdb.mi/mi-breakpoint-changed.exp: pending resolved: continue to marker 2 (timeout)
FAIL: gdb.mi/mi-breakpoint-changed.exp: pending resolved: continuing to exit (MI error)
FAIL: gdb.mi/mi-breakpoint-changed.exp: pending resolved: breakpoint on pendfunc3 pending again (timeout)
FAIL: gdb.mi/mi-breakpoint-changed.exp: pending resolved: (unknown output after running)
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-catch-load.exp ...
FAIL: gdb.mi/mi-catch-load.exp: catch-load: solib-event stop
FAIL: gdb.mi/mi-catch-load.exp: catch-unload: solib-event stop
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-cli.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-cmd-param-changed.exp ...
FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: "set scheduler-locking on"
FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: "set scheduler-locking off"
FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: "set scheduler-locking step"
FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: interpreter-exec "set scheduler-locking on"
FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: interpreter-exec "set scheduler-locking off"
FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: interpreter-exec "set scheduler-locking step"
FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: "set scheduler-locking on" no event (requested by MI)
FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: "set scheduler-locking step" no event (requested by MI interp)
FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: "set scheduler-locking stepr" no event
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-console.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-disassemble.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-dprintf.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-eval.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-file-transfer.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-file.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-fill-memory.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-fullname-deleted.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-hack-cli.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-info-os.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-inheritance-syntax-error.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-logging.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-memory-changed.exp ...
FAIL: gdb.mi/mi-memory-changed.exp: create objvar for C
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-nonstop-exit.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-nonstop.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-ns-stale-regcache.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-nsintrall.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-nsmoribund.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-nsthrexec.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-pending.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-pthreads.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-read-memory.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-record-changed.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-regs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-return.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-reverse.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-simplerun.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-solib.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-stack.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-stepi.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-stepn.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-syn-frame.exp ...
FAIL: gdb.mi/mi-syn-frame.exp: list stack frames
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-until.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-var-block.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-var-child-f.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-var-child.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-var-cmd.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-var-cp.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-var-create-rtti.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-var-display.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-var-invalidate.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-var-rtti.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-watch-nonstop.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi-watch.exp ...
XPASS: gdb.mi/mi-watch.exp: sw: watchpoint trigger
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi2-amd64-entry-value.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi2-prompt.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/mi2-var-child.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.mi/pr11022.exp ...
FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)

		=== gdb Summary ===

# of expected passes		1653
# of unexpected failures	25
# of unexpected successes	1
# of expected failures		8
# of known failures		6
# of unsupported tests		10
[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

make[4]: *** [check-gdb.mi] Error 1
rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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 thomas on Fri Jun 14 12:33:25 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.modula2/unbounded-array.exp ...

		=== gdb Summary ===

# of expected passes		8
[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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.multi --outdir=gdb.multi 
Test Run By thomas on Fri Jun 14 12:33:29 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.multi/base.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.multi/bkpt-multi-exec.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.multi/multi-arch-exec.exp ...
gdb compile failed, ../../../Ferry_Tagscherer/gdb/testsuite/gdb.multi/multi-arch-exec.c:1:0: sorry, unimplemented: 64-bit mode not compiled in
 /* This testcase is part of GDB, the GNU debugger.
 ^
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.multi/multi-arch.exp ...
gdb compile failed, ../../../Ferry_Tagscherer/gdb/testsuite/gdb.multi/hello.c:1:0: sorry, unimplemented: 64-bit mode not compiled in
 /* This testcase is part of GDB, the GNU debugger.
 ^
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.multi/watchpoint-multi.exp ...
FAIL: gdb.multi/watchpoint-multi.exp: start to main inferior 2
FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
FAIL: gdb.multi/watchpoint-multi.exp: setting breakpoint at marker_exit
FAIL: gdb.multi/watchpoint-multi.exp: awatch b on inferior 1
FAIL: gdb.multi/watchpoint-multi.exp: switch to inferior 2 again
FAIL: gdb.multi/watchpoint-multi.exp: catch c on inferior 2
FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 2
FAIL: gdb.multi/watchpoint-multi.exp: switch back to inferior 1 again
FAIL: gdb.multi/watchpoint-multi.exp: catch b on inferior 1
FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1

		=== gdb Summary ===

# of expected passes		31
# of unexpected failures	10
# of untested testcases		2
[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

make[4]: *** [check-gdb.multi] Error 1
rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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 thomas on Fri Jun 14 12:33:39 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.objc/basicclass.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.objc/nondebug.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.objc/objcdecode.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.objc/print.exp ...

		=== gdb Summary ===

# of expected passes		13
# of unsupported tests		3
[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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.opencl --outdir=gdb.opencl 
Test Run By thomas on Fri Jun 14 12:33:51 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.opencl/callfuncs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.opencl/convs_casts.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.opencl/datatypes.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.opencl/operators.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.opencl/vec_comps.exp ...

		=== gdb Summary ===

[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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 thomas on Fri Jun 14 12:33:55 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.opt/clobbered-registers-O2.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.opt/inline-break.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.opt/inline-bt.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.opt/inline-cmds.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.opt/inline-locals.exp ...

		=== gdb Summary ===

# of expected passes		95
# of expected failures		1
# of known failures		1
[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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 thomas on Fri Jun 14 12:34:12 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.pascal/floats.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.pascal/gdb11492.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.pascal/hello.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.pascal/integers.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.pascal/print.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.pascal/types.exp ...

		=== gdb Summary ===

# of expected passes		23
# of known failures		1
# of untested testcases		2
# of unsupported tests		4
[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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 thomas on Fri Jun 14 12:34:15 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/lib-types.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-arch.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-block.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-breakpoint.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-cmd.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-error.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-events.exp ...
FAIL: gdb.python/py-events.exp: inferior 2
FAIL: gdb.python/py-events.exp: Inferior 2 terminated. (the program is no longer running)
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-evsignal.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-evthreads.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-explore-cc.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-explore.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-finish-breakpoint.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-finish-breakpoint2.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-frame-inline.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-frame.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-framefilter-mi.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-framefilter.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-function.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-inferior.exp ...
FAIL: gdb.python/py-inferior.exp: test Inferior.threads
FAIL: gdb.python/py-inferior.exp: test Inferior.threads 2
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-infthread.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-mi.exp ...
FAIL: gdb.python/py-mi.exp: varobj update 1
FAIL: gdb.python/py-mi.exp: varobj update 2
FAIL: gdb.python/py-mi.exp: varobj update after choosing default
FAIL: gdb.python/py-mi.exp: varobj update after choosing via expression
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-objfile-script.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-objfile.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-parameter.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-pp-maint.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-prettyprint.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-progspace.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-prompt.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-section-script.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-shared.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-strfns.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-symbol.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-symtab.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-template.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-type.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-typeprint.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-value-cc.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/py-value.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.python/python.exp ...
ERROR: Process no longer exists
ERROR: Couldn't send python print (someVal) to GDB.
ERROR: Couldn't send python gdb.post_event(str(1)) to GDB.
ERROR: Couldn't send show height to GDB.
ERROR: Couldn't send set height 10 to GDB.
ERROR: Couldn't send python print ("\n" * 10) to GDB.
ERROR: Couldn't send q to GDB.
ERROR: Couldn't send python if gdb.execute('python print ("\\n" * 10)', to_string=True) == "\n" * 11: print ("yes") to GDB.
ERROR: Couldn't send python print ("\n" * 10) to GDB.
ERROR: Couldn't send q to GDB.
ERROR: Couldn't send set height 0 to GDB.
ERROR: Couldn't send python a = gdb.execute('help', to_string=True) to GDB.
ERROR: Couldn't send python print (a) to GDB.
ERROR: Couldn't send python nothread = gdb.selected_thread() to GDB.
ERROR: Couldn't send python print (nothread == None) to GDB.
ERROR: Couldn't send python to GDB.
ERROR OCCURED: : spawn id exp8 not open
    while executing
"expect {
-i exp8 -timeout 10 
    -re "good bye world" {
	pass "atexit handling"
    }
    default {
	fail "atexit handling"
    }
}"
    ("uplevel" body line 1)
    invoked from within
"uplevel $body" NONE : spawn id exp8 not openFAIL: gdb.python/python.exp: atexit handling

		=== gdb Summary ===

# of expected passes		1506
# of unexpected failures	9
# of unresolved testcases	16
# of untested testcases		1
# of unsupported tests		3
[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

make[4]: *** [check-gdb.python] Error 1
rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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 thomas on Fri Jun 14 12:37:22 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/amd64-tailcall-reverse.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/break-precsave.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/break-reverse.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/consecutive-precsave.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/consecutive-reverse.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/finish-precsave.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/finish-reverse-bkpt.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/finish-reverse.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/i386-precsave.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/i386-reverse.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/i386-sse-reverse.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/i387-env-reverse.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/i387-stack-reverse.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/machinestate-precsave.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/machinestate.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/next-reverse-bkpt-over-sr.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/sigall-precsave.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/sigall-reverse.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/singlejmp-reverse.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/solib-precsave.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/solib-reverse.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/step-precsave.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/step-reverse.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/until-precsave.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/until-reverse.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/watch-precsave.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.reverse/watch-reverse.exp ...

		=== gdb Summary ===

[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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 thomas on Fri Jun 14 12:37:25 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.server/ext-attach.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.server/ext-run.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.server/file-transfer.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.server/no-thread-db.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.server/server-exec-info.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.server/server-kill.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.server/server-mon.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.server/server-run.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.server/solib-list.exp ...

		=== gdb Summary ===

[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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 thomas on Fri Jun 14 12:37:27 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.stabs/exclfwd.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.stabs/gdb11479.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.stabs/weird.exp ...

		=== gdb Summary ===

# of expected passes		212
# of expected failures		7
[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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 thomas on Fri Jun 14 12:37:40 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/attach-into-signal.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/attach-stopped.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/bp_in_thread.exp ...
FAIL: gdb.threads/bp_in_thread.exp: run to noreturn
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/clone-new-thread-event.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/corethreads.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/create-fail.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/current-lwp-dead.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/dlopen-libpthread.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/execl.exp ...
FAIL: gdb.threads/execl.exp: info threads before exec
FAIL: gdb.threads/execl.exp: continue across exec
FAIL: gdb.threads/execl.exp: continue until exit
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/fork-child-threads.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/fork-thread-pending.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/gcore-thread.exp ...
FAIL: gdb.threads/gcore-thread.exp: thread 1 is running
FAIL: gdb.threads/gcore-thread.exp: thread 2 is running
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/hand-call-in-threads.exp ...
FAIL: gdb.threads/hand-call-in-threads.exp: enable scheduler locking
FAIL: gdb.threads/hand-call-in-threads.exp: show scheduler locking on
FAIL: gdb.threads/hand-call-in-threads.exp: hand call, thread 5 (timeout)
FAIL: gdb.threads/hand-call-in-threads.exp: set confirm off (timeout)
FAIL: gdb.threads/hand-call-in-threads.exp: prepare to discard hand call, thread 1 (timeout)
FAIL: gdb.threads/hand-call-in-threads.exp: dummy stack frame number, thread 1
FAIL: gdb.threads/hand-call-in-threads.exp: setting frame, thread 1 (timeout)
FAIL: gdb.threads/hand-call-in-threads.exp: discard hand call, thread 1 (timeout)
FAIL: gdb.threads/hand-call-in-threads.exp: prepare to discard hand call, thread 2 (timeout)
FAIL: gdb.threads/hand-call-in-threads.exp: dummy stack frame number, thread 2
FAIL: gdb.threads/hand-call-in-threads.exp: setting frame, thread 2 (timeout)
FAIL: gdb.threads/hand-call-in-threads.exp: discard hand call, thread 2 (timeout)
FAIL: gdb.threads/hand-call-in-threads.exp: prepare to discard hand call, thread 3 (timeout)
FAIL: gdb.threads/hand-call-in-threads.exp: dummy stack frame number, thread 3
FAIL: gdb.threads/hand-call-in-threads.exp: setting frame, thread 3 (timeout)
FAIL: gdb.threads/hand-call-in-threads.exp: discard hand call, thread 3 (timeout)
FAIL: gdb.threads/hand-call-in-threads.exp: prepare to discard hand call, thread 4 (timeout)
FAIL: gdb.threads/hand-call-in-threads.exp: dummy stack frame number, thread 4
FAIL: gdb.threads/hand-call-in-threads.exp: setting frame, thread 4 (timeout)
FAIL: gdb.threads/hand-call-in-threads.exp: discard hand call, thread 4 (timeout)
FAIL: gdb.threads/hand-call-in-threads.exp: prepare to discard hand call, thread 5 (timeout)
FAIL: gdb.threads/hand-call-in-threads.exp: dummy stack frame number, thread 5
FAIL: gdb.threads/hand-call-in-threads.exp: setting frame, thread 5 (timeout)
FAIL: gdb.threads/hand-call-in-threads.exp: discard hand call, thread 5 (timeout)
FAIL: gdb.threads/hand-call-in-threads.exp: all dummies popped (timeout)
FAIL: gdb.threads/hand-call-in-threads.exp: disable scheduler locking (timeout)
FAIL: gdb.threads/hand-call-in-threads.exp: show scheduler locking off (timeout)
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/ia64-sigill.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/interrupted-hand-call.exp ...
FAIL: gdb.threads/interrupted-hand-call.exp: hand-call interrupted by signal in another thread
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/killed.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/leader-exit.exp ...
FAIL: gdb.threads/leader-exit.exp: continue to breakpoint: break-here
FAIL: gdb.threads/leader-exit.exp: Single thread has been left
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/linux-dp.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/local-watch-wrong-thread.exp ...
FAIL: gdb.threads/local-watch-wrong-thread.exp: continue to thread_function0
FAIL: gdb.threads/local-watch-wrong-thread.exp: set local watchpoint on *myp
FAIL: gdb.threads/local-watch-wrong-thread.exp: local watchpoint triggers
FAIL: gdb.threads/local-watch-wrong-thread.exp: set local watchpoint on *myp, with false conditional
FAIL: gdb.threads/local-watch-wrong-thread.exp: breakpoint on the other thread
FAIL: gdb.threads/local-watch-wrong-thread.exp: the other thread stopped on breakpoint
FAIL: gdb.threads/local-watch-wrong-thread.exp: delete 5
FAIL: gdb.threads/local-watch-wrong-thread.exp: local watchpoint is still in breakpoint list
FAIL: gdb.threads/local-watch-wrong-thread.exp: let local watchpoint trigger
FAIL: gdb.threads/local-watch-wrong-thread.exp: local watchpoint still triggers (the program is no longer running)
FAIL: gdb.threads/local-watch-wrong-thread.exp: let thread_function0 return
FAIL: gdb.threads/local-watch-wrong-thread.exp: breakpoint on thread_function0's caller
FAIL: gdb.threads/local-watch-wrong-thread.exp: local watchpoint automatically deleted (the program is no longer running)
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/manythreads.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/multi-create.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/no-unwaited-for-left.exp ...
FAIL: gdb.threads/no-unwaited-for-left.exp: continue to breakpoint: break-here
FAIL: gdb.threads/no-unwaited-for-left.exp: enable scheduler-locking, for thread 2
FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
FAIL: gdb.threads/no-unwaited-for-left.exp: only main thread left, thread 2 terminated
FAIL: gdb.threads/no-unwaited-for-left.exp: disable scheduler-locking, letting new thread start
FAIL: gdb.threads/no-unwaited-for-left.exp: continue to breakpoint: break-here-2
FAIL: gdb.threads/no-unwaited-for-left.exp: enable scheduler-locking, for main thread
FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits (the program is no longer running)
FAIL: gdb.threads/no-unwaited-for-left.exp: only thread 3 left, main thread terminated
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/non-ldr-exc-1.exp ...
FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched0: continue to breakpoint: break-here
FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched0: continue over exec
FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched1: continue to breakpoint: break-here
FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched1: set scheduler-locking on
FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched1: continue over exec
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/non-ldr-exc-2.exp ...
FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched0: continue to breakpoint: break-here
FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched0: single thread left
FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched0: continue over exec
FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched1: continue to breakpoint: break-here
FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched1: single thread left
FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched1: set scheduler-locking on
FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched1: continue over exec
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/non-ldr-exc-3.exp ...
FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched0: continue to breakpoint: break-here
FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched0: continue over exec
FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched1: continue to breakpoint: break-here
FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched1: set scheduler-locking on
FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched1: continue over exec
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/non-ldr-exc-4.exp ...
FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched0: continue to breakpoint: break-here
FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched0: continue over exec
FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched1: continue to breakpoint: break-here
FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched1: set scheduler-locking on
FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched1: continue over exec
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/pending-step.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/print-threads.exp ...
FAIL: gdb.threads/print-threads.exp: all threads ran once
FAIL: gdb.threads/print-threads.exp: all threads ran once
FAIL: gdb.threads/print-threads.exp: all threads ran once
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/pthread_cond_wait.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/pthreads.exp ...
FAIL: gdb.threads/pthreads.exp: Continue to creation of first thread
FAIL: gdb.threads/pthreads.exp: Continue to creation of second thread
FAIL: gdb.threads/pthreads.exp: get thread 2 id
FAIL: gdb.threads/pthreads.exp: continue until common routine run 15 times
FAIL: gdb.threads/pthreads.exp: continue with all threads running (the program is no longer running)
FAIL: gdb.threads/pthreads.exp: set var common_routine::hits=0
FAIL: gdb.threads/pthreads.exp: set var common_routine::from_thread1=0
FAIL: gdb.threads/pthreads.exp: set var common_routine::from_thread2=0
FAIL: gdb.threads/pthreads.exp: set var common_routine::from_main=0
FAIL: gdb.threads/pthreads.exp: set var common_routine::full_coverage=0
FAIL: gdb.threads/pthreads.exp: continue until common routine run 15 times (the program is no longer running)
FAIL: gdb.threads/pthreads.exp: check backtrace from main thread
FAIL: gdb.threads/pthreads.exp: check backtrace from thread 1
FAIL: gdb.threads/pthreads.exp: check backtrace from thread 2
FAIL: gdb.threads/pthreads.exp: apply backtrace command to all three threads
FAIL: gdb.threads/pthreads.exp: set break at common_routine in thread 2
FAIL: gdb.threads/pthreads.exp: continue to bkpt at common_routine in thread 2 (the program is no longer running)
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/schedlock.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/siginfo-threads.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/sigstep-threads.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/sigthread.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/staticthreads.exp ...
Running ../../../Ferry_Tagscherer/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 ../../../Ferry_Tagscherer/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 ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/thread-find.exp ...
FAIL: gdb.threads/thread-find.exp: name thread 1
FAIL: gdb.threads/thread-find.exp: name thread 2
FAIL: gdb.threads/thread-find.exp: name thread 3
FAIL: gdb.threads/thread-find.exp: find thread name 3
FAIL: gdb.threads/thread-find.exp: find thread name 2
FAIL: gdb.threads/thread-find.exp: find thread name 1
ERROR: tcl error sourcing ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/thread-find.exp.
ERROR: can't read "thread3": no such variable
    while executing
"gdb_test "thread find $thread3"  "Thread 3 has .*$thread3.*" "find thread id 3""
    invoked from within
"if { [info exists thread6] } then {
    gdb_test "thread find $thread6" \
	"Thread 6 has .*$thread6.*" "find thread id 6"
    gdb_test "thread find $t..."
    (file "../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/thread-find.exp" line 187)
    invoked from within
"source ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/thread-find.exp"
    ("uplevel" body line 1)
    invoked from within
"uplevel #0 source ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/thread-find.exp"
    invoked from within
"catch "uplevel #0 source $test_file_name""
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/thread-specific.exp ...
FAIL: gdb.threads/thread-specific.exp: continue to thread-specific breakpoint
ERROR: tcl error sourcing ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/thread-specific.exp.
ERROR: can't read "this_breakpoint": no such variable
    while executing
"gdb_test_multiple "info breakpoint $this_breakpoint" "info on bp" {
    -re ".*stop only in thread (\[0-9\]*).*$gdb_prompt $" {
	set this_thread $expe..."
    (file "../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/thread-specific.exp" line 108)
    invoked from within
"source ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/thread-specific.exp"
    ("uplevel" body line 1)
    invoked from within
"uplevel #0 source ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/thread-specific.exp"
    invoked from within
"catch "uplevel #0 source $test_file_name""
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/thread-unwindonsignal.exp ...
FAIL: gdb.threads/thread-unwindonsignal.exp: hand-call interrupted by signal in another thread
FAIL: gdb.threads/thread-unwindonsignal.exp: dummy stack frame present
FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit (the program is no longer running)
Running ../../../Ferry_Tagscherer/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 ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/thread_events.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/threadapply.exp ...
Running ../../../Ferry_Tagscherer/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 ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/tls-nodebug.exp ...
FAIL: gdb.threads/tls-nodebug.exp: thread local storage
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/tls-shared.exp ...
FAIL: gdb.threads/tls-shared.exp: print thread local storage variable
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/tls-var.exp ...
FAIL: gdb.threads/tls-var.exp: print tls_var
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/tls.exp ...
FAIL: gdb.threads/tls.exp: continue to first thread: no progress?
FAIL: gdb.threads/tls.exp: first thread print me
FAIL: gdb.threads/tls.exp: first thread local storage
FAIL: gdb.threads/tls.exp: first another thread local storage
FAIL: gdb.threads/tls.exp: continue to second thread
FAIL: gdb.threads/tls.exp: second thread print me
FAIL: gdb.threads/tls.exp: second thread local storage
FAIL: gdb.threads/tls.exp: second another thread local storage
FAIL: gdb.threads/tls.exp: continue to third thread
FAIL: gdb.threads/tls.exp: at least one th in spin while stopped at third th
FAIL: gdb.threads/tls.exp: third thread print me
FAIL: gdb.threads/tls.exp: third thread local storage
FAIL: gdb.threads/tls.exp: third another thread local storage
FAIL: gdb.threads/tls.exp: continue to synch point (the program is no longer running)
FAIL: gdb.threads/tls.exp: get number of threads
FAIL: gdb.threads/tls.exp: No thread backtrace reported spin (vsyscall kernel problem?)
FAIL: gdb.threads/tls.exp: threads exited (the program is no longer running)
FAIL: gdb.threads/tls.exp: mess at end
FAIL: gdb.threads/tls.exp: info address me
FAIL: gdb.threads/tls.exp: p a_thread_local
FAIL: gdb.threads/tls.exp: p file2_thread_local
FAIL: gdb.threads/tls.exp: p a_thread_local second time
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/watchpoint-fork.exp ...
FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints work (timeout)
FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (timeout)
FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the first fork (timeout)
FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork (timeout)
FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (timeout)
FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (timeout)
FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (timeout)
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/watchthreads-reorder.exp ...
Running ../../../Ferry_Tagscherer/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 ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/watchthreads2.exp ...
FAIL: gdb.threads/watchthreads2.exp: run to thread_started
FAIL: gdb.threads/watchthreads2.exp: run to thread_started
FAIL: gdb.threads/watchthreads2.exp: run to thread_started
FAIL: gdb.threads/watchthreads2.exp: run to thread_started (the program is no longer running)
FAIL: gdb.threads/watchthreads2.exp: all threads started
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.threads/wp-replication.exp ...
FAIL: gdb.threads/wp-replication.exp: No hardware watchpoints available

		=== gdb Summary ===

# of expected passes		175
# of unexpected failures	164
# of untested testcases		4
# of unsupported tests		9
[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

make[4]: *** [check-gdb.threads] Error 1
rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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 thomas on Fri Jun 14 12:45:46 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/actions-changed.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/actions.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/ax.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/backtrace.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/change-loc.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/circ.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/collection.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/deltrace.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/disconnected-tracing.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/ftrace.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/infotrace.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/mi-trace-unavailable.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/mi-traceframe-changed.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/mi-tracepoint-changed.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/mi-tsv-changed.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/packetlen.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/passc-dyn.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/passcount.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/pending.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/qtro.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/range-stepping.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/report.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/save-trace.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/stap-trace.exp ...
gdb compile failed, ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/stap-trace.c:34:21: fatal error: sys/sdt.h: No such file or directory
 #include <sys/sdt.h>
                     ^
compilation terminated.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/status-stop.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/strace.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/tfile.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/tfind.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/trace-break.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/trace-buffer-size.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/trace-mt.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/tracecmd.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/tspeed.exp ...
gdb compile failed, gcc: error: [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../gdbserver/libinproctrace.so: No such file or directory
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/tstatus.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/tsv.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/unavailable.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/while-dyn.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.trace/while-stepping.exp ...

		=== gdb Summary ===

# of expected passes		241
# of untested testcases		3
# of unsupported tests		29
[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

rootme=`pwd`; export rootme; srcdir=../../../Ferry_Tagscherer/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 thomas on Fri Jun 14 12:47:07 2013
Native configuration is i686-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 ../../../Ferry_Tagscherer/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.xml/maint_print_struct.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.xml/tdesc-arch.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.xml/tdesc-errors.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.xml/tdesc-regs.exp ...
Running ../../../Ferry_Tagscherer/gdb/testsuite/gdb.xml/tdesc-xinclude.exp ...

		=== gdb Summary ===

# of expected passes		26
# of known failures		1
[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../../gdb/gdb version  7.6.50.20130613-cvs -nw -nx -data-directory [...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite/../data-directory 

make[4]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite'
make[3]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb/testsuite'
make[2]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build/gdb'
make[1]: Nothing to be done for `check-target'.
make[1]: Leaving directory `[...]/tschwinge/Ferry_Tagscherer.build'