summaryrefslogtreecommitdiff
path: root/binutils-gdb/laplace.SCHWINGE/log_test
blob: c19cffc785204365966fca6630e952b7d8b4c0d6 (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
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
make[1]: Entering directory '[...]/tschwinge/W._C._Handy.build'
make[2]: Entering directory '[...]/tschwinge/W._C._Handy.build/bfd'
make  check-recursive
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/bfd'
Making check in doc
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/bfd/doc'
make[4]: Nothing to be done for 'check'.
make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/bfd/doc'
Making check in po
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/bfd/po'
make[4]: Nothing to be done for 'check'.
make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/bfd/po'
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/bfd'
make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/bfd'
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/bfd'
make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/bfd'
make[2]: Entering directory '[...]/tschwinge/W._C._Handy.build/opcodes'
Making check in .
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/opcodes'
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/opcodes'
Making check in po
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/opcodes/po'
make[3]: Nothing to be done for 'check'.
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/opcodes/po'
make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/opcodes'
make[2]: Entering directory '[...]/tschwinge/W._C._Handy.build/binutils'
make  check-recursive
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/binutils'
Making check in doc
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/binutils/doc'
make[4]: Nothing to be done for 'check'.
make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/binutils/doc'
Making check in po
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/binutils/po'
make[4]: Nothing to be done for 'check'.
make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/binutils/po'
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/binutils'
make  check-DEJAGNU
make[5]: Entering directory '[...]/tschwinge/W._C._Handy.build/binutils'
Making a new site.exp file...
srcdir=`cd ../../W._C._Handy/binutils && pwd`; export srcdir; \
r=`pwd`; export r; \
LC_ALL=C; export LC_ALL; \
EXPECT=expect; export EXPECT; \
runtest=runtest; \
if /bin/dash -c "$runtest --version" > /dev/null 2>&1; then \
  CC_FOR_TARGET="gcc-4.9" CFLAGS_FOR_TARGET="-g -O2" \
	$runtest --tool binutils --srcdir ${srcdir}/testsuite \
		; \
else echo "WARNING: could not find \`runtest'" 1>&2; :;\
fi
WARNING: Couldn't find tool init file
Test Run By thomas on Thu Nov  5 14:03:53 2015
Native configuration is i686-unknown-gnu0.6

		=== binutils 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 [...]/tschwinge/W._C._Handy/binutils/testsuite/config/default.exp as tool-and-target-specific interface file.
Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/aarch64/aarch64.exp ...
Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/ar.exp ...
Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/arm/objdump.exp ...
Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/bfin/objdump.exp ...
Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/compress.exp ...
XPASS: objcopy compress debug sections in archive with zlib-gnu
Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/dlltool.exp ...
Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/elfedit.exp ...
Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/hppa/objdump.exp ...
Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/i386/i386.exp ...
Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/m68k/objdump.exp ...
Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/mips/mips.exp ...
Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/nm.exp ...
Version [...]/tschwinge/W._C._Handy.build/binutils/nm-new 2.25.51.20150819
Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/objcopy.exp ...
Version [...]/tschwinge/W._C._Handy.build/binutils/objcopy 2.25.51.20150819
Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/objdump.exp ...
Version [...]/tschwinge/W._C._Handy.build/binutils/objdump 2.25.51.20150819
Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/readelf.exp ...
Version [...]/tschwinge/W._C._Handy.build/binutils/readelf 2.25.51.20150819
Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/size.exp ...
Version [...]/tschwinge/W._C._Handy.build/binutils/size 2.25.51.20150819
Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/update-section.exp ...
Version [...]/tschwinge/W._C._Handy.build/binutils/objcopy 2.25.51.20150819
Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/vax/objdump.exp ...
Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/windres/windres.exp ...
Running [...]/tschwinge/W._C._Handy/binutils/testsuite/binutils-all/x86-64/x86-64.exp ...

		=== binutils Summary ===

# of expected passes		124
# of unexpected successes	1
# of unsupported tests		4
Makefile:1287: recipe for target 'check-DEJAGNU' failed
make[5]: *** [check-DEJAGNU] Error 1
make[5]: Leaving directory '[...]/tschwinge/W._C._Handy.build/binutils'
Makefile:1134: recipe for target 'check-am' failed
make[4]: *** [check-am] Error 2
make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/binutils'
Makefile:981: recipe for target 'check-recursive' failed
make[3]: *** [check-recursive] Error 1
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/binutils'
Makefile:1136: recipe for target 'check' failed
make[2]: *** [check] Error 2
make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/binutils'
Makefile:3650: recipe for target 'check-binutils' failed
make[1]: *** [check-binutils] Error 2
make[2]: Entering directory '[...]/tschwinge/W._C._Handy.build/etc'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/etc'
make[2]: Entering directory '[...]/tschwinge/W._C._Handy.build/gas'
Making check in doc
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/gas/doc'
make[3]: Nothing to be done for 'check'.
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gas/doc'
Making check in po
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/gas/po'
make[3]: Nothing to be done for 'check'.
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gas/po'
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/gas'
make  check-DEJAGNU
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/gas'
Making a new site.exp file...
if [ -d testsuite ]; then \
  true; \
else \
  mkdir testsuite; \
fi
rm -f testsuite/site.exp
cp site.exp testsuite/site.exp
rootme=`pwd`; export rootme; \
srcdir=`cd ../../W._C._Handy/gas; pwd` ; export srcdir ; \
LC_ALL=C; export LC_ALL; \
EXPECT=expect ; export EXPECT ; \
runtest=runtest; \
cd testsuite; \
if /bin/dash -c "$runtest --version" > /dev/null 2>&1; then \
  $runtest --tool gas --srcdir ${srcdir}/testsuite \
	; \
else echo "WARNING: could not find \`runtest'" 1>&2; :;\
fi
WARNING: Couldn't find tool init file
Test Run By thomas on Thu Nov  5 14:04:08 2015
Native configuration is i686-unknown-gnu0.6

		=== gas 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 [...]/tschwinge/W._C._Handy/gas/testsuite/config/default.exp as tool-and-target-specific interface file.
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/aarch64/aarch64.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/all/gas.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/alpha/alpha.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/arc/arc.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/arc/warn.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/arm/arm.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/avr/avr.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/bfin/bfin.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/bfin/error.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/cfi/cfi.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/cr16/cr16.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/cr16/pic.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/cris/cris.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/crx/allinsn.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/d10v/d10v.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/d30v/d30.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/dlx/alltests.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/elf/elf.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/epiphany/allinsn.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/fr30/allinsn.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/fr30/fr30.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/frv/allinsn.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/ft32/ft32.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/h8300/h8300-coff.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/h8300/h8300-elf.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/h8300/h8300.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/h8300/t01_mov.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/h8300/t02_mova.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/h8300/t03_add.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/h8300/t04_sub.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/h8300/t05_cmp.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/h8300/t06_ari2.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/h8300/t07_ari3.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/h8300/t08_or.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/h8300/t09_xor.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/h8300/t10_and.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/h8300/t11_logs.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/h8300/t12_bit.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/h8300/t13_otr.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/hppa/basic/basic.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/hppa/parse/parse.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/hppa/reloc/reloc.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/hppa/unsorted/unsorted.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/i386/i386.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/i386/ilp32/cfi/ilp32.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/i386/ilp32/elf/ilp32.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/i386/ilp32/ilp32.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/i386/ilp32/lns/ilp32.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/i860/i860.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/ia64/ia64.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/ieee-fp/x930509a.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/iq2000/allinsn.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/iq2000/load-hazards.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/iq2000/odd-ldw.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/iq2000/odd-sdw.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/iq2000/yield.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/lm32/all.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/lns/lns.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/m32r/allinsn.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/m32r/error.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/m32r/m32r.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/m32r/m32r2.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/m32r/m32rx.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/m32r/pic.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/m32r/rel32.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/m68hc11/m68hc11.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/m68k-coff/gas.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/m68k/all.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/mach-o/mach-o.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/macros/macros.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/mcore/allinsn.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/mep/allinsn.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/mep/complex-relocs.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/metag/metag.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/microblaze/allinsn.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/microblaze/endian.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/microblaze/relax_size.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/microblaze/reloc_sym.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/microblaze/special_reg.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/mips/mips.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/mmix/mmix-err.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/mmix/mmix-list.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/mmix/mmix.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/mn10200/basic.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/mn10300/basic.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/mri/mri.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/msp430/msp430.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/mt/errors.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/mt/mt.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/mt/relocs.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/nds32/nds32.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/nios2/nios2.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/or1k/allinsn.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/pdp11/pdp11.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/pe/pe.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/pj/pj.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/ppc/aix.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/ppc/ppc.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/rx/rx.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/s390/s390.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/score/relax.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/score/relax_32.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/sh/arch/arch.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/sh/basic.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/sh/err.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/sh/sh64/err.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/sh/sh64/sh64.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/sparc-solaris/addend.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/sparc-solaris/gas.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/sparc/mismatch.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/sparc/sparc.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/sun4/addend.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/symver/symver.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/tic4x/tic4x.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/tic54x/tic54x.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/tic6x/tic6x.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/tilegx/tilegx.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/tilepro/tilepro.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/v850/basic.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/vax/vax.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/visium/error.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/visium/visium.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/xc16x/xc16x.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/xgate/xgate.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/xstormy16/allinsn.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/xtensa/all.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/xtensa/xtensa-err.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/z80/z80.exp ...
Running [...]/tschwinge/W._C._Handy/gas/testsuite/gas/z8k/z8k.exp ...

		=== gas Summary ===

# of expected passes		506
../as-new 2.25.51.20150819

make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gas'
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gas'
make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gas'
make[2]: Entering directory '[...]/tschwinge/W._C._Handy.build/libiberty'
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/libiberty/testsuite'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/libiberty/testsuite'
make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/libiberty'
make[2]: Entering directory '[...]/tschwinge/W._C._Handy.build/intl'
make[2]: Nothing to be done for 'all'.
make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/intl'
make[2]: Entering directory '[...]/tschwinge/W._C._Handy.build/zlib'
true "AR_FLAGS=rc" "CC_FOR_BUILD=gcc-4.9" "CFLAGS=-g -O2" "CXXFLAGS=-g -O2" "CFLAGS_FOR_BUILD=-g -O2" "CFLAGS_FOR_TARGET=-g -O2" "INSTALL=/usr/bin/install -c" "INSTALL_DATA=/usr/bin/install -c -m 644" "INSTALL_PROGRAM=/usr/bin/install -c" "INSTALL_SCRIPT=/usr/bin/install -c" "LDFLAGS=-static-libstdc++ -static-libgcc " "LIBCFLAGS=-g -O2" "LIBCFLAGS_FOR_TARGET=-g -O2" "MAKE=make" "MAKEINFO=makeinfo --split-size=5000000 --split-size=5000000 " "PICFLAG=" "PICFLAG_FOR_TARGET=" "SHELL=/bin/dash" "EXPECT=expect" "RUNTEST=runtest" "RUNTESTFLAGS=" "exec_prefix=[...]/tschwinge/W._C._Handy.build.install" "infodir=[...]/tschwinge/W._C._Handy.build.install/share/info" "libdir=[...]/tschwinge/W._C._Handy.build.install/lib" "prefix=[...]/tschwinge/W._C._Handy.build.install" "tooldir=[...]/tschwinge/W._C._Handy.build.install/i686-unknown-gnu0.6" "AR=ar" "AS=as" "CC=gcc-4.9" "CXX=g++-4.9" "LD=ld" "LIBCFLAGS=-g -O2" "NM=nm" "PICFLAG=" "RANLIB=ranlib" "DESTDIR=" DO=all multi-do # make
make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/zlib'
make[2]: Entering directory '[...]/tschwinge/W._C._Handy.build/bfd'
Making info in doc
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/bfd/doc'
make[3]: Nothing to be done for 'info'.
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/bfd/doc'
Making info in po
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/bfd/po'
make[3]: Nothing to be done for 'info'.
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/bfd/po'
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/bfd'
make[3]: Nothing to be done for 'info-am'.
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/bfd'
make  all-recursive
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/bfd'
Making all in doc
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/bfd/doc'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/bfd/doc'
Making all in po
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/bfd/po'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/bfd/po'
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/bfd'
make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/bfd'
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/bfd'
make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/bfd'
make[2]: Entering directory '[...]/tschwinge/W._C._Handy.build/opcodes'
make  all-recursive
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/opcodes'
Making all in .
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/opcodes'
make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/opcodes'
Making all in po
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/opcodes/po'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/opcodes/po'
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/opcodes'
make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/opcodes'
make[2]: Entering directory '[...]/tschwinge/W._C._Handy.build/gas'
make  all-recursive
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/gas'
Making all in doc
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/gas/doc'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gas/doc'
Making all in po
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/gas/po'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gas/po'
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/gas'
make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gas'
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gas'
make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gas'
make[2]: Entering directory '[...]/tschwinge/W._C._Handy.build/binutils'
Making info in doc
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/binutils/doc'
make[3]: Nothing to be done for 'info'.
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/binutils/doc'
Making info in po
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/binutils/po'
make[3]: Nothing to be done for 'info'.
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/binutils/po'
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/binutils'
make[3]: Nothing to be done for 'info-am'.
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/binutils'
make  all-recursive
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/binutils'
Making all in doc
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/binutils/doc'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/binutils/doc'
Making all in po
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/binutils/po'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/binutils/po'
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/binutils'
make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/binutils'
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/binutils'
make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/binutils'
make[2]: Entering directory '[...]/tschwinge/W._C._Handy.build/gold'
Making check in po
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/gold/po'
make[3]: Nothing to be done for 'check'.
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gold/po'
Making check in testsuite
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/gold/testsuite'
make  check-am
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/gold/testsuite'
make  libgoldtest.a object_unittest binary_unittest leb128_unittest icf_virtual_function_folding_test large_symbol_alignment basic_test basic_pic_test eh_test basic_static_test basic_static_pic_test basic_pie_test constructor_test constructor_static_test two_file_test two_file_pic_test two_file_static_test two_file_shared_1_test two_file_shared_2_test two_file_shared_1_pic_2_test two_file_shared_2_pic_1_test two_file_same_shared_test two_file_separate_shared_12_test two_file_separate_shared_21_test two_file_relocatable_test two_file_pie_test pie_copyrelocs_test weak_unresolved_symbols_test two_file_shared_1_nonpic_test two_file_shared_2_nonpic_test two_file_same_shared_nonpic_test two_file_separate_shared_12_nonpic_test two_file_separate_shared_21_nonpic_test two_file_mixed_shared_test two_file_mixed_2_shared_test two_file_mixed_pie_test two_file_strip_test two_file_same_shared_strip_test common_test_1 common_test_2 exception_test exception_shared_1_test exception_shared_2_test exception_same_shared_test exception_separate_shared_12_test exception_separate_shared_21_test exception_static_test weak_test weak_undef_test weak_undef_test_2 weak_undef_nonpic_test weak_alias_test weak_plt copy_test tls_test tls_pic_test tls_pie_test tls_pie_pic_test tls_shared_test tls_shared_ie_test tls_shared_gd_to_ie_test tls_shared_gnu2_gd_to_ie_test tls_shared_gnu2_test tls_static_test tls_static_pic_test tls_shared_nonpic_test many_sections_test many_sections_r_test initpri1 initpri2 initpri3a flagstest_o_specialfile flagstest_compress_debug_sections_none flagstest_compress_debug_sections flagstest_compress_debug_sections_and_build_id_tree flagstest_compress_debug_sections_gnu flagstest_compress_debug_sections_gabi flagstest_o_specialfile_and_compress_debug_sections flagstest_o_ttext_1 ver_test ver_test_2 ver_test_6 ver_test_8 ver_test_9 ver_test_11 ver_test_12 protected_1 protected_2 relro_test relro_now_test relro_strip_test relro_script_test script_test_1 script_test_2 justsyms justsyms_exec binary_test script_test_3 tls_phdrs_script_test tls_script_test script_test_11 script_test_12 script_test_12i dynamic_list_2 thin_archive_test_1 thin_archive_test_2 plugin_test_1 plugin_test_2 plugin_test_3 plugin_test_4 plugin_test_5 plugin_test_6 plugin_test_7 plugin_test_8 plugin_test_10 plugin_test_11 plugin_test_tls exclude_libs_test local_labels_test discard_locals_test  permission_test searched_file_test ifuncmain1static ifuncmain1picstatic ifuncmain1 ifuncmain1pic ifuncmain1vis ifuncmain1vispic ifuncmain1staticpic ifuncmain1pie ifuncmain1vispie ifuncmain1staticpie ifuncmain2static ifuncmain2picstatic ifuncmain2 ifuncmain2pic ifuncmain3 ifuncmain4static ifuncmain4picstatic ifuncmain4 ifuncmain5static ifuncmain5picstatic ifuncmain5 ifuncmain5pic ifuncmain5staticpic ifuncmain5pie ifuncmain6pie ifuncmain7static ifuncmain7picstatic ifuncmain7 ifuncmain7pic ifuncmain7pie ifuncvar start_lib_test ehdr_start_test_1 ehdr_start_test_2 ehdr_start_test_3 ehdr_start_test_5  \
  incremental_test.sh gc_comdat_test.sh gc_tls_test.sh gc_orphan_section_test.sh pr14265.sh gc_dynamic_list_test.sh icf_test.sh icf_keep_unique_test.sh icf_safe_test.sh icf_safe_so_test.sh final_layout.sh text_section_grouping.sh section_sorting_name.sh icf_preemptible_functions_test.sh icf_string_merge_test.sh icf_sht_rel_addend_test.sh merge_string_literals.sh two_file_shared.sh weak_plt.sh tls_pie_test.sh  i386_mov_to_lea.sh debug_msg.sh missing_key_func.sh undef_symbol.sh pr18689.sh ver_test_1.sh ver_test_2.sh ver_test_4.sh ver_test_5.sh ver_test_7.sh ver_test_10.sh relro_test.sh ver_matching_test.sh script_test_3.sh script_test_4.sh script_test_5.sh script_test_6.sh script_test_7.sh script_test_8.sh script_test_9.sh dynamic_list.sh plugin_test_1.sh plugin_test_2.sh plugin_test_3.sh plugin_test_4.sh plugin_test_6.sh plugin_test_7.sh plugin_test_10.sh plugin_test_11.sh plugin_test_tls.sh plugin_final_layout.sh exclude_libs_test.sh discard_locals_test.sh hidden_test.sh retain_symbols_file_test.sh no_version_test.sh strong_ref_weak_def.sh dyn_weak_ref.sh memory_test.sh gdb_index_test_1.sh gdb_index_test_2.sh gdb_index_test_2_gabi.sh gdb_index_test_3.sh gdb_index_test_4.sh ehdr_start_test_4.sh defsym_test.sh script_test_10.sh split_i386.sh     incremental_test.stdout gc_comdat_test.stdout gc_tls_test.stdout gc_orphan_section_test.stdout pr14265.stdout gc_dynamic_list_test.stdout icf_test.map icf_keep_unique_test.stdout icf_safe_test_1.stdout icf_safe_test_2.stdout icf_safe_test.map icf_safe_so_test_1.stdout icf_safe_so_test_2.stdout icf_safe_so_test.map final_layout.stdout text_section_grouping.stdout text_section_no_grouping.stdout section_sorting_name.stdout icf_preemptible_functions_test.stdout icf_string_merge_test.stdout icf_sht_rel_addend_test.stdout merge_string_literals.stdout two_file_shared.dbg weak_plt_shared.so tls_pie_test.stdout  i386_mov_to_lea1.stdout  i386_mov_to_lea2.stdout i386_mov_to_lea3.stdout  i386_mov_to_lea4.stdout i386_mov_to_lea5.stdout i386_mov_to_lea6.stdout i386_mov_to_lea7.stdout i386_mov_to_lea8.stdout debug_msg.err missing_key_func.err debug_msg_cdebug.err debug_msg_cdebug_gabi.err debug_msg_so.err debug_msg_ndebug.err undef_symbol.err flagstest_compress_debug_sections_none.stdout flagstest_compress_debug_sections.stdout flagstest_compress_debug_sections.cmp flagstest_compress_debug_sections.check flagstest_compress_debug_sections_gnu.stdout flagstest_compress_debug_sections_gnu.cmp flagstest_compress_debug_sections_gnu.check flagstest_compress_debug_sections_gabi.stdout flagstest_compress_debug_sections_gabi.cmp flagstest_compress_debug_sections_gabi.check pr18689.stdout flagstest_o_ttext_2 ver_test_1.syms ver_test_2.syms ver_test_4.syms ver_test_5.syms ver_test_7.syms ver_test_10.syms protected_3.err relro_test.stdout ver_matching_test.stdout script_test_3.stdout script_test_4.stdout script_test_5.stdout script_test_6.stdout script_test_7.stdout script_test_8.stdout script_test_9.stdout dynamic_list.stdout plugin_test_1.err plugin_test_2.err plugin_test_3.err plugin_test_4.err plugin_test_6.err plugin_test_7.err plugin_test_7.o.syms plugin_test_9.err plugin_test_10.sections plugin_test_11.err plugin_test_tls.err plugin_final_layout.stdout plugin_final_layout_readelf.stdout exclude_libs_test.syms discard_locals_test.syms discard_locals_relocatable_test1.syms discard_locals_relocatable_test2.syms hidden_test.err retain_symbols_file_test.stdout no_version_test.stdout strong_ref_weak_def.stdout dyn_weak_ref.stdout memory_test.stdout memory_test_2 gdb_index_test_1.stdout gdb_index_test_2.stdout gdb_index_test_2_gabi.stdout gdb_index_test_3.stdout gdb_index_test_4.stdout ehdr_start_test_4.syms defsym_test.syms script_test_10.stdout split_i386_1.stdout split_i386_2.stdout split_i386_3.stdout split_i386_4.stdout split_i386_r.stdout    
make[5]: Entering directory '[...]/tschwinge/W._C._Handy.build/gold/testsuite'
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT test.o -MD -MP -MF .deps/test.Tpo -c -o test.o ../../../W._C._Handy/gold/testsuite/test.cc
mv -f .deps/test.Tpo .deps/test.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT testmain.o -MD -MP -MF .deps/testmain.Tpo -c -o testmain.o ../../../W._C._Handy/gold/testsuite/testmain.cc
mv -f .deps/testmain.Tpo .deps/testmain.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT testfile.o -MD -MP -MF .deps/testfile.Tpo -c -o testfile.o ../../../W._C._Handy/gold/testsuite/testfile.cc
mv -f .deps/testfile.Tpo .deps/testfile.Po
rm -f libgoldtest.a
ar cru libgoldtest.a test.o testmain.o testfile.o 
ar: `u' modifier ignored since `D' is the default (see `U')
ranlib libgoldtest.a
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT object_unittest.o -MD -MP -MF .deps/object_unittest.Tpo -c -o object_unittest.o ../../../W._C._Handy/gold/testsuite/object_unittest.cc
mv -f .deps/object_unittest.Tpo .deps/object_unittest.Po
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o object_unittest | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` object_unittest.o libgoldtest.a ../libgold.a ../../libiberty/libiberty.a   -ldl -L../../zlib -lz -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT binary_unittest.o -MD -MP -MF .deps/binary_unittest.Tpo -c -o binary_unittest.o ../../../W._C._Handy/gold/testsuite/binary_unittest.cc
mv -f .deps/binary_unittest.Tpo .deps/binary_unittest.Po
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o binary_unittest | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` binary_unittest.o libgoldtest.a ../libgold.a ../../libiberty/libiberty.a   -ldl -L../../zlib -lz -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT leb128_unittest.o -MD -MP -MF .deps/leb128_unittest.Tpo -c -o leb128_unittest.o ../../../W._C._Handy/gold/testsuite/leb128_unittest.cc
mv -f .deps/leb128_unittest.Tpo .deps/leb128_unittest.Po
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o leb128_unittest | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` leb128_unittest.o libgoldtest.a ../libgold.a ../../libiberty/libiberty.a   -ldl -L../../zlib -lz -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -fPIE -g -o icf_virtual_function_folding_test.o ../../../W._C._Handy/gold/testsuite/icf_virtual_function_folding_test.cc
test -d gcctestdir || mkdir -p gcctestdir
rm -f gcctestdir/ld
(cd gcctestdir && ln -s ../../ld-new ld)
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o icf_virtual_function_folding_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--icf=all icf_virtual_function_folding_test.o -pie
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT large_symbol_alignment.o -MD -MP -MF .deps/large_symbol_alignment.Tpo -c -o large_symbol_alignment.o ../../../W._C._Handy/gold/testsuite/large_symbol_alignment.cc
mv -f .deps/large_symbol_alignment.Tpo .deps/large_symbol_alignment.Po
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/  -o large_symbol_alignment large_symbol_alignment.o  -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -o basic_test.o ../../../W._C._Handy/gold/testsuite/basic_test.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o basic_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ basic_test.o
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -fpic -o basic_pic_test.o ../../../W._C._Handy/gold/testsuite/basic_test.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o basic_pic_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ basic_pic_test.o
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -o eh_test_a.o ../../../W._C._Handy/gold/testsuite/eh_test_a.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -o eh_test_b.o ../../../W._C._Handy/gold/testsuite/eh_test_b.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o eh_test | sed -e 's/-static-lib\\(gcc\\|stdc++\\)//g'` -Bgcctestdir/ eh_test_a.o eh_test_b.o
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o basic_static_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -static basic_test.o
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o basic_static_pic_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -static basic_pic_test.o
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -fpie -o basic_pie_test.o ../../../W._C._Handy/gold/testsuite/basic_test.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o basic_pie_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -pie basic_pie_test.o
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT constructor_test.o -MD -MP -MF .deps/constructor_test.Tpo -c -o constructor_test.o ../../../W._C._Handy/gold/testsuite/constructor_test.cc
mv -f .deps/constructor_test.Tpo .deps/constructor_test.Po
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/  -o constructor_test constructor_test.o  -ldl 
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -static  -o constructor_static_test constructor_test.o  -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT two_file_test_1.o -MD -MP -MF .deps/two_file_test_1.Tpo -c -o two_file_test_1.o ../../../W._C._Handy/gold/testsuite/two_file_test_1.cc
mv -f .deps/two_file_test_1.Tpo .deps/two_file_test_1.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT two_file_test_1b.o -MD -MP -MF .deps/two_file_test_1b.Tpo -c -o two_file_test_1b.o ../../../W._C._Handy/gold/testsuite/two_file_test_1b.cc
mv -f .deps/two_file_test_1b.Tpo .deps/two_file_test_1b.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT two_file_test_2.o -MD -MP -MF .deps/two_file_test_2.Tpo -c -o two_file_test_2.o ../../../W._C._Handy/gold/testsuite/two_file_test_2.cc
mv -f .deps/two_file_test_2.Tpo .deps/two_file_test_2.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT two_file_test_main.o -MD -MP -MF .deps/two_file_test_main.Tpo -c -o two_file_test_main.o ../../../W._C._Handy/gold/testsuite/two_file_test_main.cc
mv -f .deps/two_file_test_main.Tpo .deps/two_file_test_main.Po
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/  -o two_file_test two_file_test_1.o two_file_test_1b.o two_file_test_2.o two_file_test_main.o  -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o two_file_test_1_pic.o ../../../W._C._Handy/gold/testsuite/two_file_test_1.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o two_file_test_1b_pic.o ../../../W._C._Handy/gold/testsuite/two_file_test_1b.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o two_file_test_2_pic.o ../../../W._C._Handy/gold/testsuite/two_file_test_2.cc
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/  -o two_file_pic_test two_file_test_main.o two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2_pic.o -ldl 
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -static  -o two_file_static_test two_file_test_1.o two_file_test_1b.o two_file_test_2.o two_file_test_main.o  -ldl 
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o two_file_shared_1.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared two_file_test_1_pic.o two_file_test_1b_pic.o
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_shared_1_test two_file_test_2.o two_file_test_main.o two_file_shared_1.so -ldl 
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o two_file_shared_2.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared two_file_test_2_pic.o
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_shared_2_test two_file_test_1.o two_file_test_1b.o two_file_test_main.o two_file_shared_2.so -ldl 
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_shared_1_pic_2_test two_file_test_main.o two_file_test_1_pic.o two_file_test_1b_pic.o two_file_shared_2.so -ldl 
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_shared_2_pic_1_test two_file_test_main.o two_file_test_2_pic.o two_file_shared_1.so -ldl 
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o two_file_shared.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2_pic.o
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_same_shared_test two_file_test_main.o two_file_shared.so -ldl 
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_separate_shared_12_test two_file_test_main.o two_file_shared_1.so two_file_shared_2.so -ldl 
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_separate_shared_21_test two_file_test_main.o two_file_shared_2.so two_file_shared_1.so -ldl 
gcctestdir/ld -r -o two_file_relocatable.o two_file_test_1.o two_file_test_1b.o two_file_test_2.o
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_relocatable_test two_file_test_main.o two_file_relocatable.o -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpie -o two_file_test_1_pie.o ../../../W._C._Handy/gold/testsuite/two_file_test_1.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpie -o two_file_test_1b_pie.o ../../../W._C._Handy/gold/testsuite/two_file_test_1b.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpie -o two_file_test_2_pie.o ../../../W._C._Handy/gold/testsuite/two_file_test_2.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpie -o two_file_test_main_pie.o ../../../W._C._Handy/gold/testsuite/two_file_test_main.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o two_file_pie_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -pie two_file_test_1_pie.o two_file_test_1b_pie.o two_file_test_2_pie.o two_file_test_main_pie.o
g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -fno-exceptions -fno-asynchronous-unwind-tables -g -O2 -MT pie_copyrelocs_test-pie_copyrelocs_test.o -MD -MP -MF .deps/pie_copyrelocs_test-pie_copyrelocs_test.Tpo -c -o pie_copyrelocs_test-pie_copyrelocs_test.o `test -f 'pie_copyrelocs_test.cc' || echo '../../../W._C._Handy/gold/testsuite/'`pie_copyrelocs_test.cc
mv -f .deps/pie_copyrelocs_test-pie_copyrelocs_test.Tpo .deps/pie_copyrelocs_test-pie_copyrelocs_test.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O2 -fpic -c -o pie_copyrelocs_shared_test.o ../../../W._C._Handy/gold/testsuite/pie_copyrelocs_shared_test.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o pie_copyrelocs_shared_test.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared pie_copyrelocs_shared_test.o
g++-4.9 -fno-exceptions -fno-asynchronous-unwind-tables -g -O2 -Bgcctestdir/ -Wl,-R,. -pie  -o pie_copyrelocs_test pie_copyrelocs_test-pie_copyrelocs_test.o pie_copyrelocs_shared_test.so -ldl 
g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -fPIE -g -O2 -MT weak_unresolved_symbols_test-weak_unresolved_symbols_test.o -MD -MP -MF .deps/weak_unresolved_symbols_test-weak_unresolved_symbols_test.Tpo -c -o weak_unresolved_symbols_test-weak_unresolved_symbols_test.o `test -f 'weak_unresolved_symbols_test.cc' || echo '../../../W._C._Handy/gold/testsuite/'`weak_unresolved_symbols_test.cc
mv -f .deps/weak_unresolved_symbols_test-weak_unresolved_symbols_test.Tpo .deps/weak_unresolved_symbols_test-weak_unresolved_symbols_test.Po
g++-4.9 -fPIE -g -O2 -Bgcctestdir/ -pie -Wl,--weak-unresolved-symbols  -o weak_unresolved_symbols_test weak_unresolved_symbols_test-weak_unresolved_symbols_test.o libgoldtest.a ../libgold.a ../../libiberty/libiberty.a   -ldl -L../../zlib -lz -ldl 
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o two_file_shared_1_nonpic.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared two_file_test_1.o two_file_test_1b.o -Wl,-z,notext
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_shared_1_nonpic_test two_file_test_2.o two_file_test_main.o two_file_shared_1_nonpic.so -ldl 
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o two_file_shared_2_nonpic.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared two_file_test_2.o
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_shared_2_nonpic_test two_file_test_1.o two_file_test_1b.o two_file_test_main.o two_file_shared_2_nonpic.so -ldl 
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o two_file_shared_nonpic.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared two_file_test_1.o two_file_test_1b.o two_file_test_2.o -Wl,-z,notext
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_same_shared_nonpic_test two_file_test_main.o two_file_shared_nonpic.so -ldl 
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_separate_shared_12_nonpic_test two_file_test_main.o two_file_shared_1_nonpic.so two_file_shared_2_nonpic.so -ldl 
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_separate_shared_21_nonpic_test two_file_test_main.o two_file_shared_2_nonpic.so two_file_shared_1_nonpic.so -ldl 
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o two_file_shared_mixed.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared two_file_test_1_pic.o two_file_test_1b_pic.o two_file_test_2.o -Wl,-z,notext
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_mixed_shared_test two_file_test_main.o two_file_shared_mixed.so -ldl 
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o two_file_shared_mixed_1.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared two_file_test_1.o two_file_test_1b_pic.o two_file_shared_2.so -Wl,-z,notext
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o two_file_mixed_2_shared_test two_file_test_main.o two_file_shared_mixed_1.so two_file_shared_2.so -ldl 
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o two_file_mixed_pie_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,-R,. -pie two_file_test_1.o two_file_test_1b_pie.o two_file_test_main_pie.o two_file_shared_2.so
../../binutils/strip-new -o two_file_strip_test two_file_test
../../binutils/strip-new -S -o two_file_shared_strip.so two_file_shared.so
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R.  -o two_file_same_shared_strip_test two_file_test_main.o two_file_shared_strip.so -ldl 
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT common_test_1.o -MD -MP -MF .deps/common_test_1.Tpo -c -o common_test_1.o ../../../W._C._Handy/gold/testsuite/common_test_1.c
mv -f .deps/common_test_1.Tpo .deps/common_test_1.Po
gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/  -o common_test_1 common_test_1.o  -ldl 
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fpic -o common_test_2_pic.o ../../../W._C._Handy/gold/testsuite/common_test_2.c
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fpic -o common_test_3_pic.o ../../../W._C._Handy/gold/testsuite/common_test_3.c
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o common_test_3.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared common_test_3_pic.o -Wl,--version-script,../../../W._C._Handy/gold/testsuite/ver_test_2.script
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o common_test_2.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared common_test_2_pic.o common_test_3.so
gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o common_test_2 common_test_1.o common_test_2.so common_test_3.so -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT exception_test_main.o -MD -MP -MF .deps/exception_test_main.Tpo -c -o exception_test_main.o ../../../W._C._Handy/gold/testsuite/exception_test_main.cc
mv -f .deps/exception_test_main.Tpo .deps/exception_test_main.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT exception_test_1.o -MD -MP -MF .deps/exception_test_1.Tpo -c -o exception_test_1.o ../../../W._C._Handy/gold/testsuite/exception_test_1.cc
mv -f .deps/exception_test_1.Tpo .deps/exception_test_1.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT exception_test_2.o -MD -MP -MF .deps/exception_test_2.Tpo -c -o exception_test_2.o ../../../W._C._Handy/gold/testsuite/exception_test_2.cc
mv -f .deps/exception_test_2.Tpo .deps/exception_test_2.Po
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/  -o exception_test exception_test_main.o exception_test_1.o exception_test_2.o  -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o exception_test_1_pic.o ../../../W._C._Handy/gold/testsuite/exception_test_1.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o exception_shared_1.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared exception_test_1_pic.o
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o exception_shared_1_test exception_test_2.o exception_test_main.o exception_shared_1.so -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o exception_test_2_pic.o ../../../W._C._Handy/gold/testsuite/exception_test_2.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o exception_shared_2.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared exception_test_2_pic.o
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o exception_shared_2_test exception_test_1.o exception_test_main.o exception_shared_2.so -ldl 
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o exception_shared.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared exception_test_1_pic.o exception_test_2_pic.o
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o exception_same_shared_test exception_test_main.o exception_shared.so -ldl 
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,. -Wl,--no-as-needed  -o exception_separate_shared_12_test exception_test_main.o exception_shared_1.so exception_shared_2.so -ldl 
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,. -Wl,--no-as-needed  -o exception_separate_shared_21_test exception_test_main.o exception_shared_2.so exception_shared_1.so -ldl 
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -static  -o exception_static_test exception_test_main.o exception_test_1.o exception_test_2.o  -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT weak_test.o -MD -MP -MF .deps/weak_test.Tpo -c -o weak_test.o ../../../W._C._Handy/gold/testsuite/weak_test.cc
mv -f .deps/weak_test.Tpo .deps/weak_test.Po
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/  -o weak_test weak_test.o  -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT weak_undef_test.o -MD -MP -MF .deps/weak_undef_test.Tpo -c -o weak_undef_test.o ../../../W._C._Handy/gold/testsuite/weak_undef_test.cc
mv -f .deps/weak_undef_test.Tpo .deps/weak_undef_test.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o weak_undef_file1.o ../../../W._C._Handy/gold/testsuite/weak_undef_file1.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o weak_undef_lib.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared weak_undef_file1.o
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o weak_undef_file2.o ../../../W._C._Handy/gold/testsuite/weak_undef_file2.cc
test -d alt || mkdir -p alt
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o alt/weak_undef_lib.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared weak_undef_file2.o
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,alt  -o weak_undef_test weak_undef_test.o -L . weak_undef_lib.so -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT weak_undef_test_2.o -MD -MP -MF .deps/weak_undef_test_2.Tpo -c -o weak_undef_test_2.o ../../../W._C._Handy/gold/testsuite/weak_undef_test_2.cc
mv -f .deps/weak_undef_test_2.Tpo .deps/weak_undef_test_2.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -o weak_undef_file3.o ../../../W._C._Handy/gold/testsuite/weak_undef_file3.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -o weak_undef_file4.o ../../../W._C._Handy/gold/testsuite/weak_undef_file4.cc
../../binutils/ar rc libweak_undef_2.a weak_undef_file3.o weak_undef_file4.o
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -u weak_undef_2  -o weak_undef_test_2 weak_undef_test_2.o -L . -lweak_undef_2 -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -o weak_undef_file1_nonpic.o ../../../W._C._Handy/gold/testsuite/weak_undef_file1.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o weak_undef_lib_nonpic.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared weak_undef_file1_nonpic.o -Wl,-z,notext
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -o weak_undef_file2_nonpic.o ../../../W._C._Handy/gold/testsuite/weak_undef_file2.cc
test -d alt || mkdir -p alt
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o alt/weak_undef_lib_nonpic.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared weak_undef_file2_nonpic.o -Wl,-z,notext
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,alt  -o weak_undef_nonpic_test weak_undef_test.o -L . weak_undef_lib_nonpic.so -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT weak_alias_test_main.o -MD -MP -MF .deps/weak_alias_test_main.Tpo -c -o weak_alias_test_main.o ../../../W._C._Handy/gold/testsuite/weak_alias_test_main.cc
mv -f .deps/weak_alias_test_main.Tpo .deps/weak_alias_test_main.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o weak_alias_test_1_pic.o ../../../W._C._Handy/gold/testsuite/weak_alias_test_1.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o weak_alias_test_1.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared weak_alias_test_1_pic.o
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o weak_alias_test_2_pic.o ../../../W._C._Handy/gold/testsuite/weak_alias_test_2.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o weak_alias_test_2.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared weak_alias_test_2_pic.o
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -o weak_alias_test_3.o ../../../W._C._Handy/gold/testsuite/weak_alias_test_3.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o weak_alias_test_4_pic.o ../../../W._C._Handy/gold/testsuite/weak_alias_test_4.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o weak_alias_test_4.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared weak_alias_test_4_pic.o
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o weak_alias_test_5_pic.o ../../../W._C._Handy/gold/testsuite/weak_alias_test_5.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o weak_alias_test_5.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared weak_alias_test_5_pic.o \
	-Wl,--version-script,../../../W._C._Handy/gold/testsuite/weak_alias_test.script
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o weak_alias_test weak_alias_test_main.o weak_alias_test_1.so weak_alias_test_2.so weak_alias_test_3.o weak_alias_test_4.so weak_alias_test_5.so -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o weak_plt_main_pic.o ../../../W._C._Handy/gold/testsuite/weak_plt_main.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o weak_plt | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ weak_plt_main_pic.o
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT copy_test.o -MD -MP -MF .deps/copy_test.Tpo -c -o copy_test.o ../../../W._C._Handy/gold/testsuite/copy_test.cc
mv -f .deps/copy_test.Tpo .deps/copy_test.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o copy_test_1_pic.o ../../../W._C._Handy/gold/testsuite/copy_test_1.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o copy_test_1.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared copy_test_1_pic.o
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o copy_test_2_pic.o ../../../W._C._Handy/gold/testsuite/copy_test_2.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o copy_test_2.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared copy_test_2_pic.o
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o copy_test copy_test.o copy_test_1.so copy_test_2.so -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT tls_test.o -MD -MP -MF .deps/tls_test.Tpo -c -o tls_test.o ../../../W._C._Handy/gold/testsuite/tls_test.cc
mv -f .deps/tls_test.Tpo .deps/tls_test.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT tls_test_file2.o -MD -MP -MF .deps/tls_test_file2.Tpo -c -o tls_test_file2.o ../../../W._C._Handy/gold/testsuite/tls_test_file2.cc
mv -f .deps/tls_test_file2.Tpo .deps/tls_test_file2.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT tls_test_main.o -MD -MP -MF .deps/tls_test_main.Tpo -c -o tls_test_main.o ../../../W._C._Handy/gold/testsuite/tls_test_main.cc
mv -f .deps/tls_test_main.Tpo .deps/tls_test_main.Po
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fopenmp -o tls_test_c.o ../../../W._C._Handy/gold/testsuite/tls_test_c.c
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/  -o tls_test tls_test.o tls_test_file2.o tls_test_main.o tls_test_c.o -lpthread -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o tls_test_pic.o ../../../W._C._Handy/gold/testsuite/tls_test.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o tls_test_file2_pic.o ../../../W._C._Handy/gold/testsuite/tls_test_file2.cc
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fpic -fopenmp -o tls_test_c_pic.o ../../../W._C._Handy/gold/testsuite/tls_test_c.c
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/  -o tls_pic_test tls_test_main.o tls_test_pic.o tls_test_file2_pic.o tls_test_c_pic.o -lpthread -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpie -o tls_test_main_pie.o ../../../W._C._Handy/gold/testsuite/tls_test_main.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpie -o tls_test_pie.o ../../../W._C._Handy/gold/testsuite/tls_test.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpie -o tls_test_file2_pie.o ../../../W._C._Handy/gold/testsuite/tls_test_file2.cc
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fpic -fopenmp -o tls_test_c_pie.o ../../../W._C._Handy/gold/testsuite/tls_test_c.c
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o tls_pie_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -pie tls_test_main_pie.o tls_test_pie.o tls_test_file2_pie.o tls_test_c_pie.o -lpthread
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o tls_pie_pic_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -pie tls_test_main_pie.o tls_test_pic.o tls_test_file2_pic.o tls_test_c_pic.o -lpthread
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o tls_test_shared.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared tls_test_pic.o tls_test_file2_pic.o tls_test_c_pic.o -Wl,-z,defs
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o tls_shared_test tls_test_main.o tls_test_shared.so -lpthread -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -ftls-model=initial-exec -o tls_test_pic_ie.o ../../../W._C._Handy/gold/testsuite/tls_test.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -ftls-model=initial-exec -o tls_test_file2_pic_ie.o ../../../W._C._Handy/gold/testsuite/tls_test_file2.cc
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fpic -ftls-model=initial-exec -fopenmp -o tls_test_c_pic_ie.o ../../../W._C._Handy/gold/testsuite/tls_test_c.c
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o tls_test_ie_shared.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared tls_test_pic_ie.o tls_test_file2_pic_ie.o tls_test_c_pic_ie.o
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o tls_shared_ie_test tls_test_main.o tls_test_ie_shared.so -lpthread -ldl 
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o tls_test_shared2.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared tls_test_file2_pic.o
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o tls_shared_gd_to_ie_test tls_test_main.o tls_test_pic.o tls_test_c_pic.o tls_test_shared2.so -lpthread -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -mtls-dialect=gnu2 -o tls_test_gnu2.o ../../../W._C._Handy/gold/testsuite/tls_test.cc
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fpic -mtls-dialect=gnu2 -fopenmp -o tls_test_c_gnu2.o ../../../W._C._Handy/gold/testsuite/tls_test_c.c
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -mtls-dialect=gnu2 -o tls_test_file2_gnu2.o ../../../W._C._Handy/gold/testsuite/tls_test_file2.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o tls_test_gnu2_shared2.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared tls_test_file2_gnu2.o
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o tls_shared_gnu2_gd_to_ie_test tls_test_main.o tls_test_gnu2.o tls_test_c_gnu2.o tls_test_gnu2_shared2.so -lpthread -ldl 
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o tls_test_gnu2_shared.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared tls_test_gnu2.o tls_test_file2_gnu2.o tls_test_c_gnu2.o
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o tls_shared_gnu2_test tls_test_main.o tls_test_gnu2_shared.so -lpthread -ldl 
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -static  -o tls_static_test tls_test.o tls_test_file2.o tls_test_main.o tls_test_c.o -lpthread -ldl 
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -static  -o tls_static_pic_test tls_test_main.o tls_test_pic.o tls_test_file2_pic.o tls_test_c_pic.o -lpthread -ldl 
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o tls_test_shared_nonpic.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared tls_test.o tls_test_file2.o tls_test_c.o -Wl,-z,notext
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o tls_shared_nonpic_test tls_test_main.o tls_test_shared_nonpic.so -lpthread -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT many_sections_test.o -MD -MP -MF .deps/many_sections_test.Tpo -c -o many_sections_test.o ../../../W._C._Handy/gold/testsuite/many_sections_test.cc
mv -f .deps/many_sections_test.Tpo .deps/many_sections_test.Po
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -rdynamic  -o many_sections_test many_sections_test.o  -ldl 
gcctestdir/ld -r -o many_sections_r_test.o many_sections_test.o
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o many_sections_r_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ many_sections_r_test.o -ldl 
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT initpri1.o -MD -MP -MF .deps/initpri1.Tpo -c -o initpri1.o ../../../W._C._Handy/gold/testsuite/initpri1.c
mv -f .deps/initpri1.Tpo .deps/initpri1.Po
gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/  -o initpri1 initpri1.o  -ldl 
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT initpri2.o -MD -MP -MF .deps/initpri2.Tpo -c -o initpri2.o ../../../W._C._Handy/gold/testsuite/initpri2.c
mv -f .deps/initpri2.Tpo .deps/initpri2.Po
gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,--ctors-in-init-array  -o initpri2 initpri2.o  -ldl 
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT initpri3.o -MD -MP -MF .deps/initpri3.Tpo -c -o initpri3.o ../../../W._C._Handy/gold/testsuite/initpri3.c
mv -f .deps/initpri3.Tpo .deps/initpri3.Po
gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/  -o initpri3a initpri3.o  -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -g -c -o flagstest_debug.o ../../../W._C._Handy/gold/testsuite/constructor_test.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o flagstest_o_specialfile | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -o /dev/stdout flagstest_debug.o 2>&1 | cat > flagstest_o_specialfile
chmod a+x flagstest_o_specialfile
test -s flagstest_o_specialfile
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o flagstest_compress_debug_sections_none | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -o flagstest_compress_debug_sections_none flagstest_debug.o -Wl,--compress-debug-sections=none
test -s flagstest_compress_debug_sections_none
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o flagstest_compress_debug_sections | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -o flagstest_compress_debug_sections flagstest_debug.o -Wl,--compress-debug-sections=zlib
test -s flagstest_compress_debug_sections
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o flagstest_compress_debug_sections_and_build_id_tree | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -o flagstest_compress_debug_sections_and_build_id_tree flagstest_debug.o -Wl,--compress-debug-sections=zlib \
	-Wl,--build-id=tree \
	-Wl,--build-id-chunk-size-for-treehash=4096 \
	-Wl,--build-id-min-file-size-for-treehash=0
test -s flagstest_compress_debug_sections_and_build_id_tree
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o flagstest_compress_debug_sections_gnu | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -o flagstest_compress_debug_sections_gnu flagstest_debug.o -Wl,--compress-debug-sections=zlib-gnu
test -s flagstest_compress_debug_sections_gnu
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o flagstest_compress_debug_sections_gabi | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -o flagstest_compress_debug_sections_gabi flagstest_debug.o -Wl,--compress-debug-sections=zlib-gabi
test -s flagstest_compress_debug_sections_gabi
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o flagstest_o_specialfile_and_compress_debug_sections | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -o /dev/stdout flagstest_debug.o -Wl,--compress-debug-sections=zlib 2>&1 | cat > flagstest_o_specialfile_and_compress_debug_sections
chmod a+x flagstest_o_specialfile_and_compress_debug_sections
test -s flagstest_o_specialfile_and_compress_debug_sections
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o flagstest_o_ttext_1 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -o flagstest_o_ttext_1 flagstest_debug.o -Wl,-Ttext,0x400000 -Wl,-Tdata,0x800000
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT ver_test_main.o -MD -MP -MF .deps/ver_test_main.Tpo -c -o ver_test_main.o ../../../W._C._Handy/gold/testsuite/ver_test_main.cc
mv -f .deps/ver_test_main.Tpo .deps/ver_test_main.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o ver_test_1.o ../../../W._C._Handy/gold/testsuite/ver_test_1.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o ver_test_2.o ../../../W._C._Handy/gold/testsuite/ver_test_2.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o ver_test_4.o ../../../W._C._Handy/gold/testsuite/ver_test_4.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ver_test_4.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared -Wl,--version-script,../../../W._C._Handy/gold/testsuite/ver_test_4.script ver_test_4.o
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ver_test_2.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared -Wl,--version-script,../../../W._C._Handy/gold/testsuite/ver_test_2.script -Wl,-R,. ver_test_2.o ver_test_4.so
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o ver_test_3.o ../../../W._C._Handy/gold/testsuite/ver_test_3.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ver_test_1.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared ver_test_1.o ver_test_2.so ver_test_3.o ver_test_4.so
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o ver_test ver_test_main.o ver_test_1.so ver_test_2.so ver_test_4.so -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT ver_test_main_2.o -MD -MP -MF .deps/ver_test_main_2.Tpo -c -o ver_test_main_2.o ../../../W._C._Handy/gold/testsuite/ver_test_main_2.cc
mv -f .deps/ver_test_main_2.Tpo .deps/ver_test_main_2.Po
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o ver_test_2 ver_test_main_2.o ver_test_4.so ver_test_2.so -ldl 
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT ver_test_6.o -MD -MP -MF .deps/ver_test_6.Tpo -c -o ver_test_6.o ../../../W._C._Handy/gold/testsuite/ver_test_6.c
mv -f .deps/ver_test_6.Tpo .deps/ver_test_6.Po
gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o ver_test_6 ver_test_6.o ver_test_2.so -ldl 
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ver_test_8_2.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared -Wl,--version-script,../../../W._C._Handy/gold/testsuite/ver_test_8.script two_file_test_2_pic.o
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ver_test_8_1.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared two_file_test_1_pic.o two_file_test_1b_pic.o ver_test_8_2.so
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o ver_test_8 two_file_test_main.o ver_test_8_1.so ver_test_8_2.so -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o ver_test_9.o ../../../W._C._Handy/gold/testsuite/ver_test_9.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o ver_test_5.o ../../../W._C._Handy/gold/testsuite/ver_test_5.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ver_test_5.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared -Wl,--version-script,../../../W._C._Handy/gold/testsuite/ver_test_5.script ver_test_5.o ver_test_4.so
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ver_test_9.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared -Wl,-R,. ver_test_9.o ver_test_5.so ver_test_4.so
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o ver_test_9 ver_test_main.o ver_test_9.so -ldl 
../../binutils/ar rc ver_test_11.a ver_test_1.o ver_test_2.o ver_test_4.o
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o ver_test_11 ver_test_main_2.o ver_test_11.a -ldl 
gcctestdir/ld -r -o ver_test_12.o ver_test_1.o ver_test_2.o ver_test_4.o
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o ver_test_12 ver_test_main_2.o ver_test_12.o -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT protected_main_1.o -MD -MP -MF .deps/protected_main_1.Tpo -c -o protected_main_1.o ../../../W._C._Handy/gold/testsuite/protected_main_1.cc
mv -f .deps/protected_main_1.Tpo .deps/protected_main_1.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT protected_main_2.o -MD -MP -MF .deps/protected_main_2.Tpo -c -o protected_main_2.o ../../../W._C._Handy/gold/testsuite/protected_main_2.cc
mv -f .deps/protected_main_2.Tpo .deps/protected_main_2.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT protected_main_3.o -MD -MP -MF .deps/protected_main_3.Tpo -c -o protected_main_3.o ../../../W._C._Handy/gold/testsuite/protected_main_3.cc
mv -f .deps/protected_main_3.Tpo .deps/protected_main_3.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o protected_1_pic.o ../../../W._C._Handy/gold/testsuite/protected_1.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o protected_2_pic.o ../../../W._C._Handy/gold/testsuite/protected_2.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o protected_3_pic.o ../../../W._C._Handy/gold/testsuite/protected_3.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o protected_1.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared protected_1_pic.o protected_2_pic.o protected_3_pic.o
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o protected_1 protected_main_1.o protected_main_2.o protected_main_3.o protected_1.so -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT protected_3.o -MD -MP -MF .deps/protected_3.Tpo -c -o protected_3.o ../../../W._C._Handy/gold/testsuite/protected_3.cc
mv -f .deps/protected_3.Tpo .deps/protected_3.Po
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o protected_2 protected_main_1.o protected_3.o protected_1.so -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT relro_test_main.o -MD -MP -MF .deps/relro_test_main.Tpo -c -o relro_test_main.o ../../../W._C._Handy/gold/testsuite/relro_test_main.cc
mv -f .deps/relro_test_main.Tpo .deps/relro_test_main.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o relro_test_pic.o ../../../W._C._Handy/gold/testsuite/relro_test.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o relro_test.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared -Wl,-z,relro relro_test_pic.o
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o relro_test relro_test_main.o relro_test.so -ldl 
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o relro_now_test.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared -Wl,-z,relro -Wl,-z,now relro_test_pic.o
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir -Wl,-R,. -Wl,-z,relro -Wl,-z,now  -o relro_now_test relro_test_main.o relro_now_test.so -ldl 
../../binutils/strip-new -o relro_strip_test.so relro_test.so
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o relro_strip_test relro_test_main.o relro_strip_test.so -ldl 
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o relro_script_test.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared -Wl,-z,relro -Wl,-T,../../../W._C._Handy/gold/testsuite/relro_script_test.t relro_test_pic.o
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o relro_script_test relro_test_main.o relro_script_test.so -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT script_test_1a.o -MD -MP -MF .deps/script_test_1a.Tpo -c -o script_test_1a.o ../../../W._C._Handy/gold/testsuite/script_test_1a.cc
mv -f .deps/script_test_1a.Tpo .deps/script_test_1a.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT script_test_1b.o -MD -MP -MF .deps/script_test_1b.Tpo -c -o script_test_1b.o ../../../W._C._Handy/gold/testsuite/script_test_1b.cc
mv -f .deps/script_test_1b.Tpo .deps/script_test_1b.Po
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,. -Wl,-T,../../../W._C._Handy/gold/testsuite/script_test_1.t  -o script_test_1 script_test_1a.o script_test_1b.o  -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT script_test_2.o -MD -MP -MF .deps/script_test_2.Tpo -c -o script_test_2.o ../../../W._C._Handy/gold/testsuite/script_test_2.cc
mv -f .deps/script_test_2.Tpo .deps/script_test_2.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT script_test_2a.o -MD -MP -MF .deps/script_test_2a.Tpo -c -o script_test_2a.o ../../../W._C._Handy/gold/testsuite/script_test_2a.cc
mv -f .deps/script_test_2a.Tpo .deps/script_test_2a.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT script_test_2b.o -MD -MP -MF .deps/script_test_2b.Tpo -c -o script_test_2b.o ../../../W._C._Handy/gold/testsuite/script_test_2b.cc
mv -f .deps/script_test_2b.Tpo .deps/script_test_2b.Po
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,. -Wl,-T,../../../W._C._Handy/gold/testsuite/script_test_2.t  -o script_test_2 script_test_2.o script_test_2a.o script_test_2b.o  -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT justsyms_1.o -MD -MP -MF .deps/justsyms_1.Tpo -c -o justsyms_1.o ../../../W._C._Handy/gold/testsuite/justsyms_1.cc
mv -f .deps/justsyms_1.Tpo .deps/justsyms_1.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -o justsyms_2.o ../../../W._C._Handy/gold/testsuite/justsyms_2.cc
gcctestdir/ld -o justsyms_2r.o -r -T ../../../W._C._Handy/gold/testsuite/justsyms.t justsyms_2.o
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,justsyms_2r.o  -o justsyms justsyms_1.o  -ldl 
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT justsyms_exec.o -MD -MP -MF .deps/justsyms_exec.Tpo -c -o justsyms_exec.o ../../../W._C._Handy/gold/testsuite/justsyms_exec.c
mv -f .deps/justsyms_exec.Tpo .deps/justsyms_exec.Po
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -o justsyms_lib.o ../../../W._C._Handy/gold/testsuite/justsyms_lib.c
gcctestdir/ld -o justsyms_lib -Ttext=0x1000200 -Tdata=0x2000000 -e exported_func justsyms_lib.o
gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,justsyms_lib  -o justsyms_exec justsyms_exec.o  -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT binary_test.o -MD -MP -MF .deps/binary_test.Tpo -c -o binary_test.o ../../../W._C._Handy/gold/testsuite/binary_test.cc
mv -f .deps/binary_test.Tpo .deps/binary_test.Po
rm -f binary.txt
ln -s ../../../W._C._Handy/gold/testsuite/binary.in binary.txt
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,--format,binary,binary.txt,--format,elf  -o binary_test binary_test.o  -ldl 
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o script_test_3 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ basic_test.o -Wl,-T,../../../W._C._Handy/gold/testsuite/script_test_3.t
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-T,../../../W._C._Handy/gold/testsuite/script_test_3.t  -o tls_phdrs_script_test tls_test.o tls_test_file2.o tls_test_main.o tls_test_c.o -lpthread -ldl 
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-T,../../../W._C._Handy/gold/testsuite/script_test_4.t  -o tls_script_test tls_test.o tls_test_file2.o tls_test_main.o tls_test_c.o -lpthread -ldl 
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -g -o script_test_11a.o ../../../W._C._Handy/gold/testsuite/script_test_11a.c
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -g -o script_test_11b.o ../../../W._C._Handy/gold/testsuite/script_test_11b.c
gcctestdir/ld -r -o script_test_11_r.o -T ../../../W._C._Handy/gold/testsuite/script_test_11.t script_test_11a.o script_test_11b.o
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o script_test_11 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ script_test_11_r.o
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -O0 -c -o script_test_12a.o ../../../W._C._Handy/gold/testsuite/script_test_12a.c
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -O0 -c -o script_test_12b.o ../../../W._C._Handy/gold/testsuite/script_test_12b.c
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o script_test_12 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,-T,../../../W._C._Handy/gold/testsuite/script_test_12.t script_test_12a.o script_test_12b.o
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o script_test_12i | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,-T,../../../W._C._Handy/gold/testsuite/script_test_12i.t script_test_12a.o script_test_12b.o
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT dynamic_list_2.o -MD -MP -MF .deps/dynamic_list_2.Tpo -c -o dynamic_list_2.o ../../../W._C._Handy/gold/testsuite/dynamic_list_2.cc
mv -f .deps/dynamic_list_2.Tpo .deps/dynamic_list_2.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o dynamic_list_lib1.o ../../../W._C._Handy/gold/testsuite/dynamic_list_lib1.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o dynamic_list_lib1.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared dynamic_list_lib1.o
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o dynamic_list_lib2.o ../../../W._C._Handy/gold/testsuite/dynamic_list_lib2.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o dynamic_list_lib2.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared -Wl,-Bsymbolic-functions -Wl,--dynamic-list,../../../W._C._Handy/gold/testsuite/dynamic_list_2.t dynamic_list_lib2.o
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -L. -Wl,-R,. -Wl,--no-as-needed  -o dynamic_list_2 dynamic_list_2.o dynamic_list_lib1.so dynamic_list_lib2.so -ldl 
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT thin_archive_main.o -MD -MP -MF .deps/thin_archive_main.Tpo -c -o thin_archive_main.o ../../../W._C._Handy/gold/testsuite/thin_archive_main.cc
mv -f .deps/thin_archive_main.Tpo .deps/thin_archive_main.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT thin_archive_test_1.o -MD -MP -MF .deps/thin_archive_test_1.Tpo -c -o thin_archive_test_1.o ../../../W._C._Handy/gold/testsuite/thin_archive_test_1.cc
mv -f .deps/thin_archive_test_1.Tpo .deps/thin_archive_test_1.Po
test -d alt || mkdir -p alt
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -o alt/thin_archive_test_2.o ../../../W._C._Handy/gold/testsuite/thin_archive_test_2.cc
rm -f libthin1.a
../../binutils/ar crT libthin1.a thin_archive_test_1.o alt/thin_archive_test_2.o
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT thin_archive_test_3.o -MD -MP -MF .deps/thin_archive_test_3.Tpo -c -o thin_archive_test_3.o ../../../W._C._Handy/gold/testsuite/thin_archive_test_3.cc
mv -f .deps/thin_archive_test_3.Tpo .deps/thin_archive_test_3.Po
test -d alt || mkdir -p alt
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -o alt/thin_archive_test_4.o ../../../W._C._Handy/gold/testsuite/thin_archive_test_4.cc
rm -f alt/libthin2.a
../../binutils/ar crT alt/libthin2.a thin_archive_test_3.o alt/thin_archive_test_4.o
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Lalt  -o thin_archive_test_1 thin_archive_main.o libthin1.a -lthin2 -ldl 
rm -f libthin3.a
../../binutils/ar crT libthin3.a thin_archive_test_1.o alt/thin_archive_test_4.o
rm -f alt/libthin4.a
../../binutils/ar crT alt/libthin4.a alt/thin_archive_test_2.o thin_archive_test_3.o
rm -f libthinall.a
../../binutils/ar crT libthinall.a libthin3.a alt/libthin4.a
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -L.  -o thin_archive_test_2 thin_archive_main.o -lthinall -ldl 
../../binutils/readelf -sW two_file_test_1.o >two_file_test_1.o.syms 2>/dev/null
../../binutils/readelf -sW two_file_test_1b.o >two_file_test_1b.o.syms 2>/dev/null
../../binutils/readelf -sW two_file_test_2.o >two_file_test_2.o.syms 2>/dev/null
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -O0 -c -fpic -o plugin_test.o ../../../W._C._Handy/gold/testsuite/plugin_test.c
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o plugin_test.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared plugin_test.o
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o plugin_test_1 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--no-demangle,--plugin,"./plugin_test.so",--plugin-opt,"_Z4f13iv" two_file_test_main.o two_file_test_1.o.syms two_file_test_1b.o.syms two_file_test_2.o.syms empty.o.syms 2>plugin_test_1.err
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o plugin_test_2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--no-demangle,-R,.,--plugin,"./plugin_test.so" two_file_test_main.o two_file_test_1.o.syms two_file_test_1b.o.syms two_file_shared_2.so 2>plugin_test_2.err
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o plugin_test_3 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--export-dynamic -Wl,--no-demangle,--plugin,"./plugin_test.so",--plugin-opt,"_Z4f13iv" two_file_test_main.o two_file_test_1.o.syms two_file_test_1b.o.syms two_file_test_2.o.syms empty.o.syms 2>plugin_test_3.err
../../binutils/ar cr plugin_test_4.a two_file_test_1.o.syms two_file_test_1b.o.syms two_file_test_2.o.syms
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o plugin_test_4 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--no-demangle,--plugin,"./plugin_test.so",--plugin-opt,"_Z4f13iv" two_file_test_main.o -Wl,--whole-archive,plugin_test_4.a,--no-whole-archive 2>plugin_test_4.err
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -o unused.o unused.c
../../binutils/readelf -sW unused.o >unused.o.syms 2>/dev/null
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o plugin_test_5 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--no-demangle,--plugin,"./plugin_test.so",--plugin-opt,"_Z4f13iv",--gc-sections two_file_test_main.o two_file_test_1.o.syms two_file_test_1b.o.syms two_file_test_2.o.syms unused.o.syms
API version:   1
gold version:  111
option: _Z4f13iv
/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/crt1.o: claim file hook called (offset = 0, size = 1212)
/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/crti.o: claim file hook called (offset = 0, size = 1164)
/usr/lib/gcc/i586-gnu/4.9/crtbegin.o: claim file hook called (offset = 0, size = 1940)
two_file_test_main.o: claim file hook called (offset = 0, size = 6780)
two_file_test_1.o.syms: claim file hook called (offset = 0, size = 3408)
two_file_test_1.o.syms: claiming file, adding 38 symbols
two_file_test_1b.o.syms: claim file hook called (offset = 0, size = 967)
two_file_test_1b.o.syms: claiming file, adding 2 symbols
two_file_test_2.o.syms: claim file hook called (offset = 0, size = 2203)
two_file_test_2.o.syms: claiming file, adding 16 symbols
unused.o.syms: claim file hook called (offset = 0, size = 634)
unused.o.syms: claiming file, adding 1 symbols
/usr/lib/gcc/i586-gnu/4.9/crtend.o: claim file hook called (offset = 0, size = 932)
/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/crtn.o: claim file hook called (offset = 0, size = 736)
/usr/lib/gcc/i586-gnu/4.9/libstdc++.so: claim file hook called (offset = 0, size = 1492412)
/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/libm.so: claim file hook called (offset = 0, size = 276040)
/usr/lib/gcc/i586-gnu/4.9/libgcc_s.so: claim file hook called (offset = 0, size = 113180)
/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/libc.so: claim file hook called (offset = 0, size = 309)
/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/libmachuser.so: claim file hook called (offset = 0, size = 87464)
/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/libhurduser.so: claim file hook called (offset = 0, size = 198292)
/lib/i386-gnu/libc.so.0.3: claim file hook called (offset = 0, size = 1829828)
/usr/lib/i386-gnu/libcrt_nonshared.a: claim file hook called (offset = 882, size = 1376)
/lib/i386-gnu/ld.so.1: claim file hook called (offset = 0, size = 159348)
/usr/lib/gcc/i586-gnu/4.9/libgcc_s.so: claim file hook called (offset = 0, size = 113180)
all symbols read hook called
two_file_test_1.o.syms: _Z4f13iv: PREVAILING_DEF_IRONLY
two_file_test_1.o.syms: _Z4f11av: PREVAILING_DEF_IRONLY
two_file_test_1.o.syms: _Z3t12v: PREVAILING_DEF_REG
two_file_test_1.o.syms: _Z3f12v: RESOLVED_IR
two_file_test_1.o.syms: _Z2t1v: PREVAILING_DEF_REG
two_file_test_1.o.syms: _Z4t1_2v: RESOLVED_IR
two_file_test_1.o.syms: _Z2t2v: PREVAILING_DEF_REG
two_file_test_1.o.syms: v2: RESOLVED_IR
two_file_test_1.o.syms: _Z2t3v: PREVAILING_DEF_REG
two_file_test_1.o.syms: v3: RESOLVED_IR
two_file_test_1.o.syms: _Z2t4v: PREVAILING_DEF_REG
two_file_test_1.o.syms: v4: RESOLVED_IR
two_file_test_1.o.syms: _Z2t5v: PREVAILING_DEF_REG
two_file_test_1.o.syms: v5: RESOLVED_IR
two_file_test_1.o.syms: _Z2t6v: PREVAILING_DEF_REG
two_file_test_1.o.syms: p6: PREVAILING_DEF_IRONLY
two_file_test_1.o.syms: _Z2t7v: PREVAILING_DEF_REG
two_file_test_1.o.syms: p7: PREVAILING_DEF_IRONLY
two_file_test_1.o.syms: _Z2t8v: PREVAILING_DEF_REG
two_file_test_1.o.syms: p8: PREVAILING_DEF_IRONLY
two_file_test_1.o.syms: _Z2t9v: PREVAILING_DEF_REG
two_file_test_1.o.syms: p9: PREVAILING_DEF_IRONLY
two_file_test_1.o.syms: _Z3t10v: PREVAILING_DEF_REG
two_file_test_1.o.syms: pfn: PREVAILING_DEF_IRONLY
two_file_test_1.o.syms: _Z3t11v: PREVAILING_DEF_REG
two_file_test_1.o.syms: _Z4f11bPFivE: RESOLVED_IR
two_file_test_1.o.syms: _Z3t13v: PREVAILING_DEF_REG
two_file_test_1.o.syms: _Z3f13v: RESOLVED_IR
two_file_test_1.o.syms: _Z3t14v: PREVAILING_DEF_IRONLY
two_file_test_1.o.syms: _Z3f14v: RESOLVED_IR
two_file_test_1.o.syms: _Z3t15v: PREVAILING_DEF_IRONLY
two_file_test_1.o.syms: _Z3f15v: RESOLVED_IR
two_file_test_1.o.syms: _Z3t16v: PREVAILING_DEF_REG
two_file_test_1.o.syms: _Z3f10v: RESOLVED_IR
two_file_test_1.o.syms: _Z3t17v: PREVAILING_DEF_REG
two_file_test_1.o.syms: t17data: RESOLVED_IR
two_file_test_1.o.syms: _Z3t18v: PREVAILING_DEF_REG
two_file_test_1.o.syms: _Z3f18i: RESOLVED_IR
two_file_test_1b.o.syms: _Z4t16av: PREVAILING_DEF_REG
two_file_test_1b.o.syms: _Z3f10v: RESOLVED_IR
two_file_test_2.o.syms: _Z4f13iv: PREEMPTED_IR
two_file_test_2.o.syms: _Z4t1_2v: PREVAILING_DEF_IRONLY
two_file_test_2.o.syms: _Z3t1av: PREVAILING_DEF_REG
two_file_test_2.o.syms: _Z3f10v: PREVAILING_DEF_IRONLY
two_file_test_2.o.syms: _Z4f11bPFivE: PREVAILING_DEF_IRONLY
two_file_test_2.o.syms: _Z3f12v: PREVAILING_DEF_IRONLY
two_file_test_2.o.syms: _Z3t12v: RESOLVED_IR
two_file_test_2.o.syms: _Z3f13v: PREVAILING_DEF_IRONLY
two_file_test_2.o.syms: _Z3f14v: PREVAILING_DEF_IRONLY
two_file_test_2.o.syms: _Z3f15v: PREVAILING_DEF_IRONLY
two_file_test_2.o.syms: _Z3f18i: PREVAILING_DEF_IRONLY
two_file_test_2.o.syms: t17data: PREVAILING_DEF_IRONLY
two_file_test_2.o.syms: v5: PREVAILING_DEF_REG
two_file_test_2.o.syms: v4: PREVAILING_DEF_REG
two_file_test_2.o.syms: v3: PREVAILING_DEF_REG
two_file_test_2.o.syms: v2: PREVAILING_DEF_IRONLY
unused.o.syms: UNUSED: PREVAILING_DEF_IRONLY
two_file_test_1.o: adding new input file
two_file_test_1b.o: adding new input file
two_file_test_2.o: adding new input file
unused.o: adding new input file
cleanup hook called
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT plugin_common_test_1.o -MD -MP -MF .deps/plugin_common_test_1.Tpo -c -o plugin_common_test_1.o ../../../W._C._Handy/gold/testsuite/plugin_common_test_1.c
mv -f .deps/plugin_common_test_1.Tpo .deps/plugin_common_test_1.Po
../../binutils/readelf -sW plugin_common_test_1.o >plugin_common_test_1.o.syms 2>/dev/null
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT plugin_common_test_2.o -MD -MP -MF .deps/plugin_common_test_2.Tpo -c -o plugin_common_test_2.o ../../../W._C._Handy/gold/testsuite/plugin_common_test_2.c
mv -f .deps/plugin_common_test_2.Tpo .deps/plugin_common_test_2.Po
../../binutils/readelf -sW plugin_common_test_2.o >plugin_common_test_2.o.syms 2>/dev/null
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o plugin_test_6 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--no-demangle,--plugin,"./plugin_test.so" plugin_common_test_1.o.syms plugin_common_test_2.o.syms 2>plugin_test_6.err
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -DLTO -O0 -c -ffunction-sections -fdata-sections -o plugin_test_7_1.o ../../../W._C._Handy/gold/testsuite/plugin_test_7_1.c
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -O0 -c -ffunction-sections -fdata-sections -o plugin_test_7_1_orig.o ../../../W._C._Handy/gold/testsuite/plugin_test_7_1.c
../../binutils/readelf -sW plugin_test_7_1_orig.o >plugin_test_7_1.o.syms 2>/dev/null
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -O0 -c -ffunction-sections -fdata-sections -o plugin_test_7_2.o ../../../W._C._Handy/gold/testsuite/plugin_test_7_2.c
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o plugin_test_7 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--no-demangle,--plugin,"./plugin_test.so",--gc-sections,--print-gc-sections plugin_test_7_1.o.syms plugin_test_7_2.o 2>plugin_test_7.err
../ld-new -r -o plugin_test_8.o --no-demangle --plugin "./plugin_test.so" two_file_test_main.o two_file_test_1.o.syms two_file_test_1b.o.syms two_file_test_2.o
API version:   1
gold version:  111
two_file_test_main.o: claim file hook called (offset = 0, size = 6780)
two_file_test_1.o.syms: claim file hook called (offset = 0, size = 3408)
two_file_test_1.o.syms: claiming file, adding 38 symbols
two_file_test_1b.o.syms: claim file hook called (offset = 0, size = 967)
two_file_test_1b.o.syms: claiming file, adding 2 symbols
two_file_test_2.o: claim file hook called (offset = 0, size = 4932)
two_file_test_2.o: claiming file, adding 16 symbols
all symbols read hook called
two_file_test_1.o.syms: _Z4f13iv: PREVAILING_DEF_REG
two_file_test_1.o.syms: _Z4f11av: PREVAILING_DEF_REG
two_file_test_1.o.syms: _Z3t12v: PREVAILING_DEF_REG
two_file_test_1.o.syms: _Z3f12v: RESOLVED_IR
two_file_test_1.o.syms: _Z2t1v: PREVAILING_DEF_REG
two_file_test_1.o.syms: _Z4t1_2v: RESOLVED_IR
two_file_test_1.o.syms: _Z2t2v: PREVAILING_DEF_REG
two_file_test_1.o.syms: v2: RESOLVED_IR
two_file_test_1.o.syms: _Z2t3v: PREVAILING_DEF_REG
two_file_test_1.o.syms: v3: RESOLVED_IR
two_file_test_1.o.syms: _Z2t4v: PREVAILING_DEF_REG
two_file_test_1.o.syms: v4: RESOLVED_IR
two_file_test_1.o.syms: _Z2t5v: PREVAILING_DEF_REG
two_file_test_1.o.syms: v5: RESOLVED_IR
two_file_test_1.o.syms: _Z2t6v: PREVAILING_DEF_REG
two_file_test_1.o.syms: p6: PREVAILING_DEF_REG
two_file_test_1.o.syms: _Z2t7v: PREVAILING_DEF_REG
two_file_test_1.o.syms: p7: PREVAILING_DEF_REG
two_file_test_1.o.syms: _Z2t8v: PREVAILING_DEF_REG
two_file_test_1.o.syms: p8: PREVAILING_DEF_REG
two_file_test_1.o.syms: _Z2t9v: PREVAILING_DEF_REG
two_file_test_1.o.syms: p9: PREVAILING_DEF_REG
two_file_test_1.o.syms: _Z3t10v: PREVAILING_DEF_REG
two_file_test_1.o.syms: pfn: PREVAILING_DEF_REG
two_file_test_1.o.syms: _Z3t11v: PREVAILING_DEF_REG
two_file_test_1.o.syms: _Z4f11bPFivE: RESOLVED_IR
two_file_test_1.o.syms: _Z3t13v: PREVAILING_DEF_REG
two_file_test_1.o.syms: _Z3f13v: RESOLVED_IR
two_file_test_1.o.syms: _Z3t14v: PREVAILING_DEF_REG
two_file_test_1.o.syms: _Z3f14v: RESOLVED_IR
two_file_test_1.o.syms: _Z3t15v: PREVAILING_DEF_REG
two_file_test_1.o.syms: _Z3f15v: RESOLVED_IR
two_file_test_1.o.syms: _Z3t16v: PREVAILING_DEF_REG
two_file_test_1.o.syms: _Z3f10v: RESOLVED_IR
two_file_test_1.o.syms: _Z3t17v: PREVAILING_DEF_REG
two_file_test_1.o.syms: t17data: RESOLVED_IR
two_file_test_1.o.syms: _Z3t18v: PREVAILING_DEF_REG
two_file_test_1.o.syms: _Z3f18i: RESOLVED_IR
two_file_test_1b.o.syms: _Z4t16av: PREVAILING_DEF_REG
two_file_test_1b.o.syms: _Z3f10v: RESOLVED_IR
two_file_test_2.o: _Z4f13iv: PREEMPTED_IR
two_file_test_2.o: _Z4t1_2v: PREVAILING_DEF_REG
two_file_test_2.o: _Z3t1av: PREVAILING_DEF_REG
two_file_test_2.o: _Z3f10v: PREVAILING_DEF_REG
two_file_test_2.o: _Z4f11bPFivE: PREVAILING_DEF_REG
two_file_test_2.o: _Z3f12v: PREVAILING_DEF_REG
two_file_test_2.o: _Z3t12v: RESOLVED_IR
two_file_test_2.o: _Z3f13v: PREVAILING_DEF_REG
two_file_test_2.o: _Z3f14v: PREVAILING_DEF_REG
two_file_test_2.o: _Z3f15v: PREVAILING_DEF_REG
two_file_test_2.o: _Z3f18i: PREVAILING_DEF_REG
two_file_test_2.o: t17data: PREVAILING_DEF_REG
two_file_test_2.o: v5: PREVAILING_DEF_REG
two_file_test_2.o: v4: PREVAILING_DEF_REG
two_file_test_2.o: v3: PREVAILING_DEF_REG
two_file_test_2.o: v2: PREVAILING_DEF_REG
two_file_test_1.o: adding new input file
two_file_test_1b.o: adding new input file
two_file_test_2.o: adding new input file
cleanup hook called
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o plugin_test_8 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--no-demangle plugin_test_8.o
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o plugin_test_10 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--no-demangle,--plugin,"./plugin_test.so" plugin_common_test_1.o.syms plugin_common_test_2.o
API version:   1
gold version:  111
/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/crt1.o: claim file hook called (offset = 0, size = 1212)
/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/crti.o: claim file hook called (offset = 0, size = 1164)
/usr/lib/gcc/i586-gnu/4.9/crtbegin.o: claim file hook called (offset = 0, size = 1940)
plugin_common_test_1.o.syms: claim file hook called (offset = 0, size = 1633)
plugin_common_test_1.o.syms: claiming file, adding 8 symbols
plugin_common_test_2.o: claim file hook called (offset = 0, size = 3064)
plugin_common_test_2.o: claiming file, adding 7 symbols
/usr/lib/gcc/i586-gnu/4.9/crtend.o: claim file hook called (offset = 0, size = 932)
/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/crtn.o: claim file hook called (offset = 0, size = 736)
/usr/lib/gcc/i586-gnu/4.9/libstdc++.so: claim file hook called (offset = 0, size = 1492412)
/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/libm.so: claim file hook called (offset = 0, size = 276040)
/usr/lib/gcc/i586-gnu/4.9/libgcc_s.so: claim file hook called (offset = 0, size = 113180)
/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/libc.so: claim file hook called (offset = 0, size = 309)
/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/libmachuser.so: claim file hook called (offset = 0, size = 87464)
/usr/lib/gcc/i586-gnu/4.9/../../../i386-gnu/libhurduser.so: claim file hook called (offset = 0, size = 198292)
/lib/i386-gnu/libc.so.0.3: claim file hook called (offset = 0, size = 1829828)
/usr/lib/i386-gnu/libcrt_nonshared.a: claim file hook called (offset = 882, size = 1376)
/lib/i386-gnu/ld.so.1: claim file hook called (offset = 0, size = 159348)
/usr/lib/gcc/i586-gnu/4.9/libgcc_s.so: claim file hook called (offset = 0, size = 113180)
all symbols read hook called
plugin_common_test_1.o.syms: main: PREVAILING_DEF_REG
plugin_common_test_1.o.syms: foo: RESOLVED_IR
plugin_common_test_1.o.syms: c1: PREVAILING_DEF_IRONLY
plugin_common_test_1.o.syms: c2: PREVAILING_DEF_IRONLY
plugin_common_test_1.o.syms: c3: RESOLVED_IR
plugin_common_test_1.o.syms: c4: RESOLVED_IR
plugin_common_test_1.o.syms: __assert_fail: RESOLVED_DYN
plugin_common_test_1.o.syms: c5: PREVAILING_DEF_IRONLY
plugin_common_test_2.o: foo: PREVAILING_DEF_IRONLY
plugin_common_test_2.o: c5: RESOLVED_IR
plugin_common_test_2.o: c1: RESOLVED_IR
plugin_common_test_2.o: c2: RESOLVED_IR
plugin_common_test_2.o: c3: PREVAILING_DEF_IRONLY
plugin_common_test_2.o: __assert_fail: RESOLVED_DYN
plugin_common_test_2.o: c4: PREVAILING_DEF_IRONLY
plugin_common_test_1.o: adding new input file
plugin_common_test_2.o: adding new input file
cleanup hook called
rm -f plugin_test_thin.a
../../binutils/ar crT plugin_test_thin.a two_file_test_1.o two_file_test_1b.o two_file_test_2.o
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o plugin_test_11 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--no-demangle,--plugin,"./plugin_test.so",--plugin-opt,"_Z4f13iv" two_file_test_main.o plugin_test_thin.a 2>plugin_test_11.err
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT two_file_test_tls.o -MD -MP -MF .deps/two_file_test_tls.Tpo -c -o two_file_test_tls.o ../../../W._C._Handy/gold/testsuite/two_file_test_tls.cc
mv -f .deps/two_file_test_tls.Tpo .deps/two_file_test_tls.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT two_file_test_2_tls.o -MD -MP -MF .deps/two_file_test_2_tls.Tpo -c -o two_file_test_2_tls.o ../../../W._C._Handy/gold/testsuite/two_file_test_2_tls.cc
mv -f .deps/two_file_test_2_tls.Tpo .deps/two_file_test_2_tls.Po
../../binutils/readelf -sW two_file_test_2_tls.o >two_file_test_2_tls.o.syms 2>/dev/null
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o plugin_test_tls | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--no-demangle,--plugin,"./plugin_test.so",--plugin-opt,"_Z4f13iv" two_file_test_tls.o two_file_test_1.o.syms two_file_test_1b.o.syms two_file_test_2_tls.o.syms 2>plugin_test_tls.err
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT exclude_libs_test.o -MD -MP -MF .deps/exclude_libs_test.Tpo -c -o exclude_libs_test.o ../../../W._C._Handy/gold/testsuite/exclude_libs_test.c
mv -f .deps/exclude_libs_test.Tpo .deps/exclude_libs_test.Po
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT exclude_libs_test_1.o -MD -MP -MF .deps/exclude_libs_test_1.Tpo -c -o exclude_libs_test_1.o ../../../W._C._Handy/gold/testsuite/exclude_libs_test_1.c
mv -f .deps/exclude_libs_test_1.Tpo .deps/exclude_libs_test_1.Po
../../binutils/ar rc libexclude_libs_test_1.a exclude_libs_test_1.o
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT exclude_libs_test_2.o -MD -MP -MF .deps/exclude_libs_test_2.Tpo -c -o exclude_libs_test_2.o ../../../W._C._Handy/gold/testsuite/exclude_libs_test_2.c
mv -f .deps/exclude_libs_test_2.Tpo .deps/exclude_libs_test_2.Po
../../binutils/ar rc libexclude_libs_test_2.a exclude_libs_test_2.o
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT exclude_libs_test_3.o -MD -MP -MF .deps/exclude_libs_test_3.Tpo -c -o exclude_libs_test_3.o ../../../W._C._Handy/gold/testsuite/exclude_libs_test_3.c
mv -f .deps/exclude_libs_test_3.Tpo .deps/exclude_libs_test_3.Po
test -d alt || mkdir -p alt
../../binutils/ar rc alt/libexclude_libs_test_3.a exclude_libs_test_3.o
gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -L. -Lalt -Wl,--exclude-libs,dummy:libexclude_libs_test_1 -Wl,--exclude-libs,libexclude_libs_test_3  -o exclude_libs_test exclude_libs_test.o -lexclude_libs_test_1 -lexclude_libs_test_2 alt/libexclude_libs_test_3.a -ldl 
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -g -c -Wa,-L -o local_labels_test.o ../../../W._C._Handy/gold/testsuite/ver_test_6.c
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o local_labels_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ local_labels_test.o
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -Wa,-L -o discard_locals_test.o ../../../W._C._Handy/gold/testsuite/discard_locals_test.c
gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,--discard-locals  -o discard_locals_test discard_locals_test.o libgoldtest.a ../libgold.a ../../libiberty/libiberty.a   -ldl -L../../zlib -lz -ldl 
umask 022; \
rm -f permission_test; \
touch permission_test; \
chmod 600 permission_test; \
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o permission_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ basic_test.o
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT searched_file_test.o -MD -MP -MF .deps/searched_file_test.Tpo -c -o searched_file_test.o ../../../W._C._Handy/gold/testsuite/searched_file_test.cc
mv -f .deps/searched_file_test.Tpo .deps/searched_file_test.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -o searched_file_test_lib.o ../../../W._C._Handy/gold/testsuite/searched_file_test_lib.cc
test -d alt || mkdir -p alt
../../binutils/ar rc alt/searched_file_test_lib.a searched_file_test_lib.o
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Lalt  -o searched_file_test searched_file_test.o -l:searched_file_test_lib.a -ldl 
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT ifuncmain1.o -MD -MP -MF .deps/ifuncmain1.Tpo -c -o ifuncmain1.o ../../../W._C._Handy/gold/testsuite/ifuncmain1.c
mv -f .deps/ifuncmain1.Tpo .deps/ifuncmain1.Po
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -o ifuncdep1.o ../../../W._C._Handy/gold/testsuite/ifuncmod1.c
gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -static  -o ifuncmain1static ifuncmain1.o ifuncdep1.o -ldl 
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncmain1pic.o ../../../W._C._Handy/gold/testsuite/ifuncmain1.c
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncmod1.o ../../../W._C._Handy/gold/testsuite/ifuncmod1.c
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ifuncmain1picstatic | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -static ifuncmain1pic.o ifuncmod1.o
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ifuncmod1.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared ifuncmod1.o
gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o ifuncmain1 ifuncmain1.o ifuncmod1.so -ldl 
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ifuncmain1pic | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ ifuncmain1pic.o ifuncmod1.so -Wl,-R,.
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT ifuncmain1vis.o -MD -MP -MF .deps/ifuncmain1vis.Tpo -c -o ifuncmain1vis.o ../../../W._C._Handy/gold/testsuite/ifuncmain1vis.c
mv -f .deps/ifuncmain1vis.Tpo .deps/ifuncmain1vis.Po
gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o ifuncmain1vis ifuncmain1vis.o ifuncmod1.so -ldl 
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncmain1vispic.o ../../../W._C._Handy/gold/testsuite/ifuncmain1vis.c
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ifuncmain1vispic | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ ifuncmain1pic.o ifuncmod1.so -Wl,-R,.
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ifuncmain1staticpic | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ ifuncmain1pic.o ifuncmod1.o
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIE -o ifuncmain1pie.o ../../../W._C._Handy/gold/testsuite/ifuncmain1.c
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ifuncmain1pie | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -pie ifuncmain1pie.o ifuncmod1.so -Wl,-R,.
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIE -o ifuncmain1vispie.o ../../../W._C._Handy/gold/testsuite/ifuncmain1vis.c
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ifuncmain1vispie | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -pie ifuncmain1vispie.o ifuncmod1.so -Wl,-R,.
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ifuncmain1staticpie | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -pie ifuncmain1pie.o ifuncmod1.o
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT ifuncmain2.o -MD -MP -MF .deps/ifuncmain2.Tpo -c -o ifuncmain2.o ../../../W._C._Handy/gold/testsuite/ifuncmain2.c
mv -f .deps/ifuncmain2.Tpo .deps/ifuncmain2.Po
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT ifuncdep2.o -MD -MP -MF .deps/ifuncdep2.Tpo -c -o ifuncdep2.o ../../../W._C._Handy/gold/testsuite/ifuncdep2.c
mv -f .deps/ifuncdep2.Tpo .deps/ifuncdep2.Po
gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -static  -o ifuncmain2static ifuncmain2.o ifuncdep2.o  -ldl 
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncmain2pic.o ../../../W._C._Handy/gold/testsuite/ifuncmain2.c
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncdep2pic.o ../../../W._C._Handy/gold/testsuite/ifuncdep2.c
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ifuncmain2picstatic | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -static ifuncmain2pic.o ifuncdep2pic.o
gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/  -o ifuncmain2 ifuncmain2.o ifuncdep2.o  -ldl 
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ifuncmain2pic | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ ifuncmain2pic.o ifuncdep2pic.o
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT ifuncmain3.o -MD -MP -MF .deps/ifuncmain3.Tpo -c -o ifuncmain3.o ../../../W._C._Handy/gold/testsuite/ifuncmain3.c
mv -f .deps/ifuncmain3.Tpo .deps/ifuncmain3.Po
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncmod3.o ../../../W._C._Handy/gold/testsuite/ifuncmod3.c
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ifuncmod3.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared ifuncmod3.o
gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,--export-dynamic -Wl,-R,.  -o ifuncmain3 ifuncmain3.o -ldl -ldl 
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT ifuncmain4.o -MD -MP -MF .deps/ifuncmain4.Tpo -c -o ifuncmain4.o ../../../W._C._Handy/gold/testsuite/ifuncmain4.c
mv -f .deps/ifuncmain4.Tpo .deps/ifuncmain4.Po
gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -static  -o ifuncmain4static ifuncmain4.o  -ldl 
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncmain4pic.o ../../../W._C._Handy/gold/testsuite/ifuncmain4.c
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ifuncmain4picstatic | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -static ifuncmain4pic.o
gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/  -o ifuncmain4 ifuncmain4.o  -ldl 
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT ifuncmain5.o -MD -MP -MF .deps/ifuncmain5.Tpo -c -o ifuncmain5.o ../../../W._C._Handy/gold/testsuite/ifuncmain5.c
mv -f .deps/ifuncmain5.Tpo .deps/ifuncmain5.Po
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -o ifuncdep5.o ../../../W._C._Handy/gold/testsuite/ifuncmod5.c
gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -static  -o ifuncmain5static ifuncmain5.o ifuncdep5.o -ldl 
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncmain5pic.o ../../../W._C._Handy/gold/testsuite/ifuncmain5.c
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncmod5.o ../../../W._C._Handy/gold/testsuite/ifuncmod5.c
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ifuncmain5picstatic | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -static ifuncmain5pic.o ifuncmod5.o
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ifuncmod5.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared ifuncmod5.o
gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o ifuncmain5 ifuncmain5.o ifuncmod5.so -ldl 
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ifuncmain5pic | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ ifuncmain5pic.o ifuncmod5.so -Wl,-R,.
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ifuncmain5staticpic | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ ifuncmain5pic.o ifuncmod5.o
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIE -o ifuncmain5pie.o ../../../W._C._Handy/gold/testsuite/ifuncmain5.c
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ifuncmain5pie | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -pie ifuncmain5pie.o ifuncmod5.so -Wl,-R,.
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIE -o ifuncmain6pie.o ../../../W._C._Handy/gold/testsuite/ifuncmain6pie.c
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncmod6.o ../../../W._C._Handy/gold/testsuite/ifuncmod6.c
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ifuncmod6.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared ifuncmod6.o
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ifuncmain6pie | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -pie ifuncmain6pie.o ifuncmod6.so -Wl,-R,.
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT ifuncmain7.o -MD -MP -MF .deps/ifuncmain7.Tpo -c -o ifuncmain7.o ../../../W._C._Handy/gold/testsuite/ifuncmain7.c
mv -f .deps/ifuncmain7.Tpo .deps/ifuncmain7.Po
gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -static  -o ifuncmain7static ifuncmain7.o  -ldl 
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncmain7pic.o ../../../W._C._Handy/gold/testsuite/ifuncmain7.c
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ifuncmain7picstatic | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -static ifuncmain7pic.o
gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/  -o ifuncmain7 ifuncmain7.o  -ldl 
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ifuncmain7pic | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ ifuncmain7pic.o
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIE -o ifuncmain7pie.o ../../../W._C._Handy/gold/testsuite/ifuncmain7.c
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ifuncmain7pie | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -pie ifuncmain7pie.o
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT ifuncvar3.o -MD -MP -MF .deps/ifuncvar3.Tpo -c -o ifuncvar3.o ../../../W._C._Handy/gold/testsuite/ifuncvar3.c
mv -f .deps/ifuncvar3.Tpo .deps/ifuncvar3.Po
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncvar1_pic.o ../../../W._C._Handy/gold/testsuite/ifuncvar1.c
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -fPIC -o ifuncvar2_pic.o ../../../W._C._Handy/gold/testsuite/ifuncvar2.c
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ifuncvar.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared ifuncvar1_pic.o ifuncvar2_pic.o
gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -Bgcctestdir/ -Wl,-R,.  -o ifuncvar ifuncvar3.o ifuncvar.so -ldl 
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT start_lib_test_main.o -MD -MP -MF .deps/start_lib_test_main.Tpo -c -o start_lib_test_main.o ../../../W._C._Handy/gold/testsuite/start_lib_test_main.c
mv -f .deps/start_lib_test_main.Tpo .deps/start_lib_test_main.Po
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT start_lib_test_1.o -MD -MP -MF .deps/start_lib_test_1.Tpo -c -o start_lib_test_1.o ../../../W._C._Handy/gold/testsuite/start_lib_test_1.c
mv -f .deps/start_lib_test_1.Tpo .deps/start_lib_test_1.Po
../../binutils/ar rc libstart_lib_test.a start_lib_test_1.o
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT start_lib_test_2.o -MD -MP -MF .deps/start_lib_test_2.Tpo -c -o start_lib_test_2.o ../../../W._C._Handy/gold/testsuite/start_lib_test_2.c
mv -f .deps/start_lib_test_2.Tpo .deps/start_lib_test_2.Po
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT start_lib_test_3.o -MD -MP -MF .deps/start_lib_test_3.Tpo -c -o start_lib_test_3.o ../../../W._C._Handy/gold/testsuite/start_lib_test_3.c
mv -f .deps/start_lib_test_3.Tpo .deps/start_lib_test_3.Po
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o start_lib_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -o start_lib_test start_lib_test_main.o -L. -lstart_lib_test \
	-Wl,--start-lib start_lib_test_2.o start_lib_test_3.o -Wl,--end-lib
g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""    -g -O2 -MT ehdr_start_test_1-ehdr_start_test.o -MD -MP -MF .deps/ehdr_start_test_1-ehdr_start_test.Tpo -c -o ehdr_start_test_1-ehdr_start_test.o `test -f 'ehdr_start_test.cc' || echo '../../../W._C._Handy/gold/testsuite/'`ehdr_start_test.cc
mv -f .deps/ehdr_start_test_1-ehdr_start_test.Tpo .deps/ehdr_start_test_1-ehdr_start_test.Po
g++-4.9  -g -O2 -Bgcctestdir/  -o ehdr_start_test_1 ehdr_start_test_1-ehdr_start_test.o  -ldl 
g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -DEHDR_START_WEAK -g -O2 -MT ehdr_start_test_2-ehdr_start_test.o -MD -MP -MF .deps/ehdr_start_test_2-ehdr_start_test.Tpo -c -o ehdr_start_test_2-ehdr_start_test.o `test -f 'ehdr_start_test.cc' || echo '../../../W._C._Handy/gold/testsuite/'`ehdr_start_test.cc
mv -f .deps/ehdr_start_test_2-ehdr_start_test.Tpo .deps/ehdr_start_test_2-ehdr_start_test.Po
g++-4.9 -DEHDR_START_WEAK -g -O2 -Bgcctestdir/  -o ehdr_start_test_2 ehdr_start_test_2-ehdr_start_test.o  -ldl 
g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -DEHDR_START_WEAK -g -O2 -MT ehdr_start_test_3-ehdr_start_test.o -MD -MP -MF .deps/ehdr_start_test_3-ehdr_start_test.Tpo -c -o ehdr_start_test_3-ehdr_start_test.o `test -f 'ehdr_start_test.cc' || echo '../../../W._C._Handy/gold/testsuite/'`ehdr_start_test.cc
mv -f .deps/ehdr_start_test_3-ehdr_start_test.Tpo .deps/ehdr_start_test_3-ehdr_start_test.Po
g++-4.9 -DEHDR_START_WEAK -g -O2 -Bgcctestdir/ -Wl,-T,../../../W._C._Handy/gold/testsuite/ehdr_start_test.t  -o ehdr_start_test_3 ehdr_start_test_3-ehdr_start_test.o  -ldl 
g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -DEHDR_START_USER_DEF -g -O2 -MT ehdr_start_test_5-ehdr_start_test.o -MD -MP -MF .deps/ehdr_start_test_5-ehdr_start_test.Tpo -c -o ehdr_start_test_5-ehdr_start_test.o `test -f 'ehdr_start_test.cc' || echo '../../../W._C._Handy/gold/testsuite/'`ehdr_start_test.cc
mv -f .deps/ehdr_start_test_5-ehdr_start_test.Tpo .deps/ehdr_start_test_5-ehdr_start_test.Po
g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -DEHDR_START_USER_DEF -g -O2 -MT ehdr_start_test_5-ehdr_start_def.o -MD -MP -MF .deps/ehdr_start_test_5-ehdr_start_def.Tpo -c -o ehdr_start_test_5-ehdr_start_def.o `test -f 'ehdr_start_def.cc' || echo '../../../W._C._Handy/gold/testsuite/'`ehdr_start_def.cc
mv -f .deps/ehdr_start_test_5-ehdr_start_def.Tpo .deps/ehdr_start_test_5-ehdr_start_def.Po
g++-4.9 -DEHDR_START_USER_DEF -g -O2 -Bgcctestdir/  -o ehdr_start_test_5 ehdr_start_test_5-ehdr_start_test.o ehdr_start_test_5-ehdr_start_def.o  -ldl 
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/incremental_test.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/gc_comdat_test.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/gc_tls_test.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/gc_orphan_section_test.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/pr14265.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/gc_dynamic_list_test.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/icf_test.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/icf_keep_unique_test.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/icf_safe_test.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/icf_safe_so_test.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/final_layout.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/text_section_grouping.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/section_sorting_name.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/icf_preemptible_functions_test.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/icf_string_merge_test.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/icf_sht_rel_addend_test.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/merge_string_literals.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/two_file_shared.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/weak_plt.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/tls_pie_test.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/i386_mov_to_lea.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/debug_msg.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/missing_key_func.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/undef_symbol.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/pr18689.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/ver_test_1.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/ver_test_2.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/ver_test_4.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/ver_test_5.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/ver_test_7.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/ver_test_10.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/relro_test.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/ver_matching_test.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/script_test_3.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/script_test_4.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/script_test_5.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/script_test_6.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/script_test_7.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/script_test_8.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/script_test_9.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/dynamic_list.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/plugin_test_1.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/plugin_test_2.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/plugin_test_3.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/plugin_test_4.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/plugin_test_6.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/plugin_test_7.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/plugin_test_10.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/plugin_test_11.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/plugin_test_tls.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/plugin_final_layout.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/exclude_libs_test.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/discard_locals_test.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/hidden_test.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/retain_symbols_file_test.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/no_version_test.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/strong_ref_weak_def.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/dyn_weak_ref.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/memory_test.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/gdb_index_test_1.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/gdb_index_test_2.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/gdb_index_test_2_gabi.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/gdb_index_test_3.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/gdb_index_test_4.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/ehdr_start_test_4.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/defsym_test.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/script_test_10.sh'.
make[5]: Nothing to be done for '../../../W._C._Handy/gold/testsuite/split_i386.sh'.
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -O0 -c -ffunction-sections -g -o incremental_test_1.o ../../../W._C._Handy/gold/testsuite/incremental_test_1.c
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -O0 -c -ffunction-sections -g -o incremental_test_2.o ../../../W._C._Handy/gold/testsuite/incremental_test_2.c
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o incremental_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--incremental-full -Wl,-z,norelro incremental_test_1.o incremental_test_2.o -Wl,-debug 2> incremental_test.cmdline
../incremental-dump incremental_test > incremental_test.stdout
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -g -o gc_comdat_test_1.o ../../../W._C._Handy/gold/testsuite/gc_comdat_test_1.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -g -o gc_comdat_test_2.o ../../../W._C._Handy/gold/testsuite/gc_comdat_test_2.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o gc_comdat_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--gc-sections gc_comdat_test_1.o gc_comdat_test_2.o
../../binutils/nm-new -C gc_comdat_test > gc_comdat_test.stdout
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -g -o gc_tls_test.o ../../../W._C._Handy/gold/testsuite/gc_tls_test.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o gc_tls_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--gc-sections gc_tls_test.o
../../binutils/nm-new -C gc_tls_test > gc_tls_test.stdout
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -g -o gc_orphan_section_test.o ../../../W._C._Handy/gold/testsuite/gc_orphan_section_test.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o gc_orphan_section_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--gc-sections gc_orphan_section_test.o
../../binutils/nm-new gc_orphan_section_test > gc_orphan_section_test.stdout
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -O0 -c -o pr14265.o ../../../W._C._Handy/gold/testsuite/pr14265.c
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o pr14265 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--gc-sections -Wl,-T,../../../W._C._Handy/gold/testsuite/pr14265.t -o pr14265 pr14265.o
../../binutils/nm-new --format=bsd --numeric-sort pr14265 > pr14265.stdout
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -ffunction-sections -o gc_dynamic_list_test.o ../../../W._C._Handy/gold/testsuite/gc_dynamic_list_test.c
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o gc_dynamic_list_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--gc-sections -Wl,--dynamic-list,../../../W._C._Handy/gold/testsuite/gc_dynamic_list_test.t gc_dynamic_list_test.o
../../binutils/nm-new gc_dynamic_list_test > gc_dynamic_list_test.stdout
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -g -o icf_test.o ../../../W._C._Handy/gold/testsuite/icf_test.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o icf_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -o icf_test -Bgcctestdir/ -Wl,--icf=all,-Map,icf_test.map icf_test.o
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -g -o icf_keep_unique_test.o ../../../W._C._Handy/gold/testsuite/icf_keep_unique_test.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o icf_keep_unique_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--icf=all -Wl,--keep-unique,_Z11unique_funcv icf_keep_unique_test.o
../../binutils/nm-new -C icf_keep_unique_test > icf_keep_unique_test.stdout
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -g -o icf_safe_test.o ../../../W._C._Handy/gold/testsuite/icf_safe_test.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o icf_safe_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -o icf_safe_test -Bgcctestdir/ -Wl,--icf=safe,-Map,icf_safe_test.map icf_safe_test.o
../../binutils/nm-new icf_safe_test > icf_safe_test_1.stdout
../../binutils/readelf -h icf_safe_test > icf_safe_test_2.stdout
make[5]: 'icf_safe_test.map' is up to date.
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -fPIC -g -o icf_safe_so_test.o ../../../W._C._Handy/gold/testsuite/icf_safe_so_test.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o icf_safe_so_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -o icf_safe_so_test -Bgcctestdir/ -Wl,--icf=safe,-Map,icf_safe_so_test.map icf_safe_so_test.o -fPIC -shared
../../binutils/nm-new icf_safe_so_test > icf_safe_so_test_1.stdout
../../binutils/readelf -h icf_safe_so_test > icf_safe_so_test_2.stdout
make[5]: 'icf_safe_so_test.map' is up to date.
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections  -fdata-sections -g -o final_layout.o ../../../W._C._Handy/gold/testsuite/final_layout.cc
(echo "*_Z3barv*" && echo ".text._Z3bazv" && echo "*_Z3foov*" && echo "*global_varb*" && echo "*global_vara*" && echo "*global_varc*") > final_layout_sequence.txt
(echo "SECTIONS { .text : { *(.text*) } .got : { *(.got .toc) } .sbss : { *(.sbss*) } .bss : { *(.bss*) } }") > final_layout_script.lds
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o final_layout | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--section-ordering-file,final_layout_sequence.txt -Wl,-T,final_layout_script.lds final_layout.o
../../binutils/nm-new -n --synthetic final_layout > final_layout.stdout
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -g -o text_section_grouping.o ../../../W._C._Handy/gold/testsuite/text_section_grouping.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o text_section_grouping | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'`  -Bgcctestdir/ text_section_grouping.o
../../binutils/nm-new -n --synthetic text_section_grouping > text_section_grouping.stdout
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o text_section_no_grouping | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'`  -Bgcctestdir/ -Wl,--no-text-reorder text_section_grouping.o
../../binutils/nm-new -n --synthetic text_section_no_grouping > text_section_no_grouping.stdout
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -g -o section_sorting_name.o ../../../W._C._Handy/gold/testsuite/section_sorting_name.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o section_sorting_name | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'`  -Bgcctestdir/ -Wl,--sort-section=name section_sorting_name.o
../../binutils/nm-new -n --synthetic section_sorting_name > section_sorting_name.stdout
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -fPIC -g -o icf_preemptible_functions_test.o ../../../W._C._Handy/gold/testsuite/icf_preemptible_functions_test.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o icf_preemptible_functions_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--icf=all icf_preemptible_functions_test.o -fPIC -shared
../../binutils/nm-new icf_preemptible_functions_test > icf_preemptible_functions_test.stdout
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -fPIC -g -o icf_string_merge_test.o ../../../W._C._Handy/gold/testsuite/icf_string_merge_test.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o icf_string_merge_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--icf=all icf_string_merge_test.o
../../binutils/nm-new icf_string_merge_test > icf_string_merge_test.stdout
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -fPIC -g -o icf_sht_rel_addend_test_1.o ../../../W._C._Handy/gold/testsuite/icf_sht_rel_addend_test_1.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections -fPIC -g -o icf_sht_rel_addend_test_2.o ../../../W._C._Handy/gold/testsuite/icf_sht_rel_addend_test_2.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o icf_sht_rel_addend_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--icf=all icf_sht_rel_addend_test_1.o icf_sht_rel_addend_test_2.o
../../binutils/nm-new icf_sht_rel_addend_test > icf_sht_rel_addend_test.stdout
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O2 -c -fPIC -g -o merge_string_literals_1.o ../../../W._C._Handy/gold/testsuite/merge_string_literals_1.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O2 -c -fPIC -g -o merge_string_literals_2.o ../../../W._C._Handy/gold/testsuite/merge_string_literals_2.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o merge_string_literals | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ merge_string_literals_1.o merge_string_literals_2.o -O2 -shared -nostdlib
../../binutils/objdump -s -j.rodata merge_string_literals > merge_string_literals.stdout
../../binutils/readelf -w two_file_shared.so >two_file_shared.dbg 2>/dev/null
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o weak_plt_shared_pic.o ../../../W._C._Handy/gold/testsuite/weak_plt_shared.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o weak_plt_shared.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared weak_plt_shared_pic.o
../../binutils/readelf -rW tls_pie_test > tls_pie_test.stdout 2>/dev/null
../../gas/as-new --32 -o i386_mov_to_lea1.o ../../../W._C._Handy/gold/testsuite/i386_mov_to_lea1.s
../ld-new -Bsymbolic -shared -melf_i386  -o i386_mov_to_lea1 i386_mov_to_lea1.o
../../binutils/objdump -dw i386_mov_to_lea1 > i386_mov_to_lea1.stdout
../ld-new  -pie -melf_i386  -o i386_mov_to_lea2 i386_mov_to_lea1.o
../../binutils/objdump -dw i386_mov_to_lea2 > i386_mov_to_lea2.stdout
../ld-new -melf_i386  -o i386_mov_to_lea3 i386_mov_to_lea1.o
../../binutils/objdump -dw i386_mov_to_lea3 > i386_mov_to_lea3.stdout
../ld-new -melf_i386 -shared  -o i386_mov_to_lea4 i386_mov_to_lea1.o
../../binutils/objdump -dw i386_mov_to_lea4 > i386_mov_to_lea4.stdout
../../gas/as-new --32 -o i386_mov_to_lea2.o ../../../W._C._Handy/gold/testsuite/i386_mov_to_lea2.s
../ld-new -melf_i386 -shared  -o i386_mov_to_lea5 i386_mov_to_lea2.o
../../binutils/objdump -dw i386_mov_to_lea5 > i386_mov_to_lea5.stdout
../../gas/as-new --32 -o i386_mov_to_lea3.o ../../../W._C._Handy/gold/testsuite/i386_mov_to_lea3.s
../ld-new -melf_i386 -shared  -o i386_mov_to_lea6 i386_mov_to_lea3.o
../../binutils/objdump -dw i386_mov_to_lea6 > i386_mov_to_lea6.stdout
../../gas/as-new --32 -o i386_mov_to_lea4.o ../../../W._C._Handy/gold/testsuite/i386_mov_to_lea4.s
../ld-new -melf_i386 -shared  -o i386_mov_to_lea7 i386_mov_to_lea4.o
../../binutils/objdump -dw i386_mov_to_lea7 > i386_mov_to_lea7.stdout
../../gas/as-new --32 -o i386_mov_to_lea5.o ../../../W._C._Handy/gold/testsuite/i386_mov_to_lea5.s
../ld-new -melf_i386 -shared  -o i386_mov_to_lea8 i386_mov_to_lea5.o
../../binutils/objdump -dw i386_mov_to_lea8 > i386_mov_to_lea8.stdout
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -g -c -w -o debug_msg.o ../../../W._C._Handy/gold/testsuite/debug_msg.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -g -c -w -o odr_violation1.o ../../../W._C._Handy/gold/testsuite/odr_violation1.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O2 -g -c -w -o odr_violation2.o ../../../W._C._Handy/gold/testsuite/odr_violation2.cc
g++-4.9 -W -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin -o debug_msg.err -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg debug_msg.o odr_violation1.o odr_violation2.o 2>debug_msg.err
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -g -c -o missing_key_func.o ../../../W._C._Handy/gold/testsuite/missing_key_func.cc
g++-4.9 -W -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin -o missing_key_func.err -Bgcctestdir/ -o missing_key_func missing_key_func.o 2>missing_key_func.err
test -d gcctestdir || mkdir -p gcctestdir
rm -f gcctestdir/as
(cd gcctestdir && ln -s [...]/tschwinge/W._C._Handy.build/gold/../gas/as-new as)
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -O0 -g -Wa,--compress-debug-sections -c -w -o debug_msg_cdebug.o ../../../W._C._Handy/gold/testsuite/debug_msg.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -O0 -g -Wa,--compress-debug-sections -c -w -o odr_violation1_cdebug.o ../../../W._C._Handy/gold/testsuite/odr_violation1.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -O2 -g -Wa,--compress-debug-sections -c -w -o odr_violation2_cdebug.o ../../../W._C._Handy/gold/testsuite/odr_violation2.cc
g++-4.9 -W -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin -o debug_msg_cdebug.err -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg_cdebug debug_msg_cdebug.o odr_violation1_cdebug.o odr_violation2_cdebug.o 2>debug_msg_cdebug.err
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -O0 -g -Wa,--compress-debug-sections=zlib-gabi -c -w -o debug_msg_cdebug_gabi.o ../../../W._C._Handy/gold/testsuite/debug_msg.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -O0 -g -Wa,--compress-debug-sections=zlib-gabi -c -w -o odr_violation1_cdebug_gabi.o ../../../W._C._Handy/gold/testsuite/odr_violation1.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -O2 -g -Wa,--compress-debug-sections=zlib-gabi -c -w -o odr_violation2_cdebug_gabi.o ../../../W._C._Handy/gold/testsuite/odr_violation2.cc
g++-4.9 -W -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin -o debug_msg_cdebug_gabi.err -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg_cdebug debug_msg_cdebug_gabi.o odr_violation1_cdebug_gabi.o odr_violation2_cdebug_gabi.o 2>debug_msg_cdebug_gabi.err
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -O0 -g -shared -fPIC -w -o debug_msg.so ../../../W._C._Handy/gold/testsuite/debug_msg.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -O0 -g -shared -fPIC -w -o odr_violation1.so ../../../W._C._Handy/gold/testsuite/odr_violation1.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -O2 -g -shared -fPIC -w -o odr_violation2.so ../../../W._C._Handy/gold/testsuite/odr_violation2.cc
g++-4.9 -W -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin -o debug_msg_so.err -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg_so debug_msg.so odr_violation1.so odr_violation2.so 2>debug_msg_so.err
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -O0 -g0 -shared -fPIC -w -o debug_msg_ndebug.so ../../../W._C._Handy/gold/testsuite/debug_msg.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -O0 -g0 -shared -fPIC -w -o odr_violation1_ndebug.so ../../../W._C._Handy/gold/testsuite/odr_violation1.cc
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -O2 -g0 -shared -fPIC -w -o odr_violation2_ndebug.so ../../../W._C._Handy/gold/testsuite/odr_violation2.cc
g++-4.9 -W -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin -o debug_msg_ndebug.err -Bgcctestdir/ -Wl,--detect-odr-violations -o debug_msg_ndebug debug_msg_ndebug.so odr_violation1_ndebug.so odr_violation2_ndebug.so -shared-libgcc -Bdynamic -lstdc++ 2>debug_msg_ndebug.err
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT undef_symbol_main.o -MD -MP -MF .deps/undef_symbol_main.Tpo -c -o undef_symbol_main.o ../../../W._C._Handy/gold/testsuite/undef_symbol_main.cc
mv -f .deps/undef_symbol_main.Tpo .deps/undef_symbol_main.Po
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -g -c -fPIC ../../../W._C._Handy/gold/testsuite/undef_symbol.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o undef_symbol.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared undef_symbol.o
g++-4.9 -W -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin -o undef_symbol.err -Bgcctestdir/ -o undef_symbol_test undef_symbol_main.o undef_symbol.so 2>undef_symbol.err
../../binutils/readelf -w flagstest_compress_debug_sections_none > flagstest_compress_debug_sections_none.stdout.tmp
mv -f flagstest_compress_debug_sections_none.stdout.tmp flagstest_compress_debug_sections_none.stdout
../../binutils/readelf -w flagstest_compress_debug_sections | sed -e "s/.zdebug_/.debug_/" > flagstest_compress_debug_sections.stdout.tmp
mv -f flagstest_compress_debug_sections.stdout.tmp flagstest_compress_debug_sections.stdout
cmp flagstest_compress_debug_sections.stdout \
	flagstest_compress_debug_sections_none.stdout > flagstest_compress_debug_sections.cmp.tmp
mv -f flagstest_compress_debug_sections.cmp.tmp flagstest_compress_debug_sections.cmp
../../binutils/readelf -SW flagstest_compress_debug_sections | egrep ".debug_.* C *" > flagstest_compress_debug_sections.check.tmp
mv -f flagstest_compress_debug_sections.check.tmp flagstest_compress_debug_sections.check
../../binutils/readelf -w flagstest_compress_debug_sections_gnu | sed -e "s/.zdebug_/.debug_/" > flagstest_compress_debug_sections_gnu.stdout.tmp
mv -f flagstest_compress_debug_sections_gnu.stdout.tmp flagstest_compress_debug_sections_gnu.stdout
cmp flagstest_compress_debug_sections_gnu.stdout \
	flagstest_compress_debug_sections_none.stdout > flagstest_compress_debug_sections_gnu.cmp.tmp
mv -f flagstest_compress_debug_sections_gnu.cmp.tmp flagstest_compress_debug_sections_gnu.cmp
../../binutils/readelf -SW flagstest_compress_debug_sections_gnu | grep ".zdebug_" > flagstest_compress_debug_sections_gnu.check.tmp
mv -f flagstest_compress_debug_sections_gnu.check.tmp flagstest_compress_debug_sections_gnu.check
../../binutils/readelf -w flagstest_compress_debug_sections_gabi > flagstest_compress_debug_sections_gabi.stdout.tmp
mv -f flagstest_compress_debug_sections_gabi.stdout.tmp flagstest_compress_debug_sections_gabi.stdout
cmp flagstest_compress_debug_sections_gabi.stdout \
	flagstest_compress_debug_sections_none.stdout > flagstest_compress_debug_sections_gabi.cmp.tmp
mv -f flagstest_compress_debug_sections_gabi.cmp.tmp flagstest_compress_debug_sections_gabi.cmp
../../binutils/readelf -tW flagstest_compress_debug_sections_gabi | grep "COMPRESSED" > flagstest_compress_debug_sections_gabi.check.tmp
mv -f flagstest_compress_debug_sections_gabi.check.tmp flagstest_compress_debug_sections_gabi.check
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -Bgcctestdir/ -ggdb3 -g -Wa,--compress-debug-sections=zlib-gabi -c -w -o pr18689.o ../../../W._C._Handy/gold/testsuite/pr18689.c
../ld-new -r -o pr18689a.o pr18689.o
../ld-new -r -o pr18689b.o pr18689a.o
../../binutils/readelf -SW pr18689b.o > pr18689.stdout
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o flagstest_o_ttext_2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -o flagstest_o_ttext_2 flagstest_debug.o -Wl,-Ttext,0x400010 -Wl,-Tdata,0x800010
../../binutils/readelf -s ver_test_1.so >ver_test_1.syms 2>/dev/null
../../binutils/readelf -s ver_test_2 >ver_test_2.syms 2>/dev/null
../../binutils/readelf -s ver_test_4.so >ver_test_4.syms 2>/dev/null
../../binutils/readelf -s ver_test_5.so >ver_test_5.syms 2>/dev/null
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o ver_test_7.o ../../../W._C._Handy/gold/testsuite/ver_test_7.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ver_test_7.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared -Wl,--version-script,../../../W._C._Handy/gold/testsuite/ver_test_4.script ver_test_4.o ver_test_7.o
../../binutils/readelf -s ver_test_7.so >ver_test_7.syms 2>/dev/null
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ver_test_10.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared -Wl,--version-script,../../../W._C._Handy/gold/testsuite/ver_test_10.script ver_test_2.o
../../binutils/readelf -s ver_test_10.so >ver_test_10.syms 2>/dev/null
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -fpic -o protected_4_pic.o ../../../W._C._Handy/gold/testsuite/protected_4.cc
g++-4.9 -W -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin -o protected_3.err -Bgcctestdir/ -shared -o protected_4.so protected_4_pic.o 2>protected_3.err
../../binutils/readelf -SlW relro_test.so > relro_test.stdout
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -fpic -o ver_matching_def_pic.o ../../../W._C._Handy/gold/testsuite/ver_matching_def.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ver_matching_def.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -Bgcctestdir/ -shared ver_matching_def_pic.o -Wl,--version-script=../../../W._C._Handy/gold/testsuite/version_script.map
../../binutils/objdump -T ver_matching_def.so | ../../binutils/cxxfilt > ver_matching_test.stdout
../../binutils/readelf -SlW script_test_3 > script_test_3.stdout
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o script_test_4 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ basic_test.o -Wl,-T,../../../W._C._Handy/gold/testsuite/script_test_4.t
../../binutils/readelf -SlW script_test_4 > script_test_4.stdout
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -MT script_test_5.o -MD -MP -MF .deps/script_test_5.Tpo -c -o script_test_5.o ../../../W._C._Handy/gold/testsuite/script_test_5.cc
mv -f .deps/script_test_5.Tpo .deps/script_test_5.Po
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o script_test_5 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ script_test_5.o -Wl,-T,../../../W._C._Handy/gold/testsuite/script_test_5.t
../../binutils/readelf -SW script_test_5 > script_test_5.stdout
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o script_test_6 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ basic_test.o -Wl,-T,../../../W._C._Handy/gold/testsuite/script_test_6.t \
-Wl,-Ttext=0x10001000 -Wl,-Tdata=0x10200000 -Wl,-Tbss=0x10400000
../../binutils/readelf -SlW script_test_6 > script_test_6.stdout
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o script_test_7 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ basic_test.o -Wl,-T,../../../W._C._Handy/gold/testsuite/script_test_7.t
../../binutils/readelf -SlW script_test_7 > script_test_7.stdout
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o script_test_8 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ basic_test.o -Wl,-T,../../../W._C._Handy/gold/testsuite/script_test_7.t \
-Wl,-Ttext=0x20001000 -Wl,-Tdata=0x20200000 -Wl,-Tbss=0x20400000
../../binutils/readelf -SlW script_test_8 > script_test_8.stdout
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -o script_test_9.o ../../../W._C._Handy/gold/testsuite/script_test_9.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o script_test_9 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ script_test_9.o -Wl,-T,../../../W._C._Handy/gold/testsuite/script_test_9.t
../../binutils/readelf -lW script_test_9 > script_test_9.stdout
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o dynamic_list | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ basic_test.o \
  -Wl,--dynamic-list ../../../W._C._Handy/gold/testsuite/dynamic_list.t \
  -Wl,--dynamic-list-data \
  -Wl,--dynamic-list-cpp-new \
  -Wl,--dynamic-list-cpp-typeinfo
../../binutils/readelf -W --dyn-syms dynamic_list > dynamic_list.stdout
make[5]: 'plugin_test_1.err' is up to date.
make[5]: 'plugin_test_2.err' is up to date.
make[5]: 'plugin_test_3.err' is up to date.
make[5]: 'plugin_test_4.err' is up to date.
make[5]: 'plugin_test_6.err' is up to date.
make[5]: Nothing to be done for 'plugin_test_7.err'.
../../binutils/readelf -sW plugin_test_7 >plugin_test_7.o.syms 2>/dev/null
cp two_file_test_1.o two_file_test_1c.o
cp two_file_test_1.o.syms two_file_test_1c.o.syms.tmp
grep "_Z4t16av" two_file_test_1b.o.syms >> two_file_test_1c.o.syms.tmp
mv -f two_file_test_1c.o.syms.tmp two_file_test_1c.o.syms
g++-4.9 -W -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin -o plugin_test_9.err -Bgcctestdir/ -o plugin_test_9 -Wl,--no-demangle,--plugin,./plugin_test.so two_file_test_main.o two_file_test_1c.o.syms two_file_test_2.o.syms 2>plugin_test_9.err
../../binutils/readelf -SW plugin_test_10 >plugin_test_10.sections 2>/dev/null
make[5]: 'plugin_test_11.err' is up to date.
make[5]: 'plugin_test_tls.err' is up to date.
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -c -ffunction-sections  -fdata-sections -g -o plugin_final_layout.o ../../../W._C._Handy/gold/testsuite/plugin_final_layout.cc
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -O0 -c -fpic -o plugin_section_order.o ../../../W._C._Handy/gold/testsuite/plugin_section_order.c
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o plugin_section_order.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared plugin_section_order.o
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o plugin_final_layout | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--plugin,"./plugin_section_order.so" plugin_final_layout.o
../../binutils/nm-new -n --synthetic plugin_final_layout > plugin_final_layout.stdout
../../binutils/readelf -Wl plugin_final_layout > plugin_final_layout_readelf.stdout
../../binutils/readelf -sW exclude_libs_test >exclude_libs_test.syms 2>/dev/null
../../binutils/readelf -sW discard_locals_test >discard_locals_test.syms 2>/dev/null
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -Wa,-L -fPIC -o discard_locals_relocatable_test.o ../../../W._C._Handy/gold/testsuite/discard_locals_relocatable_test.c
../ld-new --discard-locals -relocatable -o discard_locals_relocatable_test1.out discard_locals_relocatable_test.o
../../binutils/readelf -sW discard_locals_relocatable_test1.out >discard_locals_relocatable_test1.syms 2>/dev/null
../ld-new --discard-all -relocatable -o discard_locals_relocatable_test2.out discard_locals_relocatable_test.o
../../binutils/readelf -sW discard_locals_relocatable_test2.out >discard_locals_relocatable_test2.syms 2>/dev/null
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -MT hidden_test_main.o -MD -MP -MF .deps/hidden_test_main.Tpo -c -o hidden_test_main.o ../../../W._C._Handy/gold/testsuite/hidden_test_main.c
mv -f .deps/hidden_test_main.Tpo .deps/hidden_test_main.Po
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -Bgcctestdir/ -g -shared -fPIC -w -o libhidden.so ../../../W._C._Handy/gold/testsuite/hidden_test_1.c
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o hidden_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,-R,. hidden_test_main.o libhidden.so 2>hidden_test.err
echo 'main' > retain_symbols_file_test.in
echo 't1' >> retain_symbols_file_test.in
echo '_ZN4t16bC1Ev' >> retain_symbols_file_test.in
echo '_ZNK4t20a3getEv' >> retain_symbols_file_test.in
echo '_Z3t18v' >> retain_symbols_file_test.in
echo '__tcf_0' >> retain_symbols_file_test.in
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o retain_symbols_file_test.so | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -shared -Wl,-retain-symbols-file,retain_symbols_file_test.in basic_pic_test.o
../../binutils/nm-new -C retain_symbols_file_test.so > retain_symbols_file_test.stdout
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -o no_version_test.o -c -fPIC ../../../W._C._Handy/gold/testsuite/no_version_test.c
gcctestdir/ld -shared -o libno_version_test.so no_version_test.o
../../binutils/objdump -h libno_version_test.so > no_version_test.stdout
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -o strong_ref_weak_def_1.o -c -fPIC ../../../W._C._Handy/gold/testsuite/strong_ref_weak_def_1.c
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -o strong_ref_weak_def_2.o -c -fPIC ../../../W._C._Handy/gold/testsuite/strong_ref_weak_def_2.c
gcctestdir/ld -shared -o strong_ref_weak_def_2.so strong_ref_weak_def_2.o
gcctestdir/ld -shared -o strong_ref_weak_def_1.so strong_ref_weak_def_1.o \
	strong_ref_weak_def_2.so
../../binutils/readelf -sWD strong_ref_weak_def_1.so > strong_ref_weak_def.stdout
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -o dyn_weak_ref_1.o -c -fPIC ../../../W._C._Handy/gold/testsuite/dyn_weak_ref_1.c
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -o dyn_weak_ref_2.o -c -fPIC ../../../W._C._Handy/gold/testsuite/dyn_weak_ref_2.c
gcctestdir/ld -shared -o dyn_weak_ref_2.so dyn_weak_ref_2.o
gcctestdir/ld -shared -o dyn_weak_ref_1.so dyn_weak_ref_2.so dyn_weak_ref_1.o
../../binutils/readelf -sWD dyn_weak_ref_1.so > dyn_weak_ref.stdout
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -o memory_test.o -c ../../../W._C._Handy/gold/testsuite/memory_test.s
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o memory_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -nostartfiles -nostdlib -z max-page-size=0x1000 -z common-page-size=0x1000 -Wl,-T,../../../W._C._Handy/gold/testsuite/memory_test.t -o memory_test memory_test.o
../../binutils/readelf -lWS  memory_test > memory_test.stdout
cp ../../../W._C._Handy/gold/testsuite/memory_test_inc_1.t.src memory_test_inc_1.t
cp ../../../W._C._Handy/gold/testsuite/memory_test_inc_2.t.src memory_test_inc_2.t
cp ../../../W._C._Handy/gold/testsuite/memory_test_inc_3.t.src memory_test_inc_3.t
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o memory_test_2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -nostartfiles -nostdlib -z max-page-size=0x1000 -z common-page-size=0x1000 -Wl,-T,../../../W._C._Handy/gold/testsuite/memory_test.t -o memory_test_2 memory_test.o
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -g -gno-pubnames -c -o gdb_index_test.o ../../../W._C._Handy/gold/testsuite/gdb_index_test.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o gdb_index_test_1 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--gdb-index gdb_index_test.o
../../binutils/readelf --debug-dump=gdb_index gdb_index_test_1 > gdb_index_test_1.stdout
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -O0 -g -Wa,--compress-debug-sections -c -o gdb_index_test_cdebug.o ../../../W._C._Handy/gold/testsuite/gdb_index_test.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o gdb_index_test_2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--gdb-index gdb_index_test_cdebug.o
../../binutils/readelf --debug-dump=gdb_index gdb_index_test_2 > gdb_index_test_2.stdout
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -O0 -g -Wa,--compress-debug-sections=zlib-gabi -c -o gdb_index_test_cdebug_gabi.o ../../../W._C._Handy/gold/testsuite/gdb_index_test.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o gdb_index_test_2_gabi | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--gdb-index gdb_index_test_cdebug_gabi.o
../../binutils/readelf --debug-dump=gdb_index gdb_index_test_2_gabi > gdb_index_test_2_gabi.stdout
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -O0 -g -c -o gdb_index_test_3.o ../../../W._C._Handy/gold/testsuite/gdb_index_test_3.c
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o gdb_index_test_3 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--gdb-index,--fatal-warnings gdb_index_test_3.o
../../binutils/readelf --debug-dump=gdb_index gdb_index_test_3 > gdb_index_test_3.stdout
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -O0 -g -gpubnames -c -o gdb_index_test_pub.o ../../../W._C._Handy/gold/testsuite/gdb_index_test.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o gdb_index_test_4 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--gdb-index gdb_index_test_pub.o
../../binutils/readelf --debug-dump=gdb_index gdb_index_test_4 > gdb_index_test_4.stdout
`echo g++-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -c -DEHDR_START_WEAK -o ehdr_start_test_4.o ../../../W._C._Handy/gold/testsuite/ehdr_start_test.cc
`echo g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o ehdr_start_test_4 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,-Ttext=0x100100 ehdr_start_test_4.o
../../binutils/nm-new ehdr_start_test_4 > ehdr_start_test_4.syms
`echo gcc-4.9 -DHAVE_CONFIG_H -I. -I../../../W._C._Handy/gold/testsuite -I..  -I../../../W._C._Handy/gold/testsuite -I../../../W._C._Handy/gold/testsuite/.. -I../../../W._C._Handy/gold/testsuite/../../include -I../../../W._C._Handy/gold/testsuite/../../elfcpp -I.. -DLOCALEDIR="\"[...]/tschwinge/W._C._Handy.build.install/share/locale\""   -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9[0-9]]*//'` -c -o defsym_test.o ../../../W._C._Handy/gold/testsuite/defsym_test.c
`echo gcc-4.9 -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fmerge-constants -g -O2 -fno-use-linker-plugin   -o defsym_test | sed -e 's/-Wp,-D_FORTIFY_SOURCE=[0-9][0-9]*//'` -Bgcctestdir/ -Wl,--defsym=bar=foo defsym_test.o
../../binutils/readelf -sW defsym_test > defsym_test.syms
../../gas/as-new -o script_test_10.o ../../../W._C._Handy/gold/testsuite/script_test_10.s
gcctestdir/ld -o script_test_10 script_test_10.o -T ../../../W._C._Handy/gold/testsuite/script_test_10.t
../../binutils/readelf -SW script_test_10 > script_test_10.stdout
../../gas/as-new -o split_i386_1.o ../../../W._C._Handy/gold/testsuite/split_i386_1.s
../../gas/as-new -o split_i386_n.o ../../../W._C._Handy/gold/testsuite/split_i386_n.s
../ld-new --defsym __morestack=0x100 --defsym __morestack_non_split=0x200 -o split_i386_1 split_i386_1.o split_i386_n.o
../../binutils/objdump -d split_i386_1 > split_i386_1.stdout
../../gas/as-new -o split_i386_2.o ../../../W._C._Handy/gold/testsuite/split_i386_2.s
../ld-new --defsym __morestack=0x100 --defsym __morestack_non_split=0x200 -o split_i386_2 split_i386_2.o split_i386_n.o
../../binutils/objdump -d split_i386_2 > split_i386_2.stdout
../../gas/as-new -o split_i386_3.o ../../../W._C._Handy/gold/testsuite/split_i386_3.s
../ld-new --defsym __morestack=0x100 --defsym __morestack_non_split=0x200 -o split_i386_3 split_i386_3.o split_i386_n.o > split_i386_3.stdout 2>&1 || exit 0
../../gas/as-new -o split_i386_4.o ../../../W._C._Handy/gold/testsuite/split_i386_4.s
../ld-new --defsym __morestack=0x100 --defsym __morestack_non_split=0x200 -o split_i386_4 split_i386_4.o split_i386_n.o
../../binutils/objdump -d split_i386_4 > split_i386_4.stdout
../ld-new -r split_i386_1.o split_i386_n.o -o split_i386_r > split_i386_r.stdout 2>&1 || exit 0
make[5]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gold/testsuite'
make  check-TESTS
make[5]: Entering directory '[...]/tschwinge/W._C._Handy.build/gold/testsuite'
make[6]: Entering directory '[...]/tschwinge/W._C._Handy.build/gold/testsuite'
PASS: incremental_test.sh
PASS: gc_comdat_test.sh
PASS: gc_tls_test.sh
PASS: gc_orphan_section_test.sh
PASS: pr14265.sh
PASS: gc_dynamic_list_test.sh
PASS: icf_test.sh
PASS: icf_keep_unique_test.sh
PASS: icf_safe_test.sh
PASS: icf_safe_so_test.sh
PASS: final_layout.sh
PASS: text_section_grouping.sh
PASS: section_sorting_name.sh
PASS: icf_preemptible_functions_test.sh
PASS: icf_string_merge_test.sh
PASS: icf_sht_rel_addend_test.sh
PASS: merge_string_literals.sh
PASS: two_file_shared.sh
PASS: weak_plt.sh
PASS: tls_pie_test.sh
PASS: i386_mov_to_lea.sh
PASS: debug_msg.sh
PASS: missing_key_func.sh
PASS: undef_symbol.sh
PASS: pr18689.sh
PASS: ver_test_1.sh
PASS: ver_test_2.sh
PASS: ver_test_4.sh
PASS: ver_test_5.sh
PASS: ver_test_7.sh
PASS: ver_test_10.sh
PASS: relro_test.sh
PASS: ver_matching_test.sh
PASS: script_test_3.sh
PASS: script_test_4.sh
PASS: script_test_5.sh
PASS: script_test_6.sh
PASS: script_test_7.sh
PASS: script_test_8.sh
PASS: script_test_9.sh
PASS: dynamic_list.sh
PASS: plugin_test_1.sh
PASS: plugin_test_2.sh
PASS: plugin_test_3.sh
PASS: plugin_test_4.sh
PASS: plugin_test_6.sh
PASS: plugin_test_7.sh
PASS: plugin_test_10.sh
PASS: plugin_test_11.sh
PASS: plugin_test_tls.sh
PASS: plugin_final_layout.sh
PASS: exclude_libs_test.sh
PASS: discard_locals_test.sh
PASS: hidden_test.sh
PASS: retain_symbols_file_test.sh
PASS: no_version_test.sh
PASS: strong_ref_weak_def.sh
PASS: dyn_weak_ref.sh
PASS: memory_test.sh
PASS: gdb_index_test_1.sh
PASS: gdb_index_test_2.sh
PASS: gdb_index_test_2_gabi.sh
PASS: gdb_index_test_3.sh
PASS: gdb_index_test_4.sh
PASS: ehdr_start_test_4.sh
PASS: defsym_test.sh
PASS: script_test_10.sh
PASS: split_i386.sh
PASS: object_unittest
PASS: binary_unittest
PASS: leb128_unittest
PASS: icf_virtual_function_folding_test
PASS: large_symbol_alignment
PASS: basic_test
PASS: basic_pic_test
PASS: eh_test
PASS: basic_static_test
PASS: basic_static_pic_test
PASS: basic_pie_test
PASS: constructor_test
PASS: constructor_static_test
PASS: two_file_test
PASS: two_file_pic_test
PASS: two_file_static_test
PASS: two_file_shared_1_test
PASS: two_file_shared_2_test
PASS: two_file_shared_1_pic_2_test
PASS: two_file_shared_2_pic_1_test
PASS: two_file_same_shared_test
PASS: two_file_separate_shared_12_test
PASS: two_file_separate_shared_21_test
PASS: two_file_relocatable_test
PASS: two_file_pie_test
PASS: pie_copyrelocs_test
PASS: weak_unresolved_symbols_test
PASS: two_file_shared_1_nonpic_test
PASS: two_file_shared_2_nonpic_test
PASS: two_file_same_shared_nonpic_test
PASS: two_file_separate_shared_12_nonpic_test
PASS: two_file_separate_shared_21_nonpic_test
PASS: two_file_mixed_shared_test
PASS: two_file_mixed_2_shared_test
PASS: two_file_mixed_pie_test
PASS: two_file_strip_test
PASS: two_file_same_shared_strip_test
PASS: common_test_1
PASS: common_test_2
PASS: exception_test
PASS: exception_shared_1_test
PASS: exception_shared_2_test
PASS: exception_same_shared_test
PASS: exception_separate_shared_12_test
PASS: exception_separate_shared_21_test
PASS: exception_static_test
PASS: weak_test
PASS: weak_undef_test
PASS: weak_undef_test_2
PASS: weak_undef_nonpic_test
PASS: weak_alias_test
PASS: weak_plt
PASS: copy_test
PASS: tls_test
PASS: tls_pic_test
PASS: tls_pie_test
PASS: tls_pie_pic_test
PASS: tls_shared_test
PASS: tls_shared_ie_test
PASS: tls_shared_gd_to_ie_test
PASS: tls_shared_gnu2_gd_to_ie_test
PASS: tls_shared_gnu2_test
PASS: tls_static_test
PASS: tls_static_pic_test
PASS: tls_shared_nonpic_test
PASS: many_sections_test
PASS: many_sections_r_test
PASS: initpri1
PASS: initpri2
PASS: initpri3a
PASS: flagstest_o_specialfile
PASS: flagstest_compress_debug_sections_none
PASS: flagstest_compress_debug_sections
PASS: flagstest_compress_debug_sections_and_build_id_tree
PASS: flagstest_compress_debug_sections_gnu
PASS: flagstest_compress_debug_sections_gabi
PASS: flagstest_o_specialfile_and_compress_debug_sections
PASS: flagstest_o_ttext_1
PASS: ver_test
PASS: ver_test_2
PASS: ver_test_6
PASS: ver_test_8
PASS: ver_test_9
PASS: ver_test_11
PASS: ver_test_12
PASS: protected_1
PASS: protected_2
PASS: relro_test
PASS: relro_now_test
PASS: relro_strip_test
PASS: relro_script_test
PASS: script_test_1
PASS: script_test_2
PASS: justsyms
PASS: justsyms_exec
PASS: binary_test
FAIL: script_test_3
FAIL: tls_phdrs_script_test
PASS: tls_script_test
PASS: script_test_11
PASS: script_test_12
PASS: script_test_12i
PASS: dynamic_list_2
PASS: thin_archive_test_1
PASS: thin_archive_test_2
PASS: plugin_test_1
PASS: plugin_test_2
PASS: plugin_test_3
PASS: plugin_test_4
PASS: plugin_test_5
PASS: plugin_test_6
PASS: plugin_test_7
PASS: plugin_test_8
PASS: plugin_test_10
PASS: plugin_test_11
PASS: plugin_test_tls
PASS: exclude_libs_test
PASS: local_labels_test
PASS: discard_locals_test
PASS: permission_test
PASS: searched_file_test
PASS: ifuncmain1static
PASS: ifuncmain1picstatic
PASS: ifuncmain1
PASS: ifuncmain1pic
PASS: ifuncmain1vis
PASS: ifuncmain1vispic
PASS: ifuncmain1staticpic
PASS: ifuncmain1pie
PASS: ifuncmain1vispie
PASS: ifuncmain1staticpie
PASS: ifuncmain2static
PASS: ifuncmain2picstatic
PASS: ifuncmain2
PASS: ifuncmain2pic
PASS: ifuncmain3
PASS: ifuncmain4static
PASS: ifuncmain4picstatic
PASS: ifuncmain4
PASS: ifuncmain5static
PASS: ifuncmain5picstatic
PASS: ifuncmain5
PASS: ifuncmain5pic
PASS: ifuncmain5staticpic
PASS: ifuncmain5pie
PASS: ifuncmain6pie
PASS: ifuncmain7static
PASS: ifuncmain7picstatic
PASS: ifuncmain7
PASS: ifuncmain7pic
PASS: ifuncmain7pie
PASS: ifuncvar
PASS: start_lib_test
PASS: ehdr_start_test_1
PASS: ehdr_start_test_2
PASS: ehdr_start_test_3
PASS: ehdr_start_test_5
============================
2 of 225 tests failed
See testsuite/test-suite.log
============================
Makefile:4250: recipe for target 'test-suite.log' failed
make[6]: *** [test-suite.log] Error 1
make[6]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gold/testsuite'
Makefile:4329: recipe for target 'check-TESTS' failed
make[5]: *** [check-TESTS] Error 2
make[5]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gold/testsuite'
Makefile:4884: recipe for target 'check-am' failed
make[4]: *** [check-am] Error 2
make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gold/testsuite'
Makefile:4888: recipe for target 'check' failed
make[3]: *** [check] Error 2
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gold/testsuite'
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/gold'
make  ld1 ld2 ld1-r ld2-r ld4 
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/gold'
test -d gcctestdir1 || mkdir -p gcctestdir1
rm -f gcctestdir1/ld
(cd gcctestdir1 && ln -s ../ld-new ld)
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=ld1 -I../../W._C._Handy/gold/../zlib -g -O2 -Bgcctestdir1/ -Wl,--build-id=tree -Wl,--build-id-chunk-size-for-treehash=12345 -Wl,--build-id-min-file-size-for-treehash=0   -o ld1 main.o i386.o x86_64.o sparc.o powerpc.o arm.o arm-reloc-property.o tilegx.o mips.o aarch64.o aarch64-reloc-property.o libgold.a ../libiberty/libiberty.a    -ldl -L./../zlib -lz -ldl 
test -d gcctestdir2 || mkdir -p gcctestdir2
rm -f gcctestdir2/ld
(cd gcctestdir2 && ln -s ../ld1 ld)
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=ld2 -I../../W._C._Handy/gold/../zlib -g -O2 -Bgcctestdir2/ -Wl,--build-id=tree -Wl,--build-id-chunk-size-for-treehash=12345 -Wl,--build-id-min-file-size-for-treehash=0   -o ld2 main.o i386.o x86_64.o sparc.o powerpc.o arm.o arm-reloc-property.o tilegx.o mips.o aarch64.o aarch64-reloc-property.o libgold.a ../libiberty/libiberty.a    -ldl -L./../zlib -lz -ldl 
gcctestdir1/ld -o libgold-1-r.o -r --whole-archive libgold.a
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=ld1-r -I../../W._C._Handy/gold/../zlib -g -O2 -Bgcctestdir1/  -o ld1-r main.o libgold-1-r.o i386.o x86_64.o sparc.o powerpc.o arm.o arm-reloc-property.o tilegx.o mips.o aarch64.o aarch64-reloc-property.o libgold.a ../libiberty/libiberty.a    -ldl -L./../zlib -lz -ldl 
test -d gcctestdir2-r || mkdir -p gcctestdir2-r
rm -f gcctestdir2-r/ld
(cd gcctestdir2-r && ln -s ../ld1-r ld)
gcctestdir2-r/ld -o libgold-2-r.o -r --whole-archive libgold.a
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=ld2-r -I../../W._C._Handy/gold/../zlib -g -O2 -Bgcctestdir2-r/  -o ld2-r main.o libgold-2-r.o i386.o x86_64.o sparc.o powerpc.o arm.o arm-reloc-property.o tilegx.o mips.o aarch64.o aarch64-reloc-property.o libgold.a ../libiberty/libiberty.a    -ldl -L./../zlib -lz -ldl 
test -d gcctestdir4 || mkdir -p gcctestdir4
rm -f gcctestdir4/ld
(cd gcctestdir4 && ln -s ../ld-new ld)
g++-4.9 -W -Wall    -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -frandom-seed=ld4 -I../../W._C._Handy/gold/../zlib -g -O2 -Bgcctestdir4/ -Wl,--build-id=tree -Wl,--build-id-chunk-size-for-treehash=12346 -Wl,--build-id-min-file-size-for-treehash=0   -o ld4 main.o i386.o x86_64.o sparc.o powerpc.o arm.o arm-reloc-property.o tilegx.o mips.o aarch64.o aarch64-reloc-property.o libgold.a ../libiberty/libiberty.a    -ldl -L./../zlib -lz -ldl 
make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gold'
make  check-TESTS
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/gold'
make[5]: Entering directory '[...]/tschwinge/W._C._Handy.build/gold'
rm -f bootstrap-test
echo "#!/bin/sh" > bootstrap-test
echo "cmp ld1 ld2" >> bootstrap-test
chmod +x bootstrap-test
PASS: bootstrap-test
rm -f bootstrap-test-r
echo "#!/bin/sh" > bootstrap-test-r
echo "cmp ld1-r ld2-r" >> bootstrap-test-r
chmod +x bootstrap-test-r
PASS: bootstrap-test-r
rm -f bootstrap-test-treehash-chunksize
echo "#!/bin/sh" > bootstrap-test-treehash-chunksize
echo "cmp ld1 ld4 | grep ." >> bootstrap-test-treehash-chunksize
chmod +x bootstrap-test-treehash-chunksize
PASS: bootstrap-test-treehash-chunksize
==================
All 3 tests passed
==================
make[5]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gold'
make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gold'
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gold'
Makefile:874: recipe for target 'check-recursive' failed
make[2]: *** [check-recursive] Error 1
make[2]: Target 'check' not remade because of errors.
make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gold'
Makefile:6119: recipe for target 'check-gold' failed
make[1]: *** [check-gold] Error 2
make[2]: Entering directory '[...]/tschwinge/W._C._Handy.build/gprof'
make  check-recursive
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/gprof'
Making check in po
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/gprof/po'
make[4]: Nothing to be done for 'check'.
make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gprof/po'
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/gprof'
make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gprof'
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gprof'
make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gprof'
make[2]: Entering directory '[...]/tschwinge/W._C._Handy.build/intl'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/intl'
make[2]: Entering directory '[...]/tschwinge/W._C._Handy.build/ld'
make  check-recursive
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/ld'
Making check in po
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/ld/po'
make[4]: Nothing to be done for 'check'.
make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/ld/po'
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/ld'
make  check-DEJAGNU
make[5]: Entering directory '[...]/tschwinge/W._C._Handy.build/ld'
Making a new site.exp file...
srcroot=`cd ../../W._C._Handy/ld && pwd`; export srcroot; \
r=`pwd`; export r; \
LC_ALL=C; export LC_ALL; \
EXPECT=expect; export EXPECT; \
runtest=runtest; \
if /bin/dash -c "$runtest --version" > /dev/null 2>&1; then \
  $runtest --tool ld --srcdir ${srcroot}/testsuite \
	CC="gcc-4.9" CFLAGS="-g -O2" \
	CXX="g++-4.9" CXXFLAGS="-g -O2" \
	CC_FOR_HOST="gcc-4.9" CFLAGS_FOR_HOST="-g -O2" \
	OFILES="ldgram.o ldlex-wrapper.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o plugin.o ldwrite.o ldexp.o  ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o eelf_i386.o eelf_iamcu.o  ldbuildid.o" BFDLIB="../bfd/.libs/libbfd.a" \
	LIBIBERTY="../libiberty/libiberty.a " LIBS="-ldl -ldl " \
	DO_COMPARE="`echo 'cmp --ignore-initial=16 $f1 $f2' | sed -e 's,\\$,,g'`" \
	; \
else echo "WARNING: could not find \`runtest'" 1>&2; :;\
fi
WARNING: Couldn't find tool init file
Test Run By thomas on Thu Nov  5 14:10:20 2015
Native configuration is i686-unknown-gnu0.6

		=== ld 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 [...]/tschwinge/W._C._Handy/ld/testsuite/config/default.exp as tool-and-target-specific interface file.
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-aarch64/aarch64-elf.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-alpha/alpha.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-arm/arm-elf.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-arm/export-class.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-auto-import/auto-import.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-avr/avr.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-bootstrap/bootstrap.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-cdtest/cdtest.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-checks/checks.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-cris/cris.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-crx/crx.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-cygwin/exe-export.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-d10v/d10v.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-discard/discard.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-elf/audit.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-elf/binutils.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-elf/comm-data.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-elf/compress.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-elf/dwarf.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-elf/eh-group.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-elf/elf.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-elf/exclude.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-elf/export-class.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-elf/frame.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-elf/indirect.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-elf/provide-hidden.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-elf/sec-to-seg.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-elf/sec64k.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-elf/shared.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-elf/tls_common.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-elf/wrap.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-elfcomm/elfcomm.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-elfvers/vers.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-elfvsb/elfvsb.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-elfweak/elfweak.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-fastcall/fastcall.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-frv/fdpic.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-frv/frv-elf.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-frv/tls.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-gc/gc.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-h8300/h8300.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-i386/export-class.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-i386/i386.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-ia64/ia64.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-ia64/line.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-ifunc/binutils.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-ifunc/ifunc.exp ...
FAIL: Common symbol override ifunc test 1a
FAIL: Common symbol override ifunc test 1b
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-libs/libs.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-linkonce/linkonce.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-m68hc11/m68hc11.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-m68k/m68k-got.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-m68k/m68k.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-mep/mep.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-metag/metag.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-mips-elf/comm-data.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-mips-elf/export-class.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-mips-elf/mips-elf-flags.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-mips-elf/mips-elf.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-misc/defsym.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-mmix/mmix.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-mn10300/mn10300.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-nds32/nds32.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-nios2/nios2.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-pe/pe-compile.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-pe/pe-run.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-pe/pe-run2.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-pe/pe.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-pie/pie.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-plugin/lto.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-plugin/plugin.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-powerpc/aix52.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-powerpc/export-class.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-powerpc/powerpc.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-s390/s390.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/align.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/alignof.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/assert.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/crossref.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/data.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/default-script.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/defined.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/dynamic-sections.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/empty-address.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/empty-aligned.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/empty-orphan.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/expr.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/extern.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/include.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/log2.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/map-address.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/overlay-size.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/phdrs.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/phdrs2.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/phdrs3.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/print-memory-usage.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/provide.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/rgn-at.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/rgn-over.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/script.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/section-flags.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/section-match.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/size.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/sizeof.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/sort.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/sysroot-prefix.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-scripts/weak.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-selective/sel-dump.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-selective/selective.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-sh/arch/arch.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-sh/rd-sh.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-sh/sh-vxworks.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-sh/sh.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-sh/sh64/rd-sh64.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-sh/sh64/relax.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-sh/sh64/relfail.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-sh/sh64/sh64.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-shared/shared.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-size/size.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-sparc/sparc.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-spu/spu.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-srec/srec.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-tic6x/tic6x.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-tilegx/tilegx.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-tilepro/tilepro.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-undefined/entry.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-undefined/require-defined.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-undefined/undefined.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-undefined/weak-undef.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-unique/unique.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-v850/v850.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-vax-elf/export-class.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-vax-elf/vax-elf.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-versados/versados.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-visium/visium.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-vxworks/vxworks.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-x86-64/dwarfreloc.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-x86-64/export-class.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-x86-64/line.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-x86-64/mpx.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-x86-64/x86-64.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-xc16x/xc16x.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-xstormy16/xstormy16.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-xtensa/coalesce.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-xtensa/diff_overflow.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-xtensa/lcall.exp ...
Running [...]/tschwinge/W._C._Handy/ld/testsuite/ld-xtensa/xtensa.exp ...

		=== ld Summary ===

# of expected passes		1104
# of unexpected failures	2
# of expected failures		8
# of untested testcases		6
# of unsupported tests		8
[...]/tschwinge/W._C._Handy.build/ld/ld-new 2.25.51.20150819

Makefile:3501: recipe for target 'check-DEJAGNU' failed
make[5]: *** [check-DEJAGNU] Error 1
make[5]: Leaving directory '[...]/tschwinge/W._C._Handy.build/ld'
Makefile:1852: recipe for target 'check-am' failed
make[4]: *** [check-am] Error 2
make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/ld'
Makefile:1699: recipe for target 'check-recursive' failed
make[3]: *** [check-recursive] Error 1
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/ld'
Makefile:1854: recipe for target 'check' failed
make[2]: *** [check] Error 2
make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/ld'
Makefile:7532: recipe for target 'check-ld' failed
make[1]: *** [check-ld] Error 2
make[2]: Entering directory '[...]/tschwinge/W._C._Handy.build/libdecnumber'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/libdecnumber'
make[2]: Entering directory '[...]/tschwinge/W._C._Handy.build/libiberty'
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/libiberty/testsuite'
gcc-4.9 -DHAVE_CONFIG_H -g -O2  -I.. -I../../../W._C._Handy/libiberty/testsuite/../../include  -o test-demangle \
	../../../W._C._Handy/libiberty/testsuite/test-demangle.c ../libiberty.a
./test-demangle < ../../../W._C._Handy/libiberty/testsuite/demangle-expected
./test-demangle: 898 tests, 0 failures
./test-demangle < ../../../W._C._Handy/libiberty/testsuite/d-demangle-expected
./test-demangle: 266 tests, 0 failures
gcc-4.9 -DHAVE_CONFIG_H -g -O2  -I.. -I../../../W._C._Handy/libiberty/testsuite/../../include  -DHAVE_CONFIG_H -I.. -o test-pexecute \
	../../../W._C._Handy/libiberty/testsuite/test-pexecute.c ../libiberty.a
./test-pexecute
gcc-4.9 -DHAVE_CONFIG_H -g -O2  -I.. -I../../../W._C._Handy/libiberty/testsuite/../../include  -DHAVE_CONFIG_H -I.. -o test-expandargv \
	../../../W._C._Handy/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.
gcc-4.9 -DHAVE_CONFIG_H -g -O2  -I.. -I../../../W._C._Handy/libiberty/testsuite/../../include  -DHAVE_CONFIG_H -I.. -o test-strtol \
	../../../W._C._Handy/libiberty/testsuite/test-strtol.c ../libiberty.a
./test-strtol
PASS: test-strtol-0.
PASS: test-strtol-1.
PASS: test-strtol-2.
PASS: test-strtol-3.
PASS: test-strtol-4.
PASS: test-strtol-5.
PASS: test-strtol-6.
PASS: test-strtol-7.
PASS: test-strtol-8.
PASS: test-strtol-9.
PASS: test-strtol-10.
PASS: test-strtol-11.
PASS: test-strtol-12.
PASS: test-strtol-13.
PASS: test-strtol-14.
PASS: test-strtol-15.
PASS: test-strtol-16.
PASS: test-strtol-17.
PASS: test-strtol-18.
PASS: test-strtol-19.
PASS: test-strtol-20.
PASS: test-strtol-21.
PASS: test-strtol-22.
PASS: test-strtol-23.
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/libiberty/testsuite'
make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/libiberty'
make[2]: Entering directory '[...]/tschwinge/W._C._Handy.build/readline'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/readline'
make[2]: Entering directory '[...]/tschwinge/W._C._Handy.build/sim'
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/sim/testsuite'
Making a new site.exp file...
sed: can't read site.exp: No such file or directory
Makefile:124: recipe for target 'site.exp' failed
make[3]: [site.exp] Error 2 (ignored)
mv: cannot stat 'site.exp': No such file or directory
Makefile:124: recipe for target 'site.exp' failed
make[3]: [site.exp] Error 1 (ignored)
echo "Dejagnu-checking in `pwd` directory ..."
Dejagnu-checking in [...]/tschwinge/W._C._Handy.build/sim/testsuite directory ...
rootme=`pwd`; export rootme; echo rootme = $rootme; \
srcdir=`cd ../../../W._C._Handy/sim/testsuite; pwd`; export srcdir ; echo srcdir = $srcdir; \
EXPECT=`if [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; echo EXPECT = $EXPECT; \
if [ -f $rootme/../../expect/expect ]; then \
  TCL_LIBRARY=`cd $srcdir/../../tcl/library && pwd`; \
  export TCL_LIBRARY; \
fi; \
        echo TCL_LIBRARY = $TCL_LIBRARY; \
runtest=runtest; echo runtest = $runtest; \
if /bin/sh -c "$runtest --version" > /dev/null 2>&1; then \
  $runtest ; \
else echo "WARNING: could not find \`runtest'" 1>&2; :;\
fi
rootme = [...]/tschwinge/W._C._Handy.build/sim/testsuite
srcdir = [...]/tschwinge/W._C._Handy/sim/testsuite
EXPECT = expect
TCL_LIBRARY =
runtest = runtest
WARNING: could not find `runtest'
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/sim/testsuite'
make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/sim'
make[2]: Entering directory '[...]/tschwinge/W._C._Handy.build/gdb'
make[3]: Entering directory '[...]/tschwinge/W._C._Handy.build/gdb/testsuite'
gcc-4.9 -o read1.so ../../../W._C._Handy/gdb/testsuite/lib/read1.c -Wall -g -shared -fPIC -g -O2
Making expect-read1
Nothing to be done for all...
Making a new config file...
make check-single
make[4]: Entering directory '[...]/tschwinge/W._C._Handy.build/gdb/testsuite'
rootme=`pwd`; export rootme; srcdir=../../../W._C._Handy/gdb/testsuite ; export srcdir ; EXPECT=`if [ "${READ1}" != "" ] ; then echo ${rootme}/expect-read1; elif [ -f ${rootme}/../../expect/expect ] ; then echo ${rootme}/../../expect/expect ; else echo expect ; fi` ; export EXPECT ; EXEEXT= ; export EXEEXT ; LD_LIBRARY_PATH=$rootme/../../expect:$rootme/../../libstdc++:$rootme/../../tk/unix:$rootme/../../tcl/unix:$rootme/../../bfd:$rootme/../../opcodes:$LD_LIBRARY_PATH; export LD_LIBRARY_PATH; if [ -f ${rootme}/../../expect/expect ] ; then TCL_LIBRARY=${srcdir}/../../tcl/library ; export TCL_LIBRARY ; fi ; runtest  
Test Run By thomas on Thu Nov  5 14:13:45 2015
Native configuration is i686-unknown-gnu0.6

		=== 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 ../../../W._C._Handy/gdb/testsuite/config/unix.exp as tool-and-target-specific interface file.
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/O2_float_param.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/addr_arith.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/aliased_array.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/arr_arr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/array_bounds.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/array_char_idx.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/array_return.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/array_subscript_addr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/arraydim.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/arrayidx.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/arrayparam.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/arrayptr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/assign_1.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/atomic_enum.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/bad-task-bp-keyword.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/boolean_expr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/bp_enum_homonym.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/bp_on_var.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/bp_range_type.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/bp_reset.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/byte_packed_arr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/call_pn.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/catch_ex.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/char_enum.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/char_param.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/complete.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/cond_lang.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/disc_arr_bound.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/dot_all.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/dyn_arrayidx.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/dyn_loc.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/enum_idx_packed.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/exec_changed.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/expr_delims.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/exprs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/fixed_cmp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/fixed_points.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/float_param.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/formatted_ref.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/frame_args.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/fullname_bp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/fun_addr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/fun_in_declare.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/fun_renaming.exp ...
FAIL: gdb.ada/fun_renaming.exp: print n(1)
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/funcall_param.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/funcall_ref.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/homonym.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/info_exc.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/info_locals_renaming.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/info_types.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/int_deref.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/interface.exp ...
FAIL: gdb.ada/interface.exp: print s
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/iwide.exp ...
FAIL: gdb.ada/iwide.exp: print My_Drawable
FAIL: gdb.ada/iwide.exp: print s_access.all
FAIL: gdb.ada/iwide.exp: print sp_access.all
FAIL: gdb.ada/iwide.exp: print d_access.all
FAIL: gdb.ada/iwide.exp: print dp_access.all
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/lang_switch.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/mi_catch_ex.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/mi_dyn_arr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/mi_ex_cond.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/mi_exc_info.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/mi_interface.exp ...
FAIL: gdb.ada/mi_interface.exp: Create ggg1 varobj
FAIL: gdb.ada/mi_interface.exp: list ggg1's children
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/mi_task_arg.exp ...
FAIL: gdb.ada/mi_task_arg.exp: mi runto task_switch.break_me (unknown output after running)
FAIL: gdb.ada/mi_task_arg.exp: -stack-list-arguments 1
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/mi_task_info.exp ...
FAIL: gdb.ada/mi_task_info.exp: mi runto task_switch.break_me (unknown output after running)
FAIL: gdb.ada/mi_task_info.exp: -ada-task-info with no argument
FAIL: gdb.ada/mi_task_info.exp: -ada-task-info 3
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/mi_var_array.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/mod_from_name.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/n_arr_bound.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/nested.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/null_array.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/null_record.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/operator_bp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/optim_drec.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/out_of_line_in_inlined.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/packed_array.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/packed_tagged.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/pckd_arr_ren.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/pckd_neg.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/pkd_arr_elem.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/pp-rec-component.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/print_chars.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/print_pc.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/ptr_typedef.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/ptype_arith_binop.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/ptype_field.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/ptype_tagged_param.exp ...
FAIL: gdb.ada/ptype_tagged_param.exp: ptype s
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/py_range.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/rdv_wait.exp ...
FAIL: gdb.ada/rdv_wait.exp: task 2
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/rec_comp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/rec_return.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/ref_param.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/ref_tick_size.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/same_enum.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/set_pckd_arr_elt.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/set_wstr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/small_reg_param.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/start.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/str_ref_cmp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/str_uninit.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/sym_print_name.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/taft_type.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/tagged.exp ...
FAIL: gdb.ada/tagged.exp: ptype obj
FAIL: gdb.ada/tagged.exp: print obj
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/tagged_access.exp ...
FAIL: gdb.ada/tagged_access.exp: ptype c.all
FAIL: gdb.ada/tagged_access.exp: ptype c.menu_name
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/tagged_not_init.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/task_bp.exp ...
FAIL: gdb.ada/task_bp.exp: run to pck.dummy_task - from psymtab
FAIL: gdb.ada/task_bp.exp: run to dummy_task - from psymtab
FAIL: gdb.ada/task_bp.exp: run to pck.adb:pck.dummy_task - from psymtab
FAIL: gdb.ada/task_bp.exp: run to pck.adb:dummy_task - from psymtab
FAIL: gdb.ada/task_bp.exp: run to pck.dummy_task - from full symtab
FAIL: gdb.ada/task_bp.exp: run to dummy_task - from full symtab
FAIL: gdb.ada/task_bp.exp: run to pck.adb:pck.dummy_task - from full symtab
FAIL: gdb.ada/task_bp.exp: run to pck.adb:dummy_task - from full symtab
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/tasks.exp ...
FAIL: gdb.ada/tasks.exp: info tasks before inserting breakpoint
FAIL: gdb.ada/tasks.exp: continue to breakpoint
FAIL: gdb.ada/tasks.exp: info tasks after hitting breakpoint
FAIL: gdb.ada/tasks.exp: continue until exit
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/tick_last_segv.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/tick_length_array_enum_idx.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/type_coercion.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/unc_arr_ptr_in_var_rec.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/uninitialized_vars.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/var_arr_attrs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/var_arr_typedef.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/var_rec_arr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/variant_record_packed_array.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/watch_arg.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/whatis_array_val.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/widewide.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.ada/win_fu_syms.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/aarch64-atomic-inst.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/aarch64-fp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/alpha-step.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/altivec-abi.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/altivec-regs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/amd64-byte.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/amd64-disp-step.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/amd64-dword.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/amd64-entry-value-inline.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/amd64-entry-value-param.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/amd64-entry-value-paramref.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/amd64-entry-value.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/amd64-i386-address.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/amd64-invalid-stack-middle.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/amd64-invalid-stack-top.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/amd64-optimout-repeat.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/amd64-prologue-skip.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/amd64-prologue-xmm.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/amd64-stap-optional-prefix.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/amd64-stap-special-operands.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/amd64-stap-wrong-subexp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/amd64-tailcall-cxx.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/amd64-tailcall-noret.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/amd64-tailcall-ret.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/amd64-tailcall-self.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/amd64-word.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/arm-bl-branch-dest.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/arm-disp-step.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/avr-flash-qualifier.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/e500-abi.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/e500-prologue.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/e500-regs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/gdb1291.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/gdb1431.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/gdb1558.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-avx.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-avx512.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-biarch-core.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-bp_permanent.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-byte.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-cfi-notcurrent.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-disp-step.exp ...
FAIL: gdb.arch/i386-disp-step.exp: continue to test_syscall_end
FAIL: gdb.arch/i386-disp-step.exp: continue to test_prefixed_syscall
FAIL: gdb.arch/i386-disp-step.exp: continue to test_prefixed_syscall_end (the program is no longer running)
FAIL: gdb.arch/i386-disp-step.exp: continue to test_int3 (the program is no longer running)
FAIL: gdb.arch/i386-disp-step.exp: continue to test_int3_end (the program is no longer running)
FAIL: gdb.arch/i386-disp-step.exp: continue until exit at i386-disp-step (the program is no longer running)
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-dr3-watch.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-float.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-gnu-cfi.exp ...
FAIL: gdb.arch/i386-gnu-cfi.exp: shift up to the modified frame
FAIL: gdb.arch/i386-gnu-cfi.exp: Existence of the CFI inserted register
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-mpx-map.exp ...
gdb compile failed, gcc: error: unrecognized command line option '-fmpx'
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-mpx.exp ...
gdb compile failed, gcc: error: unrecognized command line option '-fmpx'
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-permbkpt.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-prologue.exp ...
gdb compile failed, ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-prologue.c: In function 'main':
../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-prologue.c:34:3: warning: implicit declaration of function 'standard' [-Wimplicit-function-declaration]
   standard ();
   ^
../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-prologue.c:35:3: warning: implicit declaration of function 'stack_align_ecx' [-Wimplicit-function-declaration]
   stack_align_ecx ();
   ^
../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-prologue.c:36:3: warning: implicit declaration of function 'stack_align_edx' [-Wimplicit-function-declaration]
   stack_align_edx ();
   ^
../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-prologue.c:37:3: warning: implicit declaration of function 'stack_align_eax' [-Wimplicit-function-declaration]
   stack_align_eax ();
   ^
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-signal.exp ...
FAIL: gdb.arch/i386-signal.exp: backtrace 10
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-size-overlap.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-size.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-sse-stack-align.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-sse.exp ...
FAIL: gdb.arch/i386-sse.exp: check float contents of %xmm0
FAIL: gdb.arch/i386-sse.exp: check int8 contents of %xmm0
FAIL: gdb.arch/i386-sse.exp: check float contents of %xmm1
FAIL: gdb.arch/i386-sse.exp: check int8 contents of %xmm1
FAIL: gdb.arch/i386-sse.exp: check float contents of %xmm2
FAIL: gdb.arch/i386-sse.exp: check int8 contents of %xmm2
FAIL: gdb.arch/i386-sse.exp: check float contents of %xmm3
FAIL: gdb.arch/i386-sse.exp: check int8 contents of %xmm3
FAIL: gdb.arch/i386-sse.exp: check float contents of %xmm4
FAIL: gdb.arch/i386-sse.exp: check int8 contents of %xmm4
FAIL: gdb.arch/i386-sse.exp: check float contents of %xmm5
FAIL: gdb.arch/i386-sse.exp: check int8 contents of %xmm5
FAIL: gdb.arch/i386-sse.exp: check float contents of %xmm6
FAIL: gdb.arch/i386-sse.exp: check int8 contents of %xmm6
FAIL: gdb.arch/i386-sse.exp: check float contents of %xmm7
FAIL: gdb.arch/i386-sse.exp: check int8 contents of %xmm7
FAIL: gdb.arch/i386-sse.exp: check contents of data[0]
FAIL: gdb.arch/i386-sse.exp: check contents of data[1]
FAIL: gdb.arch/i386-sse.exp: check contents of data[2]
FAIL: gdb.arch/i386-sse.exp: check contents of data[3]
FAIL: gdb.arch/i386-sse.exp: check contents of data[4]
FAIL: gdb.arch/i386-sse.exp: check contents of data[5]
FAIL: gdb.arch/i386-sse.exp: check contents of data[6]
FAIL: gdb.arch/i386-sse.exp: check contents of data[7]
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-stap-eval-lang-ada.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-unwind.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/i386-word.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/ia64-breakpoint-shadow.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/iwmmxt-regs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/mips-octeon-bbit.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/mips16-thunks.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/pa-nullify.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/powerpc-aix-prologue.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/powerpc-d128-regs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/powerpc-power.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/powerpc-prologue.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/powerpc-stackless.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/ppc-dfp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/ppc-fp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/ppc64-atomic-inst.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/ppc64-symtab-cordic.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/s390-multiarch.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/s390-tdbregs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/s390-vregs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/sparc-sysstep.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/spu-info.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/spu-ls.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/thumb-bx-pc.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/thumb-prologue.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/thumb-singlestep.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/thumb2-it.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.arch/vsx-regs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.asm/asm-source.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/a2-run.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/advance.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/alias.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/all-bin.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/annota-input-while-running.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/annota1.exp ...
FAIL: gdb.base/annota1.exp: run until main breakpoint (timeout)
FAIL: gdb.base/annota1.exp: backtrace @ signal handler (timeout)
FAIL: gdb.base/annota1.exp: get inferior pid (timeout)
FAIL: gdb.base/annota1.exp: thread switch (timeout)
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/annota3.exp ...
FAIL: gdb.base/annota3.exp: backtrace @ signal handler (pattern 2)
FAIL: gdb.base/annota3.exp: get inferior pid (timeout)
FAIL: gdb.base/annota3.exp: signal sent (pattern 2)
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/anon.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/args.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/argv0-symlink.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/arithmet.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/arrayidx.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/assign.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/async-shell.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/async.exp ...
FAIL: gdb.base/async.exp: next& (timeout)
FAIL: gdb.base/async.exp: step& #1 (timeout)
FAIL: gdb.base/async.exp: step& #2 (timeout)
FAIL: gdb.base/async.exp: stepi& (timeout)
FAIL: gdb.base/async.exp: get next insn
FAIL: gdb.base/async.exp: nexti& (timeout)
FAIL: gdb.base/async.exp: finish& (timeout)
FAIL: gdb.base/async.exp: jump& (timeout)
FAIL: gdb.base/async.exp: until& (timeout)
FAIL: gdb.base/async.exp: set exec-done-display off
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/attach-pie-misread.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/attach-pie-noexec.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/attach-twice.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/attach-wait-input.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/attach.exp ...
FAIL: gdb.base/attach.exp: attach to nonexistent process is prohibited
FAIL: gdb.base/attach.exp: attach1, after setting file
FAIL: gdb.base/attach.exp: attach1 detach
FAIL: gdb.base/attach.exp: attach2, with no file
FAIL: gdb.base/attach.exp: continue until exit at after attach2, exit
FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
FAIL: gdb.base/attach.exp: attach call
FAIL: gdb.base/attach.exp: continue until exit
FAIL: gdb.base/attach.exp: starting with --pid
FAIL: gdb.base/attach.exp: cmdline attach run: run to prompt
ERROR: Undefined command "".
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/auto-connect-native-target.exp ...
FAIL: gdb.base/auto-connect-native-target.exp: kill: native target remains pushed
FAIL: gdb.base/auto-connect-native-target.exp: detach: start
FAIL: gdb.base/auto-connect-native-target.exp: detach: native target remains pushed
FAIL: gdb.base/auto-connect-native-target.exp: run to exit: start
FAIL: gdb.base/auto-connect-native-target.exp: run to exit: c (the program is no longer running)
FAIL: gdb.base/auto-connect-native-target.exp: run to exit: native target remains pushed
FAIL: gdb.base/auto-connect-native-target.exp: disconnect: start
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/auto-load.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/auxv.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/bang.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/batch-preserve-term-settings.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/bfp-test.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/bg-execution-repeat.exp ...
FAIL: gdb.base/bg-execution-repeat.exp: c&: c&
FAIL: gdb.base/bg-execution-repeat.exp: c&: breakpoint hit 1 (timeout)
FAIL: gdb.base/bg-execution-repeat.exp: c&: repeat bg command
FAIL: gdb.base/bg-execution-repeat.exp: c&: breakpoint hit 2 (timeout)
FAIL: gdb.base/bg-execution-repeat.exp: c 1&: c 1&
FAIL: gdb.base/bg-execution-repeat.exp: c 1&: breakpoint hit 1 (timeout)
FAIL: gdb.base/bg-execution-repeat.exp: c 1&: repeat bg command
FAIL: gdb.base/bg-execution-repeat.exp: c 1&: breakpoint hit 2 (timeout)
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/bigcore.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/bitfields.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/bitfields2.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/bitops.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/bp-cmds-execution-x-script.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/bp-permanent.exp ...
FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: continue trips on nested permanent bp: p counter
FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: continue to breakpoint: test_signal_no_handler
FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: stop at permanent breakpoint
FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: single-step past permanent breakpoint
FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: continue trips on nested permanent bp: p counter
FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: continue to breakpoint: test_signal_no_handler
FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: stop at permanent breakpoint
FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: single-step past permanent breakpoint
FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: continue trips on nested permanent bp: p counter
FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: continue to breakpoint: test_signal_no_handler
FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: stop at permanent breakpoint
FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: single-step past permanent breakpoint
FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: continue trips on nested permanent bp: p counter
FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: continue to breakpoint: test_signal_no_handler
FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: stop at permanent breakpoint
FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: single-step past permanent breakpoint
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/break-always.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/break-caller-line.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/break-entry.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/break-idempotent.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/break-inline.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/break-interp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/break-main-file-remove-fail.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/break-on-linker-gcd-function.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/break-probes.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/break-unload-file.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/break.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/breakpoint-in-ro-region.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/breakpoint-shadow.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/call-ar-st.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/call-rt-st.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/call-sc.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/call-signal-resume.exp ...
FAIL: gdb.base/call-signal-resume.exp: continue to program exit
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/call-strs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/callexit.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/callfuncs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/catch-gdb-caused-signals.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/catch-load.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/catch-signal-fork.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/catch-signal.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/catch-syscall.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/charset.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/checkpoint-ns.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/checkpoint.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/chng-syms.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/code-expr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/code_elim.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/commands.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/compare-sections.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/completion.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/complex.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/comprdebug.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/cond-eval-mode.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/cond-expr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/condbreak-call-false.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/condbreak.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/consecutive-step-over.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/consecutive.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/constvars.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/continue-all-already-running.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/coredump-filter.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/corefile.exp ...
WARNING: can't generate a core file - core tests suppressed - check ulimit -c
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/ctxobj.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/cursal.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/cvexpr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dbx.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dcache-line-read-error.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/debug-expr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/default.exp ...
FAIL: gdb.base/default.exp: info set
FAIL: gdb.base/default.exp: show
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/define.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/del.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/detach.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dfp-exprs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dfp-test.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/disabled-location.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/disasm-end-cu.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/disasm-optim.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/disp-step-syscall.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/display.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dmsym.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/double-prompt-target-event-error.exp ...
FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: continue: no double prompt (timeout)
FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: continue: set height unlimited
FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: wrapcont: no double prompt (timeout)
FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: wrapcont: set height unlimited
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dprintf-bp-same-addr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dprintf-detach.exp ...
FAIL: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=on: detach program
FAIL: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=on: re-attach to inferior
FAIL: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=off: detach program
FAIL: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=off: re-attach to inferior
FAIL: gdb.base/dprintf-detach.exp: bai=on ds=call dd=on: detach program
FAIL: gdb.base/dprintf-detach.exp: bai=on ds=call dd=on: re-attach to inferior
FAIL: gdb.base/dprintf-detach.exp: bai=on ds=call dd=off: detach program
FAIL: gdb.base/dprintf-detach.exp: bai=on ds=call dd=off: re-attach to inferior
FAIL: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=on: detach program
FAIL: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=on: re-attach to inferior
FAIL: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=off: detach program
FAIL: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=off: re-attach to inferior
FAIL: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=on: detach program
FAIL: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=on: re-attach to inferior
FAIL: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=off: detach program
FAIL: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=off: re-attach to inferior
FAIL: gdb.base/dprintf-detach.exp: bai=off ds=call dd=on: detach program
FAIL: gdb.base/dprintf-detach.exp: bai=off ds=call dd=on: re-attach to inferior
FAIL: gdb.base/dprintf-detach.exp: bai=off ds=call dd=off: detach program
FAIL: gdb.base/dprintf-detach.exp: bai=off ds=call dd=off: re-attach to inferior
FAIL: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=on: detach program
FAIL: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=on: re-attach to inferior
FAIL: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=off: detach program
FAIL: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=off: re-attach to inferior
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dprintf-next.exp ...
WARNING: program timed out.
gdb compile failed, exit status is 1
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dprintf-non-stop.exp ...
FAIL: gdb.base/dprintf-non-stop.exp: Can't run to main
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dprintf-pending.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dprintf.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dso2dso.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dtrace-probe.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dump.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/dup-sect.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/duplicate-bp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/echo.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/empty_exe.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/ena-dis-br.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/ending-run.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/enum_cond.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/enumval.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/environ.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/eu-strip-infcall.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/eval-avoid-side-effects.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/eval-skip.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/eval.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/exe-lock.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/execl-update-breakpoints.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/execution-termios.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/exitsignal.exp ...
FAIL: gdb.base/exitsignal.exp: $_exitsignal is 11 (SIGSEGV) after SIGSEGV.
FAIL: gdb.base/exitsignal.exp: $_exitsignal is 11 (SIGSEGV) after restarting the inferior
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/expand-psymtabs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/exprs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/fileio.exp ...
FAIL: gdb.base/fileio.exp: Stat a NULL pathname returns ENOENT or EFAULT
FAIL: gdb.base/fileio.exp: Stat an empty pathname returns ENOENT
FAIL: gdb.base/fileio.exp: Stat a nonexistant file returns ENOENT (the program is no longer running)
FAIL: gdb.base/fileio.exp: Fstat an open file (the program is no longer running)
FAIL: gdb.base/fileio.exp: Fstat an invalid file descriptor returns EBADF (the program is no longer running)
FAIL: gdb.base/fileio.exp: Isatty (stdin) (the program is no longer running)
FAIL: gdb.base/fileio.exp: Isatty (stdout) (the program is no longer running)
FAIL: gdb.base/fileio.exp: Isatty (stderr) (the program is no longer running)
FAIL: gdb.base/fileio.exp: Isatty (invalid fd) (the program is no longer running)
FAIL: gdb.base/fileio.exp: Isatty (open file) (the program is no longer running)
FAIL: gdb.base/fileio.exp: System says shell is available (the program is no longer running)
FAIL: gdb.base/fileio.exp: System(3) call (the program is no longer running)
FAIL: gdb.base/fileio.exp: System with invalid command returns 127 (the program is no longer running)
FAIL: gdb.base/fileio.exp: Rename a file (the program is no longer running)
FAIL: gdb.base/fileio.exp: Renaming a file to existing directory returns EISDIR (the program is no longer running)
FAIL: gdb.base/fileio.exp: Renaming a directory to a non-empty directory returns ENOTEMPTY or EEXIST (the program is no longer running)
FAIL: gdb.base/fileio.exp: Renaming a directory to a subdir of itself returns EINVAL (the program is no longer running)
FAIL: gdb.base/fileio.exp: Renaming a nonexistant file returns ENOENT (the program is no longer running)
FAIL: gdb.base/fileio.exp: Unlink a file (the program is no longer running)
FAIL: gdb.base/fileio.exp: Unlinking a file in a directory w/o write access returns EACCES (the program is no longer running)
FAIL: gdb.base/fileio.exp: Unlinking a nonexistant file returns ENOENT (the program is no longer running)
FAIL: gdb.base/fileio.exp: Time(2) call returns the same value as in parameter (the program is no longer running)
FAIL: gdb.base/fileio.exp: Time(2) returns feasible values (the program is no longer running)
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/filesym.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/find-unmapped.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/find.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/finish.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/fixsection.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/float.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/foll-exec.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/foll-fork.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/foll-vfork.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/fortran-sym-case.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/frame-args.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/freebpcmd.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/fullname.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/fullpath-expand.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/func-ptr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/func-ptrs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/funcargs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/gcore-buffer-overflow.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/gcore-relro-pie.exp ...
FAIL: gdb.base/gcore-relro-pie.exp: Can't run to break_here
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/gcore-relro.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/gcore.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/gdb-sigterm-2.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/gdb-sigterm.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/gdb1056.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/gdb1090.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/gdb11530.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/gdb11531.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/gdb1250.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/gdb1555.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/gdb1821.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/gdbhistsize-history.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/gdbindex-stabs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/gdbinit-history.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/gdbvars.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/global-var-nested-by-dso.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/gnu-debugdata.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/gnu-ifunc.exp ...
FAIL: gdb.base/gnu-ifunc.exp: step
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/gnu_vector.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/hashline1.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/hashline2.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/hashline3.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/hbreak-in-shr-unsupported.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/hbreak-unmapped.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/hbreak.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/hbreak2.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/help.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/history-duplicates.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/hook-stop-continue.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/hook-stop-frame.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/huge.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/ifelse.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/included.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/inferior-died.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/infnan.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/info-fun.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/info-macros.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/info-os.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/info-proc.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/info-shared.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/info-target.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/infoline.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/interact.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/interp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/interrupt-noterm.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/interrupt.exp ...
FAIL: gdb.base/interrupt.exp: call function when asleep (wrong output)
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/jit-simple.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/jit-so.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/jit.exp ...
FAIL: gdb.base/jit.exp: PIE: one_jit_test-1: Can't run to main
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/jump.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/kill-after-signal.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/kill-detach-inferiors-cmd.exp ...
FAIL: gdb.base/kill-detach-inferiors-cmd.exp: attach to pid
FAIL: gdb.base/kill-detach-inferiors-cmd.exp: kill inferiors 1 2
FAIL: gdb.base/kill-detach-inferiors-cmd.exp: inferior 1
FAIL: gdb.base/kill-detach-inferiors-cmd.exp: kill (got interactive prompt)
FAIL: gdb.base/kill-detach-inferiors-cmd.exp: detach inferiors 3
FAIL: gdb.base/kill-detach-inferiors-cmd.exp: kill inferiors 1 2 3
FAIL: gdb.base/kill-detach-inferiors-cmd.exp: detach inferiors 1 2 3 (GDB internal error)
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/killed-outside.exp ...
WARNING: program timed out.
gdb compile failed, exit status is 1
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/label.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/langs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/ldbl_e308.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/line-symtabs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/lineinc.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/linespecs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/list.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/logical.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/long_long.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/longest-types.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/longjmp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/macscp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/maint.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/memattr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/mips_pro.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/miscexprs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/morestack.exp ...
gdb compile failed, cc1: error: '-fsplit-stack' currently only supported on GNU/Linux
cc1: error: '-fsplit-stack' is not supported by this compiler configuration
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/moribund-step.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/multi-forks.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/multi-line-starts-subshell.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/nextoverexit.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/nodebug.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/nofield.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/noreturn-finish.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/noreturn-return.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/nostdlib.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/opaque.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/overlays.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/page.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/paginate-after-ctrl-c-running.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/paginate-bg-execution.exp ...
FAIL: gdb.base/paginate-bg-execution.exp: paginate: continue&
FAIL: gdb.base/paginate-bg-execution.exp: paginate: pagination handled, breakpoint hit (timeout)
FAIL: gdb.base/paginate-bg-execution.exp: cancel with ctrl-c: continue&
FAIL: gdb.base/paginate-bg-execution.exp: cancel with ctrl-c: continue& paginates (timeout)
FAIL: gdb.base/paginate-bg-execution.exp: cancel with quit: continue&
FAIL: gdb.base/paginate-bg-execution.exp: cancel with quit: continue& paginates (timeout)
FAIL: gdb.base/paginate-bg-execution.exp: cancel with quit: cancel pagination (got interactive prompt)
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/paginate-execution-startup.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/paginate-inferior-exit.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/pc-fp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/pending.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/permissions.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/pie-execl.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/pointers.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/pr10179.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/pr11022.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/prelink.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/print-file-var.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/print-symbol-loading.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/printcmds.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/prologue-include.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/prologue.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/psymtab.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/ptr-typedef.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/ptype.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/radix.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/random-signal.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/randomize.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/range-stepping.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/readline-ask.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/readline.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/realname-expand.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/recpar.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/recurse.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/relational.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/relativedebug.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/relocate.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/remote.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/remotetimeout.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/reread.exp ...
Running ../../../W._C._Handy/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 ../../../W._C._Handy/gdb/testsuite/gdb.base/return-nodebug.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/return.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/return2.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/save-bp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/savedregs.exp ...
FAIL: gdb.base/savedregs.exp: Get thrower info frame
FAIL: gdb.base/savedregs.exp: Check main info frame; stack contains catcher sigtramp thrower main (GDB internal error)
FAIL: gdb.base/savedregs.exp: Check main info frame; stack contains caller dummy catcher sigtramp thrower main (GDB internal error)
FAIL: gdb.base/savedregs.exp: Check main info frame; stack contains callee caller dummy catcher sigtramp thrower main (GDB internal error)
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/scope.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sect-cmd.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sep.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sepdebug.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sepsymtab.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/set-lang-auto.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/set-noassign.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/setshow.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/setvar.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/shell.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/shlib-call.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/shreloc.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sigall.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sigaltstack.exp ...
FAIL: gdb.base/sigaltstack.exp: continue to catch (timeout)
FAIL: gdb.base/sigaltstack.exp: next (timeout)
FAIL: gdb.base/sigaltstack.exp: backtrace (pattern 1) (timeout)
FAIL: gdb.base/sigaltstack.exp: finish from catch LEAF (timeout)
FAIL: gdb.base/sigaltstack.exp: finish to throw INNER (timeout)
FAIL: gdb.base/sigaltstack.exp: finish to catch INNER (timeout)
FAIL: gdb.base/sigaltstack.exp: finish from catch INNER (timeout)
FAIL: gdb.base/sigaltstack.exp: finish to OUTER (timeout)
FAIL: gdb.base/sigaltstack.exp: finish to catch MAIN (timeout)
FAIL: gdb.base/sigaltstack.exp: finish to MAIN (timeout)
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sigbpt.exp ...
FAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
FAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
FAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
FAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sigchld.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/siginfo-addr.exp ...
FAIL: gdb.base/siginfo-addr.exp: correct si_addr (the program exited)
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/siginfo-infcall.exp ...
FAIL: gdb.base/siginfo-infcall.exp: continue to the handler
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/siginfo-obj.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/siginfo-thread.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/siginfo.exp ...
FAIL: gdb.base/siginfo.exp: continue to stepi handler (timeout)
FAIL: gdb.base/siginfo.exp: backtrace for nexti (pattern 1) (timeout)
FAIL: gdb.base/siginfo.exp: step out of handler (timeout)
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/signals.exp ...
FAIL: gdb.base/signals.exp: p count #1
FAIL: gdb.base/signals.exp: p func1 () #2
FAIL: gdb.base/signals.exp: backtrace from handler when calling func1
FAIL: gdb.base/signals.exp: continue (the program exited)
FAIL: gdb.base/signals.exp: p count #2
FAIL: gdb.base/signals.exp: signal without arguments disallowed (the program is no longer running)
FAIL: gdb.base/signals.exp: signal SIGUSR1 (the program is no longer running)
FAIL: gdb.base/signals.exp: backtrace for SIGUSR1
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/signest.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/signull.exp ...
FAIL: gdb.base/signull.exp: data read; backtrace from keeper through SIGSEGV
FAIL: gdb.base/signull.exp: data write; backtrace from keeper through SIGSEGV
FAIL: gdb.base/signull.exp: code; backtrace from keeper through SIGSEGV
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sigrepeat.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sigstep.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sizeof.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/skip-solib.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/skip.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/so-impl-ld.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/so-indr-cl.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/solib-corrupted.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/solib-disc.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/solib-display.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/solib-nodir.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/solib-overlap.exp ...
sh: prelink: command not found
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/solib-search.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/solib-symbol.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/solib-weak.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/solib.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/source-dir.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/source-execution.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/source.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sss-bp-on-user-bp-2.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sss-bp-on-user-bp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/stack-checking.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/stale-infcall.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/stap-probe.exp ...
FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/start.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/statistics.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/step-break.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/step-bt.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/step-line.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/step-over-no-symbols.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/step-resume-infcall.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/step-sw-breakpoint-adjust-pc.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/step-symless.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/step-test.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/store.exp ...
FAIL: gdb.base/store.exp: var charest l; print old r, expecting -2 .*
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; print old r, expecting -2
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 charest l; print old r, 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; print old r, expecting -2
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 ../../../W._C._Handy/gdb/testsuite/gdb.base/structs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/structs2.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/structs3.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/subst.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/sym-file.exp ...
gdb compile failed, ../../../W._C._Handy/gdb/testsuite/gdb.base/sym-file-loader.c: In function 'get_origin':
../../../W._C._Handy/gdb/testsuite/gdb.base/sym-file-loader.c:154:25: error: 'PATH_MAX' undeclared (first use in this function)
   static char self_path[PATH_MAX];
                         ^
../../../W._C._Handy/gdb/testsuite/gdb.base/sym-file-loader.c:154:25: note: each undeclared identifier is reported only once for each function it appears in
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/symbol-without-target_section.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/symtab-search-order.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/term.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/testenv.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/trace-commands.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/tui-layout.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/twice.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/type-opaque.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/ui-redirect.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/unload.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/until-nodebug.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/until.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/unwindonsignal.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/valgrind-db-attach.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/valgrind-disp-step.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/valgrind-infcall.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/value-double-free.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/varargs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/vdso-warning.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/vla-datatypes.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/vla-ptr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/vla-sideeffect.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/vla-stub.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/volatile.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watch-bitfields.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watch-cond-infcall.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watch-cond.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watch-non-mem.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watch-read.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watch-vfork.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watch_thread_num.exp ...
FAIL: gdb.base/watch_thread_num.exp: Stopped in loop
FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watchpoint-cond-gone.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watchpoint-delete.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watchpoint-hw-hit-once.exp ...
FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watchpoint-hw.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watchpoint-reuse-slot.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watchpoint-solib.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watchpoint-stops-at-right-insn.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watchpoint.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/watchpoints.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/wchar.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/whatis-exp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.base/whatis.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.btrace/buffer-size.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.btrace/data.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.btrace/delta.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.btrace/enable.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.btrace/exception.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.btrace/function_call_history.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.btrace/gcore.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.btrace/instruction_history.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.btrace/multi-thread-step.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.btrace/nohist.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.btrace/record_goto-step.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.btrace/record_goto.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.btrace/rn-dl-bind.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.btrace/segv.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.btrace/step.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.btrace/stepi.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.btrace/tailcall.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.btrace/tsx.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.btrace/unknown_functions.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.btrace/vdso.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cell/arch.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cell/break.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cell/bt.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cell/core.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cell/data.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cell/dwarfaddr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cell/ea-cache.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cell/ea-standalone.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cell/ea-test.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cell/f-regs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cell/fork.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cell/gcore.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cell/mem-access.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cell/ptype.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cell/registers.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cell/sizeof.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cell/solib-symbol.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cell/solib.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.compile/compile-ifunc.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.compile/compile-ops.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.compile/compile-print.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.compile/compile-setjmp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.compile/compile-tls.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.compile/compile.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/abstract-origin.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/ambiguous.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/annota2.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/annota3.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/anon-ns.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/anon-struct.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/anon-union.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/arg-reference.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/baseenum.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/bool.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/breakpoint.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/bs15503.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/call-c.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/casts.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/chained-calls.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/class2.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/classes.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/cmpd-minsyms.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/converts.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/cp-relocate.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/cpcompletion.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/cpexprs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/cplabel.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/cplusfuncs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/cpsizeof.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/ctti.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/debug-expr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/demangle.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/derivation.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/destrprint.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/dispcxx.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/enum-class.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/exception.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/exceptprint.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/expand-psymtabs-cxx.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/expand-sals.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/extern-c.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/filename.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/formatted-ref.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/fpointer.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/gdb1355.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/gdb2384.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/gdb2495.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/hang.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/impl-this.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/infcall-dlopen.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/inherit.exp ...
FAIL: gdb.cp/inherit.exp: print g_vD
FAIL: gdb.cp/inherit.exp: print g_vE
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/iostream.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/koenig.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/local.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/m-data.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/m-static.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/maint.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/mb-ctor.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/mb-inline.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/mb-templates.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/member-name.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/member-ptr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/meth-typedefs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/method.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/method2.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/minsym-fallback.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/misc.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/namelessclass.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/namespace-enum.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/namespace-nested-import.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/namespace.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/nextoverthrow.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/no-dmgl-verbose.exp ...
FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f(std::string)'
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/non-trivial-retval.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/noparam.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/nsalias.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/nsdecl.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/nsimport.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/nsnested.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/nsnoimports.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/nsrecurs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/nsstress.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/nsusing.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/operator.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/oranking.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/overload-const.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/overload.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/ovldbreak.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/ovsrch.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/paren-type.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/parse-lang.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/pass-by-ref.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/pr-1023.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/pr-1210.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/pr-574.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/pr10687.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/pr10728.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/pr12028.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/pr17132.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/pr17494.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/pr9067.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/pr9167.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/pr9631.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/printmethod.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/psmang.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/psymtab-parameter.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/ptype-cv-cp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/ptype-flags.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/punctuator.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/re-set-overloaded.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/readnow-language.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/ref-params.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/ref-types.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/rtti.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/shadow.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/smartp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/static-method.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/static-print-quit.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/temargs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/templates.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/try_catch.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/typedef-operator.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/typeid.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/userdef.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/using-crash.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/var-tag.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/virtbase.exp ...
FAIL: gdb.cp/virtbase.exp: print *this
FAIL: gdb.cp/virtbase.exp: print *(D *) e
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/virtfunc.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/virtfunc2.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.cp/vla-cxx.exp ...
FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
FAIL: gdb.cp/vla-cxx.exp: print vla
FAIL: gdb.cp/vla-cxx.exp: print vlaref
FAIL: gdb.cp/vla-cxx.exp: print vlaref2
FAIL: gdb.cp/vla-cxx.exp: print c
Running ../../../W._C._Handy/gdb/testsuite/gdb.disasm/am33.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.disasm/h8300s.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.disasm/hppa.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.disasm/mn10300.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.disasm/sh3.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.disasm/t01_mov.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.disasm/t02_mova.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.disasm/t03_add.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.disasm/t04_sub.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.disasm/t05_cmp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.disasm/t06_ari2.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.disasm/t07_ari3.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.disasm/t08_or.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.disasm/t09_xor.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.disasm/t10_and.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.disasm/t11_logs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.disasm/t12_bit.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.disasm/t13_otr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dlang/demangle.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dlang/expression.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dlang/primitive-types.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/arr-stride.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/arr-subrange.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/atomic-type.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/callframecfa.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/clztest.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/corrupt.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/count.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/data-loc.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dup-psym.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-abs-hi-pc.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-ada-ffffffff.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-anon-mptr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-anonymous-func.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-bad-parameter-type.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-basic.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-canonicalize-type.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-case-insensitive.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-common-block.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-compdir-oldgcc.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-compressed.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-const.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-cp-infcall-ref-static.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-cu-size.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-dir-file-name.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-dos-drive.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-double-set-die-type.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-dummy-cu.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-dup-frame.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-empty-namespace.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-empty-pc-range.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-entry-value.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-error.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-filename.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-icc-opaque.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-icycle.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-ifort-parameter.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-inheritance.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-inline-break.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-inline-param.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-intercu.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-intermix.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-linkage-name-trust.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-minsym-in-cu.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-modula2-self-type.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-namespaceless-anonymous.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-noloc.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-objfile-overlap.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-op-call.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-op-out-param.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-op-stack-value.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-param-error.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-producer.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-ranges.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-ref-missing-frame.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-reg-undefined.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-restore.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-restrict.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-simple-locdesc.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-single-line-discriminators.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-skip-prologue.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-stack-boundary.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-strp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-undefined-ret-addr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-unresolved.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw2-var-zero-addr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw4-sig-type-unused.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dw4-sig-types.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dwp-symlink.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dwz.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dwzbuildid.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/dynarr-ptr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/enum-type.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/fission-base.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/fission-loclists.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/fission-mix.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/fission-reread.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/gdb-index.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/implptr-64bit.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/implptr-optimized-out.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/implptr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/implptrconst.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/implptrpiece.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/mac-fileno.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/member-ptr-forwardref.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/method-ptr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/missing-sig-type.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/nostaticblock.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/opaque-type-lookup.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/pieces-optimized-out.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/pieces.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/pr10770.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/pr11465.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/pr13961.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/staticvirtual.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/subrange.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/symtab-producer.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/trace-crash.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/typeddwarf.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/valop.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.dwarf2/watch-notconst.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.fortran/array-element.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.fortran/charset.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.fortran/common-block.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.fortran/complex.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.fortran/derived-type.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.fortran/exprs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.fortran/library-module.exp ...
FAIL: gdb.fortran/library-module.exp: print var_i in lib
FAIL: gdb.fortran/library-module.exp: print var_i in main
Running ../../../W._C._Handy/gdb/testsuite/gdb.fortran/logical.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.fortran/module.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.fortran/multi-dim.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.fortran/print-formatted.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.fortran/subarray.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.fortran/types.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.fortran/whatis_type.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.gdb/complaints.exp ...
FAIL: gdb.gdb/complaints.exp: run until breakpoint at captured_command_loop
WARNING: Couldn't test self
Running ../../../W._C._Handy/gdb/testsuite/gdb.gdb/observer.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.gdb/python-interrupts.exp ...
FAIL: gdb.gdb/python-interrupts.exp: run until breakpoint at captured_command_loop
WARNING: Couldn't test self
Running ../../../W._C._Handy/gdb/testsuite/gdb.gdb/python-selftest.exp ...
FAIL: gdb.gdb/python-selftest.exp: run until breakpoint at captured_command_loop
WARNING: Couldn't test self
Running ../../../W._C._Handy/gdb/testsuite/gdb.gdb/selftest.exp ...
FAIL: gdb.gdb/selftest.exp: xgdb is at prompt
FAIL: gdb.gdb/selftest.exp: send ^C to child process (timeout)
FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process (timeout)
FAIL: gdb.gdb/selftest.exp: backtrace through signal handler (timeout)
Running ../../../W._C._Handy/gdb/testsuite/gdb.gdb/xfullpath.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.go/basic-types.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.go/chan.exp ...
gdb compile failed, default_target_compile: Can't find gccgo.
Running ../../../W._C._Handy/gdb/testsuite/gdb.go/handcall.exp ...
gdb compile failed, default_target_compile: Can't find gccgo.
Running ../../../W._C._Handy/gdb/testsuite/gdb.go/hello.exp ...
gdb compile failed, default_target_compile: Can't find gccgo.
Running ../../../W._C._Handy/gdb/testsuite/gdb.go/integers.exp ...
gdb compile failed, default_target_compile: Can't find gccgo.
Running ../../../W._C._Handy/gdb/testsuite/gdb.go/methods.exp ...
gdb compile failed, default_target_compile: Can't find gccgo.
Running ../../../W._C._Handy/gdb/testsuite/gdb.go/package.exp ...
gdb compile failed, default_target_compile: Can't find gccgo.
Running ../../../W._C._Handy/gdb/testsuite/gdb.go/print.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.go/strings.exp ...
gdb compile failed, default_target_compile: Can't find gccgo.
Running ../../../W._C._Handy/gdb/testsuite/gdb.go/types.exp ...
gdb compile failed, default_target_compile: Can't find gccgo.
Running ../../../W._C._Handy/gdb/testsuite/gdb.go/unsafe.exp ...
gdb compile failed, default_target_compile: Can't find gccgo.
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/guile.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-arch.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-block.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-breakpoint.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-cmd.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-disasm.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-equal.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-error.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-frame-args.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-frame-inline.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-frame.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-gsmob.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-iterator.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-math.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-objfile-script.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-objfile.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-parameter.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-ports.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-pretty-print.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-progspace.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-section-script.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-symbol.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-symtab.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-type.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-value-cc.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/scm-value.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.guile/types-module.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.java/jmain.exp ...
KPASS: gdb.java/jmain.exp: break jmain.main (PRMS java/1565)
Running ../../../W._C._Handy/gdb/testsuite/gdb.java/jmisc.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.java/jnpe.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.java/jprint.exp ...
FAIL: gdb.java/jprint.exp: single argument call
FAIL: gdb.java/jprint.exp: double argument call
FAIL: gdb.java/jprint.exp: virtual fn call
FAIL: gdb.java/jprint.exp: inherited static call
FAIL: gdb.java/jprint.exp: inherited virtual fn call
XPASS: gdb.java/jprint.exp: print a java.util.Properties (PRMS gcc/43260)
Running ../../../W._C._Handy/gdb/testsuite/gdb.java/jv-exp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.java/jv-print.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.linespec/break-ask.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.linespec/break-asm-file.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.linespec/cpexplicit.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.linespec/explicit.exp ...
FAIL: gdb.linespec/explicit.exp: complete unique function name (timeout)
FAIL: gdb.linespec/explicit.exp: complete non-unique function name (timeout)
FAIL: gdb.linespec/explicit.exp: complete non-existant function name (timeout)
FAIL: gdb.linespec/explicit.exp: complete unique file name (timeout)
FAIL: gdb.linespec/explicit.exp: complete non-unique file name (timeout)
FAIL: gdb.linespec/explicit.exp: complete non-existant file name (timeout)
FAIL: gdb.linespec/explicit.exp: complete filename and unique function name (timeout)
FAIL: gdb.linespec/explicit.exp: complete filename and non-unique function name (timeout)
FAIL: gdb.linespec/explicit.exp: complete filename and non-existant function name (timeout)
FAIL: gdb.linespec/explicit.exp: complete filename and function reversed (timeout)
Running ../../../W._C._Handy/gdb/testsuite/gdb.linespec/keywords.exp ...
WARNING: program timed out.
gdb compile failed, exit status is 1
Running ../../../W._C._Handy/gdb/testsuite/gdb.linespec/linespec.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.linespec/ls-dollar.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.linespec/ls-errs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.linespec/macro-relative.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.linespec/skip-two.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.linespec/thread.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/dw2-ref-missing-frame.exp ...
FAIL: gdb.mi/dw2-ref-missing-frame.exp: test func_nofb_marker
FAIL: gdb.mi/dw2-ref-missing-frame.exp: test func_loopfb_var
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/gdb2549.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/gdb669.exp ...
FAIL: gdb.mi/gdb669.exp: console and MI have same number of threads (at main)
FAIL: gdb.mi/gdb669.exp: console and MI have same number of threads (try 0)
FAIL: gdb.mi/gdb669.exp: console and MI have same number of threads (try 1)
FAIL: gdb.mi/gdb669.exp: console and MI have same number of threads (try 2)
FAIL: gdb.mi/gdb669.exp: console and MI have same number of threads (try 3)
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/gdb680.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/gdb701.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/gdb792.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-async.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-basics.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-break.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-breakpoint-changed.exp ...
FAIL: gdb.mi/mi-breakpoint-changed.exp: catch syscall
FAIL: gdb.mi/mi-breakpoint-changed.exp: dprintf marker, "arg" "
FAIL: gdb.mi/mi-breakpoint-changed.exp: delete 6
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-catch-load.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-cli.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-cmd-param-changed.exp ...
FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: "set scheduler-locking on"
FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: "set scheduler-locking off"
FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: "set scheduler-locking step"
FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: interpreter-exec "set scheduler-locking on"
FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: interpreter-exec "set scheduler-locking off"
FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: interpreter-exec "set scheduler-locking step"
FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: "set scheduler-locking on" no event (requested by MI)
FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: "set scheduler-locking step" no event (requested by MI interp)
FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: "set scheduler-locking stepr" no event
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-condbreak-call-thr-state.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-console.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-detach.exp ...
FAIL: gdb.mi/mi-detach.exp: detach
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-disassemble.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-dprintf-pending.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-dprintf.exp ...
FAIL: gdb.mi/mi-dprintf.exp: call: mi 1st dprintf (timeout)
FAIL: gdb.mi/mi-dprintf.exp: call: mi 2nd dprintf (timeout)
FAIL: gdb.mi/mi-dprintf.exp: fprintf: mi 1st dprintf (timeout)
FAIL: gdb.mi/mi-dprintf.exp: fprintf: mi 2nd dprintf (timeout)
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-eval.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-exit-code.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-file-transfer.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-file.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-fill-memory.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-fullname-deleted.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-hack-cli.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-i-cmd.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-info-os.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-inheritance-syntax-error.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-language.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-logging.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-memory-changed.exp ...
FAIL: gdb.mi/mi-memory-changed.exp: create objvar for C
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-nonstop-exit.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-nonstop.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-ns-stale-regcache.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-nsintrall.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-nsmoribund.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-nsthrexec.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-pending.exp ...
FAIL: gdb.mi/mi-pending.exp: Run till MI pending breakpoint on thread_func (unknown output after running)
FAIL: gdb.mi/mi-pending.exp: Run till MI pending breakpoint on pendfunc3 on thread 2 (timeout)
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-pthreads.exp ...
FAIL: gdb.mi/mi-pthreads.exp: check_mi_thread_command_set: -thread-select 10
FAIL: gdb.mi/mi-pthreads.exp: check_mi_thread_command_set: -thread-select 3
FAIL: gdb.mi/mi-pthreads.exp: check_mi_thread_command_set: -thread-select 2
FAIL: gdb.mi/mi-pthreads.exp: check_mi_thread_command_set: -thread-select 1
FAIL: gdb.mi/mi-pthreads.exp: check =thread-selected: thread 3
FAIL: gdb.mi/mi-pthreads.exp: check =thread-selected: thread 2
FAIL: gdb.mi/mi-pthreads.exp: check =thread-selected: thread 1
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-read-memory.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-record-changed.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-reg-undefined.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-regs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-return.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-reverse.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-simplerun.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-solib.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-stack.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-start.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-stepi.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-stepn.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-syn-frame.exp ...
FAIL: gdb.mi/mi-syn-frame.exp: list stack frames
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-undefined-cmd.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-until.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-var-block.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-var-child-f.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-var-child.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-var-cmd.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-var-cp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-var-create-rtti.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-var-display.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-var-invalidate.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-var-list-children-invalid-grandchild.exp ...
FAIL: gdb.mi/mi-var-list-children-invalid-grandchild.exp: create variable object
FAIL: gdb.mi/mi-var-list-children-invalid-grandchild.exp: list children #1
FAIL: gdb.mi/mi-var-list-children-invalid-grandchild.exp: list children #2
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-var-rtti.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-vla-c99.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-watch-nonstop.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi-watch.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi2-amd64-entry-value.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi2-prompt.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/mi2-var-child.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.mi/pr11022.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.modula2/unbounded-array.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.multi/base.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.multi/bkpt-multi-exec.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.multi/dummy-frame-restore.exp ...
FAIL: gdb.multi/dummy-frame-restore.exp: Can't run to f2
Running ../../../W._C._Handy/gdb/testsuite/gdb.multi/multi-arch-exec.exp ...
gdb compile failed, ../../../W._C._Handy/gdb/testsuite/gdb.multi/multi-arch-exec.c:1:0: sorry, unimplemented: 64-bit mode not compiled in
 /* This testcase is part of GDB, the GNU debugger.
 ^
Running ../../../W._C._Handy/gdb/testsuite/gdb.multi/multi-arch.exp ...
gdb compile failed, ../../../W._C._Handy/gdb/testsuite/gdb.multi/hello.c:1:0: sorry, unimplemented: 64-bit mode not compiled in
 /* This testcase is part of GDB, the GNU debugger.
 ^
Running ../../../W._C._Handy/gdb/testsuite/gdb.multi/multi-attach.exp ...
FAIL: gdb.multi/multi-attach.exp: attach to program 1
FAIL: gdb.multi/multi-attach.exp: attach to program 2
Running ../../../W._C._Handy/gdb/testsuite/gdb.multi/watchpoint-multi.exp ...
FAIL: gdb.multi/watchpoint-multi.exp: start to main inferior 2
FAIL: gdb.multi/watchpoint-multi.exp: setting breakpoint at marker_exit
FAIL: gdb.multi/watchpoint-multi.exp: awatch b on inferior 1
FAIL: gdb.multi/watchpoint-multi.exp: switch to inferior 2 again
FAIL: gdb.multi/watchpoint-multi.exp: catch c on inferior 2
FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 2
FAIL: gdb.multi/watchpoint-multi.exp: switch back to inferior 1 again
FAIL: gdb.multi/watchpoint-multi.exp: catch b on inferior 1
FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
Running ../../../W._C._Handy/gdb/testsuite/gdb.objc/basicclass.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.objc/nondebug.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.objc/objcdecode.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.objc/print.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.opencl/callfuncs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.opencl/convs_casts.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.opencl/datatypes.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.opencl/operators.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.opencl/vec_comps.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.opt/clobbered-registers-O2.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.opt/inline-break.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.opt/inline-bt.exp ...
FAIL: gdb.opt/inline-bt.exp: continue to bar (1)
FAIL: gdb.opt/inline-bt.exp: backtrace from bar (1)
FAIL: gdb.opt/inline-bt.exp: continue to bar (2)
FAIL: gdb.opt/inline-bt.exp: backtrace from bar (2)
FAIL: gdb.opt/inline-bt.exp: continue to bar (3)
FAIL: gdb.opt/inline-bt.exp: backtrace from bar (3)
Running ../../../W._C._Handy/gdb/testsuite/gdb.opt/inline-cmds.exp ...
FAIL: gdb.opt/inline-cmds.exp: continue to bar (1)
FAIL: gdb.opt/inline-cmds.exp: backtrace from bar (1)
FAIL: gdb.opt/inline-cmds.exp: continue to bar (2)
FAIL: gdb.opt/inline-cmds.exp: backtrace from bar (2)
FAIL: gdb.opt/inline-cmds.exp: continue to marker
FAIL: gdb.opt/inline-cmds.exp: backtrace from marker
FAIL: gdb.opt/inline-cmds.exp: step into finish marker
Running ../../../W._C._Handy/gdb/testsuite/gdb.opt/inline-locals.exp ...
FAIL: gdb.opt/inline-locals.exp: continue to bar (1)
FAIL: gdb.opt/inline-locals.exp: continue to bar (2)
FAIL: gdb.opt/inline-locals.exp: backtrace from bar (2)
FAIL: gdb.opt/inline-locals.exp: continue to bar (3)
FAIL: gdb.opt/inline-locals.exp: backtrace from bar (3)
Running ../../../W._C._Handy/gdb/testsuite/gdb.pascal/case-insensitive-symbols.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.pascal/floats.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.pascal/gdb11492.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.pascal/hello.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.pascal/integers.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.pascal/print.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.pascal/stub-method.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.pascal/types.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.perf/backtrace.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.perf/disassemble.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.perf/gmonster1-null-lookup.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.perf/gmonster1-pervasive-typedef.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.perf/gmonster1-print-cerr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.perf/gmonster1-ptype-string.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.perf/gmonster1-runto-main.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.perf/gmonster1-select-file.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.perf/gmonster1.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.perf/gmonster2-null-lookup.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.perf/gmonster2-pervasive-typedef.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.perf/gmonster2-print-cerr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.perf/gmonster2-ptype-string.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.perf/gmonster2-runto-main.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.perf/gmonster2-select-file.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.perf/gmonster2.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.perf/single-step.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.perf/skip-prologue.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.perf/solib.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/lib-types.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-arch.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-bad-printers.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-block.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-breakpoint.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-caller-is.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-cmd.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-completion.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-error.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-events.exp ...
FAIL: gdb.python/py-events.exp: get current thread
ERROR: tcl error sourcing ../../../W._C._Handy/gdb/testsuite/gdb.python/py-events.exp.
ERROR: can't read "process_id": no such variable
    while executing
"lappend expected "ptid: \\($process_id, $process_id, 0\\)" "address: $addr""
    (file "../../../W._C._Handy/gdb/testsuite/gdb.python/py-events.exp" line 99)
    invoked from within
"source ../../../W._C._Handy/gdb/testsuite/gdb.python/py-events.exp"
    ("uplevel" body line 1)
    invoked from within
"uplevel #0 source ../../../W._C._Handy/gdb/testsuite/gdb.python/py-events.exp"
    invoked from within
"catch "uplevel #0 source $test_file_name""
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-evsignal.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-evthreads.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-explore-cc.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-explore.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-finish-breakpoint.exp ...
FAIL: gdb.python/py-finish-breakpoint.exp: catch out of scope after exec
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-finish-breakpoint2.exp ...
FAIL: gdb.python/py-finish-breakpoint2.exp: check FinishBreakpoint in catch()
FAIL: gdb.python/py-finish-breakpoint2.exp: check finish BP removal
FAIL: gdb.python/py-finish-breakpoint2.exp: continue to second exception
FAIL: gdb.python/py-finish-breakpoint2.exp: set FinishBP after the exception
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-frame-args.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-frame-inline.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-frame.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-framefilter-invalidarg.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-framefilter-mi.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-framefilter.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-function.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-inferior.exp ...
FAIL: gdb.python/py-inferior.exp: test Inferior.threads
FAIL: gdb.python/py-inferior.exp: test Inferior.threads 2
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-infthread.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-lazy-string.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-linetable.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-lookup-type.exp ...
FAIL: gdb.python/py-lookup-type.exp: lookup type ucent using language d
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-mi-objfile.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-mi.exp ...
FAIL: gdb.python/py-mi.exp: varobj update 1
FAIL: gdb.python/py-mi.exp: varobj update 2
FAIL: gdb.python/py-mi.exp: varobj update after choosing default
FAIL: gdb.python/py-mi.exp: varobj update after choosing via expression
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-objfile-script.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-objfile.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-parameter.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-pp-integral.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-pp-maint.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-pp-re-notag.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-pp-registration.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-prettyprint.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-progspace.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-prompt.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-section-script.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-shared.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-strfns.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-symbol.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-symtab.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-sync-interp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-template.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-type.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-typeprint.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-unwind-maint.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-unwind.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-value-cc.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-value.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/py-xmethods.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.python/python.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/aarch64.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/amd64-tailcall-reverse.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/break-precsave.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/break-reverse.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/consecutive-precsave.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/consecutive-reverse.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/finish-precsave.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/finish-reverse-bkpt.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/finish-reverse.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/i386-precsave.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/i386-reverse.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/i386-sse-reverse.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/i387-env-reverse.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/i387-stack-reverse.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/machinestate-precsave.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/machinestate.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/next-reverse-bkpt-over-sr.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/rerun-prec.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/sigall-precsave.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/sigall-reverse.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/singlejmp-reverse.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/solib-precsave.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/solib-reverse.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/step-precsave.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/step-reverse.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/until-precsave.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/until-reverse.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/watch-precsave.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.reverse/watch-reverse.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.server/ext-attach.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.server/ext-restart.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.server/ext-run.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.server/ext-wrapper.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.server/file-transfer.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.server/no-thread-db.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.server/non-existing-program.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.server/server-exec-info.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.server/server-kill.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.server/server-mon.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.server/server-run.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.server/solib-list.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.server/wrapper.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.stabs/exclfwd.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.stabs/gdb11479.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.stabs/weird.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/attach-into-signal.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/attach-many-short-lived-threads.exp ...
gdb compile failed, ../../../W._C._Handy/gdb/testsuite/gdb.threads/attach-many-short-lived-threads.c: In function 'joinable_fn':
../../../W._C._Handy/gdb/testsuite/gdb.threads/attach-many-short-lived-threads.c:78:3: warning: implicit declaration of function 'pthread_setname_np' [-Wimplicit-function-declaration]
   pthread_setname_np (pthread_self (), "joinable");
   ^
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/attach-stopped.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/bp_in_thread.exp ...
FAIL: gdb.threads/bp_in_thread.exp: run to noreturn
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/break-while-running.exp ...
FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted off: all-stop: set scheduler-locking on
FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted off: all-stop: thread 2
FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted off: all-stop: continuing thread 2
FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted off: all-stop: thread 3
FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted off: all-stop: continuing thread 3
FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted off: all-stop: switch back to main thread
FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted off: all-stop: only main stopped
FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted off: all-stop: breakpoint is hit (timeout)
FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted off: all-stop: all threads stopped
FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted on: all-stop: set scheduler-locking on
FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted on: all-stop: thread 2
FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted on: all-stop: continuing thread 2
FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted on: all-stop: thread 3
FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted on: all-stop: continuing thread 3
FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted on: all-stop: switch back to main thread
FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted on: all-stop: only main stopped
FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted on: all-stop: breakpoint is hit (timeout)
FAIL: gdb.threads/break-while-running.exp: w/ithr: always-inserted on: all-stop: all threads stopped
FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted off: all-stop: set scheduler-locking on
FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted off: all-stop: thread 2
FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted off: all-stop: continuing thread 2
FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted off: all-stop: thread 3
FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted off: all-stop: continuing thread 3
FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted off: all-stop: switch back to main thread
FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted off: all-stop: breakpoint is hit (timeout)
FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted off: all-stop: all threads stopped
FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted on: all-stop: set scheduler-locking on
FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted on: all-stop: thread 2
FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted on: all-stop: continuing thread 2
FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted on: all-stop: thread 3
FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted on: all-stop: continuing thread 3
FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted on: all-stop: switch back to main thread
FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted on: all-stop: breakpoint is hit (timeout)
FAIL: gdb.threads/break-while-running.exp: wo/ithr: always-inserted on: all-stop: all threads stopped
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/clone-new-thread-event.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/clone-thread_db.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/continue-pending-after-query.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/continue-pending-status.exp ...
FAIL: gdb.threads/continue-pending-status.exp: attempt 0: continue to tight loop
FAIL: gdb.threads/continue-pending-status.exp: attempt 0: switch to non-event thread
FAIL: gdb.threads/continue-pending-status.exp: attempt 0: caught interrupt
FAIL: gdb.threads/continue-pending-status.exp: attempt 1: continue to tight loop
FAIL: gdb.threads/continue-pending-status.exp: attempt 1: switch to non-event thread
FAIL: gdb.threads/continue-pending-status.exp: attempt 1: caught interrupt
FAIL: gdb.threads/continue-pending-status.exp: attempt 2: continue to tight loop
FAIL: gdb.threads/continue-pending-status.exp: attempt 2: switch to non-event thread
FAIL: gdb.threads/continue-pending-status.exp: attempt 2: caught interrupt
FAIL: gdb.threads/continue-pending-status.exp: attempt 3: continue to tight loop
FAIL: gdb.threads/continue-pending-status.exp: attempt 3: switch to non-event thread
FAIL: gdb.threads/continue-pending-status.exp: attempt 3: caught interrupt
FAIL: gdb.threads/continue-pending-status.exp: attempt 4: continue to tight loop
FAIL: gdb.threads/continue-pending-status.exp: attempt 4: switch to non-event thread
FAIL: gdb.threads/continue-pending-status.exp: attempt 4: caught interrupt
FAIL: gdb.threads/continue-pending-status.exp: attempt 5: continue to tight loop
FAIL: gdb.threads/continue-pending-status.exp: attempt 5: switch to non-event thread
FAIL: gdb.threads/continue-pending-status.exp: attempt 5: caught interrupt
FAIL: gdb.threads/continue-pending-status.exp: attempt 6: continue to tight loop
FAIL: gdb.threads/continue-pending-status.exp: attempt 6: switch to non-event thread
FAIL: gdb.threads/continue-pending-status.exp: attempt 6: caught interrupt
FAIL: gdb.threads/continue-pending-status.exp: attempt 7: continue to tight loop
FAIL: gdb.threads/continue-pending-status.exp: attempt 7: switch to non-event thread
FAIL: gdb.threads/continue-pending-status.exp: attempt 7: caught interrupt
FAIL: gdb.threads/continue-pending-status.exp: attempt 8: continue to tight loop
FAIL: gdb.threads/continue-pending-status.exp: attempt 8: switch to non-event thread
FAIL: gdb.threads/continue-pending-status.exp: attempt 8: caught interrupt
FAIL: gdb.threads/continue-pending-status.exp: attempt 9: continue to tight loop
FAIL: gdb.threads/continue-pending-status.exp: attempt 9: switch to non-event thread
FAIL: gdb.threads/continue-pending-status.exp: attempt 9: caught interrupt
FAIL: gdb.threads/continue-pending-status.exp: attempt 10: continue to tight loop
FAIL: gdb.threads/continue-pending-status.exp: attempt 10: switch to non-event thread
FAIL: gdb.threads/continue-pending-status.exp: attempt 10: caught interrupt
FAIL: gdb.threads/continue-pending-status.exp: attempt 11: continue to tight loop
FAIL: gdb.threads/continue-pending-status.exp: attempt 11: switch to non-event thread
FAIL: gdb.threads/continue-pending-status.exp: attempt 11: caught interrupt
FAIL: gdb.threads/continue-pending-status.exp: attempt 12: continue to tight loop
FAIL: gdb.threads/continue-pending-status.exp: attempt 12: switch to non-event thread
FAIL: gdb.threads/continue-pending-status.exp: attempt 12: caught interrupt
FAIL: gdb.threads/continue-pending-status.exp: attempt 13: continue to tight loop
FAIL: gdb.threads/continue-pending-status.exp: attempt 13: switch to non-event thread
FAIL: gdb.threads/continue-pending-status.exp: attempt 13: caught interrupt
FAIL: gdb.threads/continue-pending-status.exp: attempt 14: continue to tight loop
FAIL: gdb.threads/continue-pending-status.exp: attempt 14: switch to non-event thread
FAIL: gdb.threads/continue-pending-status.exp: attempt 14: caught interrupt
FAIL: gdb.threads/continue-pending-status.exp: attempt 15: continue to tight loop
FAIL: gdb.threads/continue-pending-status.exp: attempt 15: switch to non-event thread
FAIL: gdb.threads/continue-pending-status.exp: attempt 15: caught interrupt
FAIL: gdb.threads/continue-pending-status.exp: attempt 16: continue to tight loop
FAIL: gdb.threads/continue-pending-status.exp: attempt 16: switch to non-event thread
FAIL: gdb.threads/continue-pending-status.exp: attempt 16: caught interrupt
FAIL: gdb.threads/continue-pending-status.exp: attempt 17: continue to tight loop
FAIL: gdb.threads/continue-pending-status.exp: attempt 17: switch to non-event thread
FAIL: gdb.threads/continue-pending-status.exp: attempt 17: caught interrupt
FAIL: gdb.threads/continue-pending-status.exp: attempt 18: continue to tight loop
FAIL: gdb.threads/continue-pending-status.exp: attempt 18: switch to non-event thread
FAIL: gdb.threads/continue-pending-status.exp: attempt 18: caught interrupt
FAIL: gdb.threads/continue-pending-status.exp: attempt 19: continue to tight loop
FAIL: gdb.threads/continue-pending-status.exp: attempt 19: switch to non-event thread
FAIL: gdb.threads/continue-pending-status.exp: attempt 19: caught interrupt
FAIL: gdb.threads/continue-pending-status.exp: no thread starvation
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/corethreads.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/create-fail.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/current-lwp-dead.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/dlopen-libpthread.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/execl.exp ...
FAIL: gdb.threads/execl.exp: info threads before exec
FAIL: gdb.threads/execl.exp: continue across exec
FAIL: gdb.threads/execl.exp: continue until exit
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/fork-child-threads.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/fork-plus-threads.exp ...
FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=on: Can't run to main
FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: Can't run to main
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/fork-thread-pending.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/forking-threads-plus-breakpoint.exp ...
FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=1: detach_on_fork=on: Can't run to main
FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: Can't run to main
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/gcore-stale-thread.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/gcore-thread.exp ...
FAIL: gdb.threads/gcore-thread.exp: thread 1 is running
FAIL: gdb.threads/gcore-thread.exp: thread 2 is running
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/hand-call-in-threads.exp ...
FAIL: gdb.threads/hand-call-in-threads.exp: enable scheduler locking
FAIL: gdb.threads/hand-call-in-threads.exp: show scheduler locking on
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/hand-call-new-thread.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/ia64-sigill.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/info-threads-cur-sal.exp ...
FAIL: gdb.threads/info-threads-cur-sal.exp: continue to breakpoint: start
FAIL: gdb.threads/info-threads-cur-sal.exp: list before info threads
FAIL: gdb.threads/info-threads-cur-sal.exp: info threads before break
FAIL: gdb.threads/info-threads-cur-sal.exp: break on line
FAIL: gdb.threads/info-threads-cur-sal.exp: info threads before list
FAIL: gdb.threads/info-threads-cur-sal.exp: list after info threads
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/interrupted-hand-call.exp ...
FAIL: gdb.threads/interrupted-hand-call.exp: hand-call interrupted by signal in another thread
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/kill.exp ...
FAIL: gdb.threads/kill.exp: threaded: all threads started
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/killed.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/leader-exit.exp ...
FAIL: gdb.threads/leader-exit.exp: continue to breakpoint: break-here
FAIL: gdb.threads/leader-exit.exp: Single thread has been left
FAIL: gdb.threads/leader-exit.exp: caught interrupt
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/linux-dp.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/local-watch-wrong-thread.exp ...
FAIL: gdb.threads/local-watch-wrong-thread.exp: continue to thread_function0
FAIL: gdb.threads/local-watch-wrong-thread.exp: set local watchpoint on *myp
FAIL: gdb.threads/local-watch-wrong-thread.exp: local watchpoint triggers
FAIL: gdb.threads/local-watch-wrong-thread.exp: set local watchpoint on *myp, with false conditional
FAIL: gdb.threads/local-watch-wrong-thread.exp: breakpoint on the other thread
FAIL: gdb.threads/local-watch-wrong-thread.exp: the other thread stopped on breakpoint
FAIL: gdb.threads/local-watch-wrong-thread.exp: delete 5
FAIL: gdb.threads/local-watch-wrong-thread.exp: local watchpoint is still in breakpoint list
FAIL: gdb.threads/local-watch-wrong-thread.exp: let local watchpoint trigger
FAIL: gdb.threads/local-watch-wrong-thread.exp: local watchpoint still triggers (the program is no longer running)
FAIL: gdb.threads/local-watch-wrong-thread.exp: let thread_function0 return
FAIL: gdb.threads/local-watch-wrong-thread.exp: breakpoint on thread_function0's caller
FAIL: gdb.threads/local-watch-wrong-thread.exp: local watchpoint automatically deleted (the program is no longer running)
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/manythreads.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/multi-create-ns-info-thr.exp ...
gdb compile failed, ../../../W._C._Handy/gdb/testsuite/gdb.threads/multi-create.c: In function 'create_function':
../../../W._C._Handy/gdb/testsuite/gdb.threads/multi-create.c:46:39: error: 'PTHREAD_STACK_MIN' undeclared (first use in this function)
   pthread_attr_setstacksize (&attr, 2*PTHREAD_STACK_MIN);
                                       ^
../../../W._C._Handy/gdb/testsuite/gdb.threads/multi-create.c:46:39: note: each undeclared identifier is reported only once for each function it appears in
../../../W._C._Handy/gdb/testsuite/gdb.threads/multi-create.c: In function 'main':
../../../W._C._Handy/gdb/testsuite/gdb.threads/multi-create.c:73:39: error: 'PTHREAD_STACK_MIN' undeclared (first use in this function)
   pthread_attr_setstacksize (&attr, 2*PTHREAD_STACK_MIN);
                                       ^
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/multi-create.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/multiple-step-overs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/next-bp-other-thread.exp ...
FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=off: info threads shows all threads
FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=off: set scheduler-locking off
FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=off: next over function call
FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=step: info threads shows all threads
FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=step: set scheduler-locking step
FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=step: next over function call
FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=on: info threads shows all threads
FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=on: set scheduler-locking on
FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=on: next over function call
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/next-while-other-thread-longjmps.exp ...
FAIL: gdb.threads/next-while-other-thread-longjmps.exp: next to line 1
FAIL: gdb.threads/next-while-other-thread-longjmps.exp: next to line 2
FAIL: gdb.threads/next-while-other-thread-longjmps.exp: next to line 3
FAIL: gdb.threads/next-while-other-thread-longjmps.exp: next to line 4
FAIL: gdb.threads/next-while-other-thread-longjmps.exp: next to line 5
FAIL: gdb.threads/next-while-other-thread-longjmps.exp: next to line 6
FAIL: gdb.threads/next-while-other-thread-longjmps.exp: next to line 7
FAIL: gdb.threads/next-while-other-thread-longjmps.exp: next to line 8
FAIL: gdb.threads/next-while-other-thread-longjmps.exp: next to line 9
FAIL: gdb.threads/next-while-other-thread-longjmps.exp: next to line 10
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/no-unwaited-for-left.exp ...
FAIL: gdb.threads/no-unwaited-for-left.exp: continue to breakpoint: break-here
FAIL: gdb.threads/no-unwaited-for-left.exp: enable scheduler-locking, for thread 2
FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
FAIL: gdb.threads/no-unwaited-for-left.exp: only main thread left, thread 2 terminated
FAIL: gdb.threads/no-unwaited-for-left.exp: disable scheduler-locking, letting new thread start
FAIL: gdb.threads/no-unwaited-for-left.exp: continue to breakpoint: break-here-2
FAIL: gdb.threads/no-unwaited-for-left.exp: enable scheduler-locking, for main thread
FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits (the program is no longer running)
FAIL: gdb.threads/no-unwaited-for-left.exp: only thread 3 left, main thread terminated
FAIL: gdb.threads/no-unwaited-for-left.exp: thread apply all with exited thread
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/non-ldr-exc-1.exp ...
FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched0: continue to breakpoint: break-here
FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched0: continue over exec
FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched1: continue to breakpoint: break-here
FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched1: set scheduler-locking on
FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched1: continue over exec
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/non-ldr-exc-2.exp ...
FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched0: continue to breakpoint: break-here
FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched0: single thread left
FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched0: continue over exec
FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched1: continue to breakpoint: break-here
FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched1: single thread left
FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched1: set scheduler-locking on
FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched1: continue over exec
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/non-ldr-exc-3.exp ...
FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched0: continue to breakpoint: break-here
FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched0: continue over exec
FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched1: continue to breakpoint: break-here
FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched1: set scheduler-locking on
FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched1: continue over exec
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/non-ldr-exc-4.exp ...
FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched0: continue to breakpoint: break-here
FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched0: continue over exec
FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched1: continue to breakpoint: break-here
FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched1: set scheduler-locking on
FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched1: continue over exec
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/non-ldr-exit.exp ...
FAIL: gdb.threads/non-ldr-exit.exp: continue to breakpoint: break-here
FAIL: gdb.threads/non-ldr-exit.exp: set scheduler-locking on
FAIL: gdb.threads/non-ldr-exit.exp: program exits normally
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/non-stop-fair-events.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/pending-step.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/print-threads.exp ...
FAIL: gdb.threads/print-threads.exp: all threads ran once
FAIL: gdb.threads/print-threads.exp: all threads ran once
FAIL: gdb.threads/print-threads.exp: all threads ran once
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/process-dies-while-handling-bp.exp ...
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: Can't run to main
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: Can't run to main
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/pthread_cond_wait.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/pthreads.exp ...
FAIL: gdb.threads/pthreads.exp: Continue to creation of first thread
FAIL: gdb.threads/pthreads.exp: Continue to creation of second thread
FAIL: gdb.threads/pthreads.exp: get thread 2 id
FAIL: gdb.threads/pthreads.exp: continue until common routine run 15 times
FAIL: gdb.threads/pthreads.exp: continue with all threads running (the program is no longer running)
FAIL: gdb.threads/pthreads.exp: set var common_routine::hits=0
FAIL: gdb.threads/pthreads.exp: set var common_routine::from_thread1=0
FAIL: gdb.threads/pthreads.exp: set var common_routine::from_thread2=0
FAIL: gdb.threads/pthreads.exp: set var common_routine::from_main=0
FAIL: gdb.threads/pthreads.exp: set var common_routine::full_coverage=0
FAIL: gdb.threads/pthreads.exp: continue until common routine run 15 times (the program is no longer running)
FAIL: gdb.threads/pthreads.exp: check backtrace from main thread
FAIL: gdb.threads/pthreads.exp: check backtrace from thread 1
FAIL: gdb.threads/pthreads.exp: check backtrace from thread 2
FAIL: gdb.threads/pthreads.exp: apply backtrace command to all three threads
FAIL: gdb.threads/pthreads.exp: set break at common_routine in thread 2
FAIL: gdb.threads/pthreads.exp: continue to bkpt at common_routine in thread 2 (the program is no longer running)
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/queue-signal.exp ...
FAIL: gdb.threads/queue-signal.exp: determine thread functions
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/reconnect-signal.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/schedlock.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/siginfo-threads.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/signal-command-handle-nopass.exp ...
FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over yes: stopped in thread
FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over yes: thread 1
FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over yes: thread 1 selected
FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over yes: signal SIGUSR1
FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over yes: thread 1 got the signal
FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over no: stopped in thread
FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over no: thread 1
FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over no: thread 1 selected
FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over no: signal SIGUSR1
FAIL: gdb.threads/signal-command-handle-nopass.exp: step-over no: thread 1 got the signal
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/signal-command-multiple-signals-pending.exp ...
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: thread 2 created
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: thread 3 created
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: continue
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: set scheduler-locking on
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: continue (the program is no longer running)
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: thread 1 selected
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: thread 3
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: stop with SIGUSR2 (the program is no longer running)
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: thread 2
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: stop with SIGUSR1 (the program is no longer running)
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: set scheduler-locking off
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: thread 1
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: signal command queries (the program is no longer running)
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: second signal: signal delivered (the program is no longer running)
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock off: no more signals (the program is no longer running)
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: thread 2 created
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: thread 3 created
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: continue
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: set scheduler-locking on
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: continue (the program is no longer running)
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: thread 1 selected
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: thread 3
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: stop with SIGUSR2 (the program is no longer running)
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: thread 2
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: stop with SIGUSR1 (the program is no longer running)
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: signal command does not query, signal delivered (the program is no longer running)
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: second signal: set scheduler-locking off
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: second signal: signal command queries (the program is no longer running)
FAIL: gdb.threads/signal-command-multiple-signals-pending.exp: schedlock on: no more signals (the program is no longer running)
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/signal-delivered-right-thread.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/signal-sigtrap.exp ...
FAIL: gdb.threads/signal-sigtrap.exp: sigtrap thread 1: Can't run to thread_function
FAIL: gdb.threads/signal-sigtrap.exp: sigtrap thread 2: Can't run to thread_function
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/signal-while-stepping-over-bp-other-thread.exp ...
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: continue to breakpoint: run to breakpoint in thread 3
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: continue to breakpoint: run to breakpoint in thread 2
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: force loop break in thread 2
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: queue signal in thread 2
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: get my_number
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step (pattern 1)
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: stepped thread under control
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/sigstep-threads.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/sigthread.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/staticthreads.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/step-bg-decr-pc-switch-thread.exp ...
FAIL: gdb.threads/step-bg-decr-pc-switch-thread.exp: continue to breakpoint: run to nop breakpoint
FAIL: gdb.threads/step-bg-decr-pc-switch-thread.exp: info threads shows all threads
FAIL: gdb.threads/step-bg-decr-pc-switch-thread.exp: next over nop
FAIL: gdb.threads/step-bg-decr-pc-switch-thread.exp: next& over inf loop
FAIL: gdb.threads/step-bg-decr-pc-switch-thread.exp: switch to main thread
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/step-over-lands-on-breakpoint.exp ...
FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: step: info threads shows all threads
FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: step: set scheduler-locking on
FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: step: thread 2
FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: step: continue to breakpoint: run to breakpoint in thread 2
FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: step: thread 1
FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: step: set scheduler-locking off
FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: step: step (timeout)
FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: next: info threads shows all threads
FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: next: set scheduler-locking on
FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: next: thread 2
FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: next: continue to breakpoint: run to breakpoint in thread 2
FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: next: thread 1
FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: next: set scheduler-locking off
FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: next: next (timeout)
FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: continue: info threads shows all threads
FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: continue: set scheduler-locking on
FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: continue: thread 2
FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: continue: continue to breakpoint: run to breakpoint in thread 2
FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: continue: thread 1
FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: continue: set scheduler-locking off
FAIL: gdb.threads/step-over-lands-on-breakpoint.exp: displaced=off: continue: continue
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/step-over-trips-on-watchpoint.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/stepi-random-signal.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/switch-threads.exp ...
FAIL: gdb.threads/switch-threads.exp: continue to breakpoint: continue to thread_func
FAIL: gdb.threads/switch-threads.exp: next
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/thread-execl.exp ...
FAIL: gdb.threads/thread-execl.exp: schedlock off: continue to thread start
FAIL: gdb.threads/thread-execl.exp: schedlock off: set scheduler-locking off
FAIL: gdb.threads/thread-execl.exp: schedlock off: get to main in new image
FAIL: gdb.threads/thread-execl.exp: schedlock step: continue to thread start
FAIL: gdb.threads/thread-execl.exp: schedlock step: set scheduler-locking step
FAIL: gdb.threads/thread-execl.exp: schedlock step: get to main in new image
FAIL: gdb.threads/thread-execl.exp: schedlock on: continue to thread start
FAIL: gdb.threads/thread-execl.exp: schedlock on: set scheduler-locking on
FAIL: gdb.threads/thread-execl.exp: schedlock on: get to main in new image
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/thread-find.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/thread-specific-bp.exp ...
FAIL: gdb.threads/thread-specific-bp.exp: all-stop: continue to breakpoint: start
FAIL: gdb.threads/thread-specific-bp.exp: all-stop: continue to end
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/thread-specific.exp ...
FAIL: gdb.threads/thread-specific.exp: continue to thread-specific breakpoint
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/thread-unwindonsignal.exp ...
FAIL: gdb.threads/thread-unwindonsignal.exp: hand-call interrupted by signal in another thread
FAIL: gdb.threads/thread-unwindonsignal.exp: dummy stack frame present
FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit (the program is no longer running)
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/thread_check.exp ...
FAIL: gdb.threads/thread_check.exp: continue to tf
FAIL: gdb.threads/thread_check.exp: backtrace from thread function
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/thread_events.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/threadapply.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/threxit-hop-specific.exp ...
WARNING: program timed out.
FAIL: gdb.threads/threxit-hop-specific.exp: continue to thread start
FAIL: gdb.threads/threxit-hop-specific.exp: get past the thread specific breakpoint
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/tid-reuse.exp ...
FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: do_nothing_thread_func (the program exited)
FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time (the program is no longer running)
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/tls-nodebug.exp ...
FAIL: gdb.threads/tls-nodebug.exp: thread local storage
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/tls-shared.exp ...
FAIL: gdb.threads/tls-shared.exp: print thread local storage variable
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/tls-var.exp ...
FAIL: gdb.threads/tls-var.exp: print tls_var
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/tls.exp ...
FAIL: gdb.threads/tls.exp: continue to first thread: no progress?
FAIL: gdb.threads/tls.exp: first thread print me
FAIL: gdb.threads/tls.exp: first thread local storage
FAIL: gdb.threads/tls.exp: first another thread local storage
FAIL: gdb.threads/tls.exp: continue to second thread
FAIL: gdb.threads/tls.exp: second thread print me
FAIL: gdb.threads/tls.exp: second thread local storage
FAIL: gdb.threads/tls.exp: second another thread local storage
FAIL: gdb.threads/tls.exp: continue to third thread
FAIL: gdb.threads/tls.exp: at least one th in spin while stopped at third th
FAIL: gdb.threads/tls.exp: third thread print me
FAIL: gdb.threads/tls.exp: third thread local storage
FAIL: gdb.threads/tls.exp: third another thread local storage
FAIL: gdb.threads/tls.exp: continue to synch point (the program is no longer running)
FAIL: gdb.threads/tls.exp: get number of threads
FAIL: gdb.threads/tls.exp: No thread backtrace reported spin (vsyscall kernel problem?)
FAIL: gdb.threads/tls.exp: threads exited (the program is no longer running)
FAIL: gdb.threads/tls.exp: mess at end
FAIL: gdb.threads/tls.exp: info address me
FAIL: gdb.threads/tls.exp: p a_thread_local
FAIL: gdb.threads/tls.exp: p file2_thread_local
FAIL: gdb.threads/tls.exp: p a_thread_local second time
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/watchpoint-fork.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/watchthreads-reorder.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/watchthreads.exp ...
FAIL: gdb.threads/watchthreads.exp: threaded watch loop (timeout)
FAIL: gdb.threads/watchthreads.exp: watchpoint on args[0] hit in thread
FAIL: gdb.threads/watchthreads.exp: watchpoint on args[1] hit in thread
FAIL: gdb.threads/watchthreads.exp: combination of threaded watchpoints = 30
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/watchthreads2.exp ...
FAIL: gdb.threads/watchthreads2.exp: run to thread_started
FAIL: gdb.threads/watchthreads2.exp: run to thread_started
FAIL: gdb.threads/watchthreads2.exp: run to thread_started
FAIL: gdb.threads/watchthreads2.exp: run to thread_started
FAIL: gdb.threads/watchthreads2.exp: all threads started
Running ../../../W._C._Handy/gdb/testsuite/gdb.threads/wp-replication.exp ...
FAIL: gdb.threads/wp-replication.exp: Thread 0 hit breakpoint at thread_started
FAIL: gdb.threads/wp-replication.exp: Thread 1 hit breakpoint at thread_started
FAIL: gdb.threads/wp-replication.exp: Thread 2 hit breakpoint at thread_started
FAIL: gdb.threads/wp-replication.exp: Thread 3 hit breakpoint at thread_started
FAIL: gdb.threads/wp-replication.exp: Thread 4 hit breakpoint at thread_started
FAIL: gdb.threads/wp-replication.exp: Thread 5 hit breakpoint at thread_started
FAIL: gdb.threads/wp-replication.exp: Thread 6 hit breakpoint at thread_started
FAIL: gdb.threads/wp-replication.exp: Thread 7 hit breakpoint at thread_started
FAIL: gdb.threads/wp-replication.exp: Thread 8 hit breakpoint at thread_started
FAIL: gdb.threads/wp-replication.exp: Thread 9 hit breakpoint at thread_started
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 21 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 22 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 23 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 24 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 25 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 26 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 27 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 28 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 29 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 30 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 31 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 32 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 33 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 34 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 35 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 36 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 37 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 38 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 39 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 40 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 41 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 42 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 43 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 44 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 45 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 46 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 47 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 48 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 49 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 50 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 51 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 52 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 53 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 54 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 55 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 56 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 57 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 58 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 59 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 60 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 61 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 62 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 63 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 64 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 65 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 66 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 67 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 68 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 69 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 70 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 71 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 72 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 73 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 74 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 75 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 76 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 77 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 78 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 79 out of 80 on watched_data
FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 80 out of 80 on watched_data
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/actions-changed.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/actions.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/ax.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/backtrace.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/change-loc.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/circ.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/collection.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/deltrace.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/disconnected-tracing.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/entry-values.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/ftrace.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/infotrace.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/mi-trace-frame-collected.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/mi-trace-unavailable.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/mi-traceframe-changed.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/mi-tracepoint-changed.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/mi-tsv-changed.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/no-attach-trace.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/packetlen.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/passc-dyn.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/passcount.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/pending.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/pr16508.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/qtro.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/range-stepping.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/read-memory.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/report.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/save-trace.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/stap-trace.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/status-stop.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/strace.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/tfile.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/tfind.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/trace-break.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/trace-buffer-size.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/trace-mt.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/tracecmd.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/tspeed.exp ...
gdb compile failed, gcc: error: [...]/tschwinge/W._C._Handy.build/gdb/testsuite/../gdbserver/libinproctrace.so: No such file or directory
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/tstatus.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/tsv.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/unavailable-dwarf-piece.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/unavailable.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/while-dyn.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.trace/while-stepping.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.xml/maint_print_struct.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.xml/tdesc-arch.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.xml/tdesc-errors.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.xml/tdesc-regs.exp ...
Running ../../../W._C._Handy/gdb/testsuite/gdb.xml/tdesc-xinclude.exp ...

		=== gdb Summary ===

# of expected passes		25550
# of unexpected failures	850
# of unexpected successes	1
# of expected failures		42
# of unknown successes		1
# of known failures		56
# of unresolved testcases	1
# of untested testcases		70
# of unsupported tests		100
[...]/tschwinge/W._C._Handy.build/gdb/testsuite/../../gdb/gdb version  7.10.50.20150819-cvs -nw -nx -data-directory [...]/tschwinge/W._C._Handy.build/gdb/testsuite/../data-directory 

Makefile:196: recipe for target 'check-single' failed
make[4]: *** [check-single] Error 1
make[4]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gdb/testsuite'
Makefile:155: recipe for target 'check' failed
make[3]: *** [check] Error 2
make[3]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gdb/testsuite'
Makefile:1173: recipe for target 'check' failed
make[2]: *** [check] Error 2
make[2]: Leaving directory '[...]/tschwinge/W._C._Handy.build/gdb'
Makefile:10776: recipe for target 'check-gdb' failed
make[1]: *** [check-gdb] Error 2
make[1]: Target 'check-host' not remade because of errors.
make[1]: Nothing to be done for 'check-target'.
make[1]: Leaving directory '[...]/tschwinge/W._C._Handy.build'
Makefile:2200: recipe for target 'do-check' failed
make: *** [do-check] Error 2
make: Target 'check' not remade because of errors.