summaryrefslogtreecommitdiffstats
path: root/testreport.txt
blob: 710d01d722e948f01f94058b9004217ecbc47034 (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
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
======= Summary ========
No high milestone defects.
no new issue found


==============================================================================================================
Test Result Status Summary (Counts/Percentages sorted by testseries, ID)
==============================================================================================================
--------------------------------------------------------------------------------------------------------------
Test Series         | ID                                                                 | Passed       | Failed    | Skipped    
--------------------------------------------------------------------------------------------------------------
a-full-posttrigger  | oeselftest_ubuntu-18.04_qemux86_20210413215049                     | 1 (100%)     | 0 (0%)    | 0 (0%)     
beaglebone          | manual_bsp-hw_20210416134125                                       | 9 (29%)      | 0 (0%)    | 22 (71%)   
beaglebone          | runtime_core-image-sato-sdk_beaglebone-yocto_20210415025206        | 46 (72%)     | 1 (2%)    | 17 (27%)   
beaglebone          | runtime_core-image-sato-sdk_beaglebone-yocto_20210415050037        | 54 (84%)     | 1 (2%)    | 9 (14%)    
beaglebone          | sdk_core-image-sato_i686_beaglebone-yocto_20210413133511           | 11 (92%)     | 0 (0%)    | 1 (8%)     
edgerouter          | manual_bsp-hw_20210416134525                                       | 3 (10%)      | 0 (0%)    | 28 (90%)   
edgerouter          | runtime_core-image-sato-sdk_edgerouter_20210414121329              | 46 (72%)     | 1 (2%)    | 17 (27%)   
edgerouter          | runtime_core-image-sato-sdk_edgerouter_20210414140605              | 53 (83%)     | 2 (3%)    | 9 (14%)    
edgerouter          | sdk_core-image-sato_i686_edgerouter_20210413135105                 | 11 (92%)     | 0 (0%)    | 1 (8%)     
genericx86-64       | sdk_core-image-sato_i686_genericx86-64_20210413141130              | 11 (92%)     | 0 (0%)    | 1 (8%)     
genericx86          | sdk_core-image-sato_i686_genericx86_20210413141213                 | 11 (92%)     | 0 (0%)    | 1 (8%)     
meta-intel          | sdk_core-image-sato_i686_intel-corei7-64_20210413144401            | 11 (92%)     | 0 (0%)    | 1 (8%)     
meta-mingw          | sdk_core-image-mingw-sdktest_x86_64-mingw32_qemux86_20210413143330 | 13 (100%)    | 0 (0%)    | 0 (0%)     
minnowboard         | runtime_core-image-sato-sdk_genericx86_20210414044724              | 48 (75%)     | 1 (2%)    | 15 (23%)   
multilib            | runtime_core-image-minimal_qemumips64_20210413153605               | 1 (2%)       | 0 (0%)    | 60 (98%)   
multilib            | runtime_core-image-sato_qemux86-64_20210413144042                  | 36 (55%)     | 0 (0%)    | 30 (45%)   
multilib            | runtime_core-image-sato_qemux86-64_20210413145044                  | 15 (23%)     | 0 (0%)    | 51 (77%)   
multilib            | runtime_lib32-core-image-minimal_qemux86-64_20210413142434         | 1 (100%)     | 0 (0%)    | 0 (0%)     
multilib            | runtime_lib32-core-image-minimal_qemux86-64_20210413142852         | 1 (100%)     | 0 (0%)    | 0 (0%)     
multilib            | sdk_core-image-minimal_x86_64_qemumips64_20210413153605            | 10 (83%)     | 0 (0%)    | 2 (17%)    
musl-qemux86-64     | runtime_core-image-full-cmdline_qemux86-64_20210413144754          | 12 (19%)     | 0 (0%)    | 51 (81%)   
musl-qemux86-64     | runtime_core-image-minimal_qemux86-64_20210413144754               | 1 (2%)       | 0 (0%)    | 62 (98%)   
musl-qemux86-64     | runtime_core-image-sato-sdk_qemux86-64_20210413144754              | 45 (71%)     | 0 (0%)    | 18 (29%)   
musl-qemux86        | runtime_core-image-full-cmdline_qemux86_20210413144158             | 12 (19%)     | 0 (0%)    | 51 (81%)   
musl-qemux86        | runtime_core-image-minimal_qemux86_20210413144158                  | 1 (2%)       | 0 (0%)    | 62 (98%)   
musl-qemux86        | runtime_core-image-sato-sdk_qemux86_20210413144158                 | 45 (71%)     | 0 (0%)    | 18 (29%)   
no-x11              | runtime_core-image-full-cmdline_qemux86-64_20210413144151          | 12 (19%)     | 0 (0%)    | 52 (81%)   
no-x11              | runtime_core-image-weston_qemux86-64_20210413144151                | 33 (52%)     | 0 (0%)    | 31 (48%)   
nuc7                | manual_bsp-hw_20210415085052                                       | 23 (74%)     | 0 (0%)    | 8 (26%)    
nuc7                | runtime_core-image-sato-sdk_genericx86-64_20210415025122           | 56 (88%)     | 1 (2%)    | 7 (11%)    
oe-core             | manual_oe-core_20210420183122                                      | 4 (100%)     | 0 (0%)    | 0 (0%)     
oe-selftest-centos  | oeselftest_centos-8_qemux86-64_20210413163922                      | 402 (98%)    | 0 (0%)    | 7 (2%)     
oe-selftest-debian  | oeselftest_debian-8_qemux86-64_20210413150145                      | 393 (96%)    | 0 (0%)    | 16 (4%)    
oe-selftest-fedora  | oeselftest_fedora-31_qemux86-64_20210413171201                     | 393 (96%)    | 0 (0%)    | 16 (4%)    
oe-selftest-ubuntu  | oeselftest_ubuntu-18.04_qemux86-64_20210413145005                  | 394 (96%)    | 0 (0%)    | 15 (4%)    
pkgman-deb-non-deb  | runtime_core-image-minimal_qemux86_20210413180120                  | 1 (2%)       | 0 (0%)    | 63 (98%)   
pkgman-deb-non-deb  | runtime_core-image-sato-sdk_qemux86_20210413180120                 | 28 (44%)     | 0 (0%)    | 36 (56%)   
pkgman-deb-non-deb  | runtime_core-image-sato_qemux86_20210413180120                     | 15 (23%)     | 0 (0%)    | 49 (77%)   
pkgman-deb-non-deb  | sdk_core-image-sato_i686_qemux86_20210413180120                    | 11 (92%)     | 0 (0%)    | 1 (8%)     
pkgman-non-rpm      | runtime_core-image-minimal_qemux86_20210413150441                  | 1 (2%)       | 0 (0%)    | 63 (98%)   
pkgman-non-rpm      | runtime_core-image-minimal_qemux86_20210413155816                  | 1 (2%)       | 0 (0%)    | 63 (98%)   
pkgman-non-rpm      | runtime_core-image-sato-sdk_qemux86_20210413150441                 | 28 (44%)     | 0 (0%)    | 36 (56%)   
pkgman-non-rpm      | runtime_core-image-sato-sdk_qemux86_20210413155816                 | 28 (44%)     | 0 (0%)    | 36 (56%)   
pkgman-non-rpm      | runtime_core-image-sato_qemux86_20210413150441                     | 14 (22%)     | 0 (0%)    | 50 (78%)   
pkgman-non-rpm      | runtime_core-image-sato_qemux86_20210413155816                     | 15 (23%)     | 0 (0%)    | 49 (77%)   
pkgman-rpm-non-rpm  | runtime_core-image-minimal_qemux86_20210413151707                  | 1 (2%)       | 0 (0%)    | 63 (98%)   
pkgman-rpm-non-rpm  | runtime_core-image-sato-sdk_qemux86_20210413151707                 | 47 (73%)     | 0 (0%)    | 17 (27%)   
pkgman-rpm-non-rpm  | runtime_core-image-sato_qemux86_20210413151707                     | 35 (55%)     | 0 (0%)    | 29 (45%)   
qa-extras2          | runtime_core-image-sato_qemux86-64_20210413153556                  | 37 (58%)     | 0 (0%)    | 27 (42%)   
qa-extras2          | runtime_core-image-sato_qemux86-64_20210413154630                  | 36 (56%)     | 0 (0%)    | 28 (44%)   
qa-extras2          | runtime_core-image-sato_qemux86-64_20210413155611                  | 37 (56%)     | 0 (0%)    | 29 (44%)   
qa-extras2          | runtime_core-image-sato_qemux86-64_20210413160356                  | 42 (66%)     | 0 (0%)    | 22 (34%)   
qa-extras2          | runtime_core-image-sato_qemux86-64_20210413161004                  | 35 (55%)     | 0 (0%)    | 29 (45%)   
qa-extras2          | runtime_core-image-sato_qemux86-64_20210413162225                  | 42 (66%)     | 0 (0%)    | 22 (34%)   
qa-extras2          | runtime_core-image-sato_qemux86-64_20210413162725                  | 35 (55%)     | 0 (0%)    | 29 (45%)   
qemuarm-alt         | runtime_core-image-full-cmdline_qemuarm_20210413154412             | 18 (28%)     | 0 (0%)    | 46 (72%)   
qemuarm-alt         | runtime_core-image-sato-sdk_qemuarm_20210413154412                 | 55 (86%)     | 0 (0%)    | 9 (14%)    
qemuarm-alt         | runtime_core-image-sato_qemuarm_20210413154412                     | 43 (67%)     | 0 (0%)    | 21 (33%)   
qemuarm64-armhost   | runtime_core-image-minimal_qemuarm64_20210413171244                | 1 (2%)       | 0 (0%)    | 62 (98%)   
qemuarm64-armhost   | runtime_core-image-sato-sdk_qemuarm64_20210413171244               | 46 (73%)     | 0 (0%)    | 17 (27%)   
qemuarm64-armhost   | runtime_core-image-sato_qemuarm64_20210413171244                   | 34 (54%)     | 0 (0%)    | 29 (46%)   
qemuarm64-armhost   | sdk_core-image-sato_aarch64_qemuarm64_20210413171244               | 11 (92%)     | 0 (0%)    | 1 (8%)     
qemuarm64-armhost   | sdkext_core-image-minimal_aarch64_qemuarm64_20210413171244         | 15 (71%)     | 0 (0%)    | 6 (29%)    
qemuarm64-armhost   | sdkext_core-image-sato_aarch64_qemuarm64_20210413171244            | 15 (71%)     | 0 (0%)    | 6 (29%)    
qemuarm64-ltp       | runtime_core-image-sato_qemuarm64_20210413190609                   | 1806 (93%)   | 145 (7%)  | 0 (0%)     
qemuarm64-ptest     | runtime_core-image-sato-sdk-ptest_qemuarm64_20210413134407         | 47864 (95%)  | 0 (0%)    | 2509 (5%)  
qemuarm64           | oeselftest_ubuntu-18.04_qemuarm64_20210413171856                   | 271842 (96%) | 500 (0%)  | 10116 (4%) 
qemuarm64           | runtime_core-image-minimal_qemuarm64_20210413160052                | 1 (2%)       | 0 (0%)    | 62 (98%)   
qemuarm64           | runtime_core-image-sato-sdk_qemuarm64_20210413160052               | 46 (73%)     | 0 (0%)    | 17 (27%)   
qemuarm64           | runtime_core-image-sato_qemuarm64_20210413160052                   | 34 (54%)     | 0 (0%)    | 29 (46%)   
qemuarm64           | sdk_core-image-sato_i686_qemuarm64_20210413160052                  | 11 (92%)     | 0 (0%)    | 1 (8%)     
qemuarm64           | sdk_core-image-sato_x86_64_qemuarm64_20210413170701                | 11 (92%)     | 0 (0%)    | 1 (8%)     
qemuarm64           | sdkext_core-image-minimal_x86_64_qemuarm64_20210413170701          | 15 (71%)     | 0 (0%)    | 6 (29%)    
qemuarm64           | sdkext_core-image-sato_x86_64_qemuarm64_20210413170701             | 15 (71%)     | 0 (0%)    | 6 (29%)    
qemuarm             | oeselftest_ubuntu-20.04_qemuarm_20210413162640                     | 263236 (96%) | 121 (0%)  | 11746 (4%) 
qemuarm             | runtime_core-image-minimal_qemuarm_20210413152241                  | 1 (2%)       | 0 (0%)    | 63 (98%)   
qemuarm             | runtime_core-image-sato-sdk_qemuarm_20210413152241                 | 47 (73%)     | 0 (0%)    | 17 (27%)   
qemuarm             | runtime_core-image-sato_qemuarm_20210413152241                     | 35 (55%)     | 0 (0%)    | 29 (45%)   
qemuarm             | sdk_core-image-sato_i686_qemuarm_20210413152241                    | 11 (92%)     | 0 (0%)    | 1 (8%)     
qemuarm             | sdk_core-image-sato_x86_64_qemuarm_20210413161420                  | 11 (92%)     | 0 (0%)    | 1 (8%)     
qemuarm             | sdkext_core-image-minimal_x86_64_qemuarm_20210413161420            | 15 (71%)     | 0 (0%)    | 6 (29%)    
qemuarm             | sdkext_core-image-sato_x86_64_qemuarm_20210413161420               | 15 (71%)     | 0 (0%)    | 6 (29%)    
qemumips-alt        | runtime_core-image-full-cmdline_qemumips_20210413160201            | 18 (30%)     | 0 (0%)    | 43 (70%)   
qemumips-alt        | runtime_core-image-sato-sdk_qemumips_20210413160201                | 53 (87%)     | 0 (0%)    | 8 (13%)    
qemumips-alt        | runtime_core-image-sato_qemumips_20210413160201                    | 43 (70%)     | 0 (0%)    | 18 (30%)   
qemumips64          | oeselftest_debian-9_qemumips64_20210413183842                      | 281606 (95%) | 1927 (1%) | 12178 (4%) 
qemumips64          | runtime_core-image-minimal_qemumips64_20210413162613               | 1 (2%)       | 0 (0%)    | 60 (98%)   
qemumips64          | runtime_core-image-sato-sdk_qemumips64_20210413162613              | 45 (74%)     | 0 (0%)    | 16 (26%)   
qemumips64          | runtime_core-image-sato_qemumips64_20210413162613                  | 35 (57%)     | 0 (0%)    | 26 (43%)   
qemumips64          | sdk_core-image-sato_i686_qemumips64_20210413162613                 | 11 (92%)     | 0 (0%)    | 1 (8%)     
qemumips64          | sdk_core-image-sato_x86_64_qemumips64_20210413182040               | 11 (92%)     | 0 (0%)    | 1 (8%)     
qemumips64          | sdkext_core-image-minimal_x86_64_qemumips64_20210413182040         | 15 (71%)     | 0 (0%)    | 6 (29%)    
qemumips64          | sdkext_core-image-sato_x86_64_qemumips64_20210413182040            | 15 (71%)     | 0 (0%)    | 6 (29%)    
qemumips            | oeselftest_debian-10_qemumips_20210413173729                       | 278985 (96%) | 535 (0%)  | 10993 (4%) 
qemumips            | runtime_core-image-minimal_qemumips_20210413160032                 | 1 (2%)       | 0 (0%)    | 60 (98%)   
qemumips            | runtime_core-image-sato-sdk_qemumips_20210413160032                | 45 (74%)     | 0 (0%)    | 16 (26%)   
qemumips            | runtime_core-image-sato_qemumips_20210413160032                    | 35 (57%)     | 0 (0%)    | 26 (43%)   
qemumips            | sdk_core-image-sato_i686_qemumips_20210413160032                   | 11 (92%)     | 0 (0%)    | 1 (8%)     
qemumips            | sdk_core-image-sato_x86_64_qemumips_20210413172804                 | 11 (92%)     | 0 (0%)    | 1 (8%)     
qemumips            | sdkext_core-image-minimal_x86_64_qemumips_20210413172804           | 15 (71%)     | 0 (0%)    | 6 (29%)    
qemumips            | sdkext_core-image-sato_x86_64_qemumips_20210413172804              | 15 (71%)     | 0 (0%)    | 6 (29%)    
qemuppc-alt         | runtime_core-image-full-cmdline_qemuppc_20210413192910             | 18 (28%)     | 0 (0%)    | 46 (72%)   
qemuppc-alt         | runtime_core-image-sato-sdk_qemuppc_20210413192910                 | 55 (86%)     | 0 (0%)    | 9 (14%)    
qemuppc-alt         | runtime_core-image-sato_qemuppc_20210413192910                     | 43 (67%)     | 0 (0%)    | 21 (33%)   
qemuppc             | oeselftest_ubuntu-18.04_qemuppc_20210413171738                     | 260928 (96%) | 247 (0%)  | 10861 (4%) 
qemuppc             | runtime_core-image-minimal_qemuppc_20210413161531                  | 1 (2%)       | 0 (0%)    | 63 (98%)   
qemuppc             | runtime_core-image-sato-sdk_qemuppc_20210413161531                 | 47 (73%)     | 0 (0%)    | 17 (27%)   
qemuppc             | runtime_core-image-sato_qemuppc_20210413161531                     | 35 (55%)     | 0 (0%)    | 29 (45%)   
qemuppc             | sdk_core-image-sato_i686_qemuppc_20210413161531                    | 11 (92%)     | 0 (0%)    | 1 (8%)     
qemuppc             | sdk_core-image-sato_x86_64_qemuppc_20210413170743                  | 11 (92%)     | 0 (0%)    | 1 (8%)     
qemuppc             | sdkext_core-image-minimal_x86_64_qemuppc_20210413170743            | 15 (71%)     | 0 (0%)    | 6 (29%)    
qemuppc             | sdkext_core-image-sato_x86_64_qemuppc_20210413170743               | 15 (71%)     | 0 (0%)    | 6 (29%)    
qemux86-64-alt      | runtime_core-image-full-cmdline_qemux86-64_20210413162915          | 18 (28%)     | 0 (0%)    | 46 (72%)   
qemux86-64-alt      | runtime_core-image-sato-sdk_qemux86-64_20210413162915              | 55 (86%)     | 0 (0%)    | 9 (14%)    
qemux86-64-alt      | runtime_core-image-sato_qemux86-64_20210413162915                  | 43 (67%)     | 0 (0%)    | 21 (33%)   
qemux86-64-ltp      | runtime_core-image-sato_qemux86-64_20210413163407                  | 1888 (97%)   | 52 (3%)   | 0 (0%)     
qemux86-64-ptest    | runtime_core-image-sato-sdk-ptest_qemux86-64_20210413165207        | 48219 (95%)  | 0 (0%)    | 2471 (5%)  
qemux86-64-x32      | runtime_core-image-minimal_qemux86-64_20210413163637               | 1 (2%)       | 0 (0%)    | 63 (98%)   
qemux86-64-x32      | runtime_core-image-sato_qemux86-64_20210413163703                  | 36 (55%)     | 0 (0%)    | 29 (45%)   
qemux86-64          | oeselftest_debian-10_qemux86-64_20210413164859                     | 245262 (85%) | 145 (0%)  | 43438 (15%)
qemux86-64          | runtime_core-image-minimal_qemux86-64_20210413162440               | 1 (2%)       | 0 (0%)    | 63 (98%)   
qemux86-64          | runtime_core-image-sato-sdk_qemux86-64_20210413162440              | 47 (73%)     | 0 (0%)    | 17 (27%)   
qemux86-64          | runtime_core-image-sato_qemux86-64_20210413162440                  | 35 (55%)     | 0 (0%)    | 29 (45%)   
qemux86-64          | sdk_core-image-sato_i686_qemux86-64_20210413162440                 | 11 (92%)     | 0 (0%)    | 1 (8%)     
qemux86-64          | sdk_core-image-sato_x86_64_qemux86-64_20210413163821               | 11 (92%)     | 0 (0%)    | 1 (8%)     
qemux86-64          | sdkext_core-image-minimal_x86_64_qemux86-64_20210413163821         | 15 (71%)     | 0 (0%)    | 6 (29%)    
qemux86-64          | sdkext_core-image-sato_x86_64_qemux86-64_20210413163821            | 15 (71%)     | 0 (0%)    | 6 (29%)    
qemux86-alt         | runtime_core-image-full-cmdline_qemux86_20210413164648             | 18 (28%)     | 0 (0%)    | 46 (72%)   
qemux86-alt         | runtime_core-image-sato-sdk_qemux86_20210413164648                 | 55 (86%)     | 0 (0%)    | 9 (14%)    
qemux86-alt         | runtime_core-image-sato_qemux86_20210413164648                     | 43 (67%)     | 0 (0%)    | 21 (33%)   
qemux86             | oeselftest_debian-10_qemux86_20210413171448                        | 241003 (85%) | 196 (0%)  | 43695 (15%)
qemux86             | runtime_core-image-minimal_qemux86_20210413163413                  | 1 (2%)       | 0 (0%)    | 63 (98%)   
qemux86             | runtime_core-image-sato-sdk_qemux86_20210413163413                 | 47 (73%)     | 0 (0%)    | 17 (27%)   
qemux86             | runtime_core-image-sato_qemux86_20210413163413                     | 35 (55%)     | 0 (0%)    | 29 (45%)   
qemux86             | sdk_core-image-sato_i686_qemux86_20210413163413                    | 11 (92%)     | 0 (0%)    | 1 (8%)     
qemux86             | sdk_core-image-sato_x86_64_qemux86_20210413170530                  | 11 (92%)     | 0 (0%)    | 1 (8%)     
qemux86             | sdkext_core-image-minimal_x86_64_qemux86_20210413170530            | 15 (71%)     | 0 (0%)    | 6 (29%)    
qemux86             | sdkext_core-image-sato_x86_64_qemux86_20210413170530               | 15 (71%)     | 0 (0%)    | 6 (29%)    
reproducible-centos | oeselftest_centos-8_qemux86-64_20210413144225                      | 1 (100%)     | 0 (0%)    | 0 (0%)     
reproducible-debian | oeselftest_debian-10_qemux86-64_20210413164330                     | 1 (100%)     | 0 (0%)    | 0 (0%)     
reproducible-fedora | oeselftest_fedora-32_qemux86-64_20210413164850                     | 1 (100%)     | 0 (0%)    | 0 (0%)     
reproducible-ubuntu | oeselftest_ubuntu-20.04_qemux86-64_20210413164321                  | 1 (100%)     | 0 (0%)    | 0 (0%)     
skylake             | runtime_core-image-sato-sdk_genericx86-64_20210414051555           | 48 (75%)     | 1 (2%)    | 15 (23%)   
--------------------------------------------------------------------------------------------------------------
Total               | 143                                                                | 1947074      | 3876      | 150874     
--------------------------------------------------------------------------------------------------------------

==============================================================================================================
qemux86 PTest Result Summary
==============================================================================================================
--------------------------------------------------------------------------------------------------------------
Recipe                       | Passed       | Failed    | Skipped     | Time(s)   
--------------------------------------------------------------------------------------------------------------
binutils                     | 213          | 2         | 8           | -
binutils-gas                 | 1288         | 0         | 0           | -
binutils-ld                  | 1426         | 1         | 315         | -
gcc                          | 106646       | 66        | 24598       | -
gcc-g++                      | 117349       | 39        | 12641       | -
gcc-libatomic                | 22           | 1         | 27          | -
gcc-libgomp                  | 1141         | 1         | 1333        | -
gcc-libitm                   | 23           | 1         | 23          | -
gcc-libstdc++-v3             | 7782         | 32        | 4742        | -
glibc                        | 5099         | 53        | 7           | -
--------------------------------------------------------------------------------------------------------------

==============================================================================================================
qemumips64 PTest Result Summary
==============================================================================================================
--------------------------------------------------------------------------------------------------------------
Recipe                       | Passed       | Failed    | Skipped     | Time(s)   
--------------------------------------------------------------------------------------------------------------
binutils                     | 227          | 2         | 11          | -
binutils-gas                 | 7211         | 43        | 2           | -
binutils-ld                  | 1494         | 83        | 229         | -
gcc-g++-user                 | 124175       | 17        | 6307        | -
gcc-libatomic-user           | 54           | 0         | 0           | -
gcc-libgomp-user             | 2259         | 4         | 264         | -
gcc-libstdc++-v3-user        | 12138        | 16        | 720         | -
gcc-user                     | 130237       | 494       | 4611        | -
glibc-user                   | 3798         | 1268      | 32          | -
--------------------------------------------------------------------------------------------------------------

==============================================================================================================
qemuppc PTest Result Summary
==============================================================================================================
--------------------------------------------------------------------------------------------------------------
Recipe                       | Passed       | Failed    | Skipped     | Time(s)   
--------------------------------------------------------------------------------------------------------------
binutils                     | 201          | 2         | 11          | -
binutils-gas                 | 276          | 1         | 2           | -
binutils-ld                  | 1194         | 1         | 321         | -
gcc-g++-user                 | 123266       | 0         | 6111        | -
gcc-libatomic-user           | 44           | 0         | 5           | -
gcc-libgomp-user             | 2261         | 2         | 264         | -
gcc-libitm-user              | 44           | 0         | 2           | -
gcc-libstdc++-v3-user        | 12385        | 9         | 696         | -
gcc-user                     | 116748       | 128       | 3409        | -
glibc-user                   | 4495         | 104       | 39          | -
--------------------------------------------------------------------------------------------------------------

==============================================================================================================
qemux86-64 PTest Result Summary
==============================================================================================================
--------------------------------------------------------------------------------------------------------------
Recipe                       | Passed       | Failed    | Skipped     | Time(s)   
--------------------------------------------------------------------------------------------------------------
acl                          | 13           | 0         | 0           | 5
apr                          | 44           | 0         | 0           | 35
apr-util                     | 19           | 0         | 0           | 8
attr                         | 2            | 0         | 0           | 0
babeltrace                   | 215          | 0         | 0           | 13
babeltrace2                  | 1277         | 0         | 0           | 36
binutils                     | 250          | 2         | 8           | -
binutils-gas                 | 1288         | 0         | 0           | -
binutils-ld                  | 1913         | 1         | 234         | -
bluez5                       | 25           | 0         | 0           | 8
busybox                      | 539          | 0         | 82          | 4
bzip2                        | 6            | 0         | 0           | 1
coreutils                    | 487          | 0         | 127         | 127
dbus-test                    | 21           | 0         | 0           | 20
diffstat                     | 439          | 0         | 0           | 3
diffutils                    | 20           | 0         | 0           | 1
e2fsprogs                    | 356          | 0         | 8           | 128
elfutils                     | 206          | 0         | 6           | 42
ethtool                      | 2            | 0         | 0           | 0
flex                         | 114          | 0         | 0           | 6
gawk                         | 424          | 0         | 10          | 21
gcc                          | 108681       | 29        | 24340       | -
gcc-g++                      | 118978       | 24        | 12714       | -
gcc-libatomic                | 27           | 1         | 27          | -
gcc-libgomp                  | 1141         | 1         | 1333        | -
gcc-libitm                   | 23           | 1         | 23          | -
gcc-libstdc++-v3             | 7782         | 32        | 4742        | -
gdbm                         | 24           | 0         | 0           | 2
gdk-pixbuf                   | 22           | 0         | 0           | 2
gettext                      | 411          | 0         | 21          | 77
glib-2.0                     | 252          | 0         | 0           | 438
glibc                        | 5165         | 54        | 16          | -
gstreamer1.0                 | 102          | 0         | 0           | 120
gzip                         | 22           | 0         | 0           | 4
json-glib                    | 14           | 0         | 0           | 2
kbd                          | 34           | 0         | 0           | 2
libconvert-asn1-perl         | 22           | 0         | 0           | 4
liberror-perl                | 15           | 0         | 0           | 2
libevent                     | 298          | 0         | 16          | 79
libmodule-build-perl         | 53           | 0         | 0           | 83
libpcre                      | 3            | 0         | 0           | 4
libtest-needs-perl           | 1            | 0         | 1           | 8
libtimedate-perl             | 5            | 0         | 0           | 1
liburi-perl                  | 40           | 0         | 1           | 28
libusb1                      | 4            | 0         | 0           | 10
libxml-namespacesupport-perl | 1            | 0         | 0           | 1
libxml-parser-perl           | 15           | 0         | 0           | 3
libxml-perl                  | 6            | 0         | 0           | 1
libxml-sax-base-perl         | 18           | 0         | 1           | 2
libxml-sax-perl              | 16           | 0         | 0           | 4
libxml-simple-perl           | 10           | 0         | 4           | 17
libxml2                      | 134          | 0         | 0           | 35
lttng-tools                  | 5572         | 0         | 411         | 1314
lzo                          | 5            | 0         | 0           | 4
m4                           | 153          | 0         | 17          | 6
nettle                       | 98           | 0         | 2           | 10
openssh                      | 70           | 0         | 3           | 1010
openssl                      | 150          | 0         | 8           | 151
opkg                         | 94           | 0         | 0           | 12
pango                        | 18           | 0         | 0           | 2
parted                       | 64           | 0         | 21          | 27
perl                         | 2422         | 0         | 233         | 1243
python3                      | 32075        | 0         | 1117        | 1286
quilt                        | 60           | 0         | 0           | 37
sed                          | 62           | 0         | 5           | 16
slang                        | 97           | 0         | 0           | 23
strace                       | 567          | 0         | 163         | 760
tcl                          | 150          | 0         | 0           | 204
util-linux                   | 124          | 0         | 176         | 17
valgrind                     | 680          | 0         | 37          | 1338
wayland                      | 23           | 0         | 0           | 6
zlib                         | 1            | 0         | 0           | 0
--------------------------------------------------------------------------------------------------------------

==============================================================================================================
qemuarm PTest Result Summary
==============================================================================================================
--------------------------------------------------------------------------------------------------------------
Recipe                       | Passed       | Failed    | Skipped     | Time(s)   
--------------------------------------------------------------------------------------------------------------
binutils                     | 209          | 2         | 11          | -
binutils-gas                 | 1127         | 0         | 3           | -
binutils-ld                  | 1377         | 7         | 219         | -
gcc-g++-user                 | 122425       | 4         | 6194        | -
gcc-libatomic-user           | 44           | 0         | 5           | -
gcc-libgomp-user             | 2263         | 0         | 264         | -
gcc-libitm-user              | 44           | 0         | 2           | -
gcc-libstdc++-v3-user        | 12160        | 10        | 712         | -
gcc-user                     | 119075       | 11        | 4299        | -
glibc-user                   | 4498         | 87        | 36          | -
--------------------------------------------------------------------------------------------------------------

==============================================================================================================
qemumips PTest Result Summary
==============================================================================================================
--------------------------------------------------------------------------------------------------------------
Recipe                       | Passed       | Failed    | Skipped     | Time(s)   
--------------------------------------------------------------------------------------------------------------
binutils                     | 228          | 2         | 11          | -
binutils-gas                 | 7230         | 0         | 2           | -
binutils-ld                  | 1549         | 30        | 227         | -
gcc-g++-user                 | 122127       | 23        | 6283        | -
gcc-libatomic-user           | 44           | 0         | 5           | -
gcc-libgomp-user             | 2261         | 2         | 264         | -
gcc-libstdc++-v3-user        | 12140        | 14        | 720         | -
gcc-user                     | 128946       | 368       | 3443        | -
glibc-user                   | 4447         | 96        | 36          | -
--------------------------------------------------------------------------------------------------------------

==============================================================================================================
qemuarm64 PTest Result Summary
==============================================================================================================
--------------------------------------------------------------------------------------------------------------
Recipe                       | Passed       | Failed    | Skipped     | Time(s)   
--------------------------------------------------------------------------------------------------------------
acl                          | 13           | 0         | 0           | 6
apr                          | 44           | 0         | 0           | 37
apr-util                     | 19           | 0         | 0           | 7
attr                         | 2            | 0         | 0           | 1
babeltrace                   | 215          | 0         | 0           | 18
babeltrace2                  | 1277         | 0         | 0           | 65
binutils                     | 209          | 2         | 11          | -
binutils-gas                 | 479          | 0         | 0           | -
binutils-ld                  | 1317         | 1         | 315         | -
bluez5                       | 25           | 0         | 0           | 8
busybox                      | 539          | 0         | 82          | 6
bzip2                        | 6            | 0         | 0           | 0
coreutils                    | 487          | 0         | 127         | 160
dbus-test                    | 21           | 0         | 0           | 32
diffstat                     | 439          | 0         | 0           | 4
diffutils                    | 20           | 0         | 0           | 2
e2fsprogs                    | 356          | 0         | 8           | 137
elfutils                     | 205          | 0         | 7           | 43
ethtool                      | 2            | 0         | 0           | 0
flex                         | 114          | 0         | 0           | 2
gawk                         | 424          | 0         | 10          | 23
gcc-g++-user                 | 122953       | 3         | 6202        | -
gcc-libatomic-user           | 54           | 0         | 0           | -
gcc-libgomp-user             | 2255         | 8         | 264         | -
gcc-libitm-user              | 44           | 0         | 2           | -
gcc-libstdc++-v3-user        | 12163        | 9         | 711         | -
gcc-user                     | 127345       | 381       | 2574        | -
gdbm                         | 24           | 0         | 0           | 1
gdk-pixbuf                   | 22           | 0         | 0           | 4
gettext                      | 411          | 0         | 21          | 79
glib-2.0                     | 252          | 0         | 0           | 407
glibc-user                   | 5009         | 96        | 36          | -
gstreamer1.0                 | 104          | 0         | 0           | 96
gzip                         | 22           | 0         | 0           | 4
json-glib                    | 14           | 0         | 0           | 1
kbd                          | 34           | 0         | 0           | 1
libconvert-asn1-perl         | 22           | 0         | 0           | 2
liberror-perl                | 15           | 0         | 0           | 2
libevent                     | 298          | 0         | 16          | 81
libmodule-build-perl         | 53           | 0         | 0           | 98
libpcre                      | 3            | 0         | 0           | 2
libtest-needs-perl           | 1            | 0         | 1           | 7
libtimedate-perl             | 5            | 0         | 0           | 1
liburi-perl                  | 40           | 0         | 1           | 25
libusb1                      | 4            | 0         | 0           | 13
libxml-namespacesupport-perl | 1            | 0         | 0           | 0
libxml-parser-perl           | 15           | 0         | 0           | 2
libxml-perl                  | 6            | 0         | 0           | 1
libxml-sax-base-perl         | 18           | 0         | 1           | 2
libxml-sax-perl              | 16           | 0         | 0           | 3
libxml-simple-perl           | 10           | 0         | 4           | 16
libxml2                      | 134          | 0         | 0           | 29
lttng-tools                  | 5572         | 0         | 411         | 1499
lzo                          | 5            | 0         | 0           | 4
m4                           | 153          | 0         | 17          | 10
nettle                       | 98           | 0         | 2           | 20
openssh                      | 70           | 0         | 3           | 1152
openssl                      | 150          | 0         | 8           | 208
opkg                         | 94           | 0         | 0           | 21
pango                        | 18           | 0         | 0           | 2
parted                       | 53           | 0         | 32          | 38
perl                         | 2422         | 0         | 233         | 1561
python3                      | 32075        | 0         | 1117        | 2459
quilt                        | 60           | 0         | 0           | 72
sed                          | 62           | 0         | 5           | 34
slang                        | 97           | 0         | 0           | 25
strace                       | 521          | 0         | 209         | 912
tcl                          | 150          | 0         | 0           | 236
util-linux                   | 124          | 0         | 176         | 19
valgrind                     | 381          | 0         | 17          | 870
wayland                      | 23           | 0         | 0           | 7
zlib                         | 1            | 0         | 0           | 0
--------------------------------------------------------------------------------------------------------------


==============================================================================================================
qemux86-64 Ltp Test Result Summary
==============================================================================================================
--------------------------------------------------------------------------------------------------------------
Recipe          | Passed       | Failed    | Skipped     | Time(s)   
--------------------------------------------------------------------------------------------------------------
cap_bounds      | 1            | 0         | 0           | 1
commands        | 30           | 1         | 0           | 23
connectors      | 1            | 0         | 0           | 13
containers      | 62           | 18        | 0           | 17
controllers     | 278          | 5         | 0           | 2853
cve             | 28           | 0         | 0           | 744
dio             | 30           | 0         | 0           | 451
fcntl-locktests | 1            | 0         | 0           | 3
filecaps        | 1            | 0         | 0           | 1
fs              | 64           | 0         | 0           | 1101
fs_bind         | 0            | 1         | 0           | 1
fs_perms_simple | 18           | 0         | 0           | 1
fsx             | 1            | 0         | 0           | 1
input           | 6            | 0         | 0           | 2
io              | 2            | 0         | 0           | 1
ipc             | 8            | 0         | 0           | 21
math            | 10           | 0         | 0           | 15
mm              | 47           | 2         | 0           | 234
net.ipv6_lib    | 5            | 1         | 0           | 23
nptl            | 1            | 0         | 0           | 7
pty             | 4            | 0         | 0           | 12
sched           | 9            | 0         | 0           | 164
syscalls        | 1097         | 5         | 0           | 1977
--------------------------------------------------------------------------------------------------------------

==============================================================================================================
qemuarm64 Ltp Test Result Summary
==============================================================================================================
--------------------------------------------------------------------------------------------------------------
Recipe          | Passed       | Failed    | Skipped     | Time(s)   
--------------------------------------------------------------------------------------------------------------
cap_bounds      | 1            | 0         | 0           | 1
commands        | 19           | 19        | 0           | 19
connectors      | 0            | 0         | 0           | 1
containers      | 62           | 18        | 0           | 17
controllers     | 278          | 5         | 0           | 3113
cve             | 27           | 0         | 0           | 731
dio             | 30           | 0         | 0           | 1410
fcntl-locktests | 1            | 0         | 0           | 3
filecaps        | 1            | 0         | 0           | 1
fs              | 63           | 1         | 0           | 1101
fs_bind         | 0            | 1         | 0           | 1
fs_perms_simple | 18           | 0         | 0           | 1
fsx             | 1            | 0         | 0           | 1
input           | 5            | 1         | 0           | 2
io              | 2            | 0         | 0           | 1
ipc             | 8            | 0         | 0           | 21
math            | 10           | 0         | 0           | 24
mm              | 46           | 2         | 0           | 267
net.ipv6_lib    | 5            | 1         | 0           | 22
nptl            | 1            | 0         | 0           | 7
pty             | 4            | 0         | 0           | 12
sched           | 9            | 0         | 0           | 152
syscalls        | 1032         | 77        | 0           | 1966
--------------------------------------------------------------------------------------------------------------


==============================================================================================================
qemux86-64 Ltp Posix Result Summary
==============================================================================================================
--------------------------------------------------------------------------------------------------------------
Recipe | Passed       | Failed    | Skipped     | Time(s)   
--------------------------------------------------------------------------------------------------------------
AIO | 3            | 5         | 0           | 3
MEM | 6            | 3         | 0           | 35
MSG | 11           | 0         | 0           | 68
SEM | 8            | 1         | 0           | 19
SIG | 25           | 0         | 0           | 102
THR | 93           | 3         | 0           | 295
TMR | 20           | 1         | 0           | 776
TPS | 12           | 6         | 0           | 2
--------------------------------------------------------------------------------------------------------------

==============================================================================================================
qemuarm64 Ltp Posix Result Summary
==============================================================================================================
--------------------------------------------------------------------------------------------------------------
Recipe | Passed       | Failed    | Skipped     | Time(s)   
--------------------------------------------------------------------------------------------------------------
AIO | 3            | 5         | 0           | 1
MEM | 6            | 3         | 0           | 24
MSG | 11           | 0         | 0           | 66
SEM | 8            | 1         | 0           | 17
SIG | 25           | 0         | 0           | 88
THR | 92           | 4         | 0           | 286
TMR | 20           | 1         | 0           | 473
TPS | 12           | 6         | 0           | 2
--------------------------------------------------------------------------------------------------------------



==============================================================================================================
Failed test cases (sorted by testseries, ID)
==============================================================================================================
--------------------------------------------------------------------------------------------------------------
testseries | result_id : beaglebone | runtime_core-image-sato-sdk_beaglebone-yocto_20210415025206
    parselogs.ParseLogsTest.test_parselogs
testseries | result_id : beaglebone | runtime_core-image-sato-sdk_beaglebone-yocto_20210415050037
    parselogs.ParseLogsTest.test_parselogs
testseries | result_id : edgerouter | runtime_core-image-sato-sdk_edgerouter_20210414121329
    xorg.XorgTest.test_xorg_running
testseries | result_id : edgerouter | runtime_core-image-sato-sdk_edgerouter_20210414140605
    parselogs.ParseLogsTest.test_parselogs
    systemd.SystemdBasicTests.test_systemd_failed
testseries | result_id : minnowboard | runtime_core-image-sato-sdk_genericx86_20210414044724
    parselogs.ParseLogsTest.test_parselogs
testseries | result_id : nuc7 | runtime_core-image-sato-sdk_genericx86-64_20210415025122
    parselogs.ParseLogsTest.test_parselogs
testseries | result_id : qemuarm64-ltp | runtime_core-image-sato_qemuarm64_20210413190609
    ltpposixresult.TPS.sched_getscheduler
    ltpresult.containers.netns_comm_ip_ipv4_netlink
    ltpposixresult.THR.pthread_rwlock_rdlock
    ltpresult.syscalls.lremovexattr01
    ltpresult.syscalls.preadv203_64
    ltpresult.syscalls.mount03
    ltpresult.syscalls.chown04_16
    ltpresult.controllers.cgroup
    ltpposixresult.THR.pthread_rwlock_unlock
    ltpresult.syscalls.execveat03
    ltpposixresult.AIO.aio_read
    ltpresult.fs.fs_fill
    ltpresult.syscalls.chown04
    ltpresult.syscalls.open12
    ltpresult.syscalls.settimeofday02
    ltpresult.containers.netns_sysfs
    ltpresult.controllers.memcg_max_usage_in_bytes
    ltpresult.syscalls.fgetxattr01
    ltpposixresult.AIO.aio_write
    ltpresult.syscalls.setxattr01
    ltpresult.containers.netns_comm_ip_ipv4_ioctl
    ltpresult.containers.netns_breakns_ip_ipv4_netlink
    ltpresult.syscalls.fanotify06
    ltpresult.syscalls.lchown03_16
    ltpresult.syscalls.kill11
    ltpresult.containers.netns_breakns_ip_ipv4_ioctl
    ltpresult.commands.df01_exfat_sh
    ltpposixresult.MEM.shm_unlink
    ltpresult.syscalls.utime06
    ltpresult.commands.df01_ext3_sh
    ltpposixresult.TPS.sched_setscheduler
    ltpresult.syscalls.preadv03
    ltpresult.commands.mkfs01_ext3_sh
    ltpresult.containers.netns_breakns_ip_ipv6_netlink
    ltpresult.syscalls.mount01
    ltpresult.containers.netns_comm_ip_ipv6_netlink
    ltpresult.commands.mkfs01_minix_sh
    ltpresult.commands.mkfs01_vfat_sh
    ltpresult.syscalls.fallocate05
    ltpposixresult.THR.pthread_cond_broadcast
    ltpresult.containers.netns_comm_ns_exec_ipv6_ioctl
    ltpposixresult.TPS.sched_get_priority_min
    ltpposixresult.TPS.sched_setparam
    ltpposixresult.MEM.shm_open
    ltpresult.containers.netns_netlink
    ltpresult.commands.df01_ntfs_sh
    ltpresult.commands.df01_vfat_sh
    ltpresult.syscalls.fanotify13
    ltpresult.syscalls.statx06
    ltpresult.syscalls.fremovexattr01
    ltpposixresult.SEM.sem_init
    ltpresult.input.input03
    ltpposixresult.MEM.mmap
    ltpresult.containers.netns_comm_ns_exec_ipv6_netlink
    ltpresult.controllers.memcg_usage_in_bytes
    ltpresult.commands.df01_xfs_sh
    ltpresult.containers.netns_comm_ns_exec_ipv4_netlink
    ltpresult.syscalls.fanotify10
    ltpresult.syscalls.umount03
    ltpresult.containers.netns_breakns_ns_exec_ipv6_netlink
    ltpresult.commands.mkfs01_xfs_sh
    ltpresult.commands.mkfs01_btrfs_sh
    ltpresult.syscalls.mount06
    ltpresult.syscalls.fanotify03
    ltpresult.commands.mkfs01_ext2_sh
    ltpresult.syscalls.ioctl06
    ltpresult.syscalls.msync04
    ltpresult.syscalls.sync03
    ltpresult.syscalls.fallocate04
    ltpresult.commands.unshare01_sh
    ltpresult.syscalls.syncfs01
    ltpresult.containers.netns_breakns_ns_exec_ipv6_ioctl
    ltpresult.containers.netns_comm_ns_exec_ipv4_ioctl
    ltpresult.syscalls.settimeofday01
    ltpresult.mm.mtest06
    ltpresult.controllers.memcg_stat
    ltpresult.syscalls.statx04
    ltpresult.syscalls.fanotify14
    ltpresult.syscalls.rename11
    ltpresult.syscalls.fsync01
    ltpposixresult.TMR.clock_getcpuclockid
    ltpresult.syscalls.umount02
    ltpresult.syscalls.copy_file_range01
    ltpresult.syscalls.umount2_01
    ltpresult.syscalls.lchown03
    ltpresult.syscalls.fdatasync03
    ltpresult.syscalls.prctl06
    ltpresult.mm.vma05
    ltpresult.syscalls.readahead02
    ltpresult.commands.mkfs01_ntfs_sh
    ltpresult.syscalls.umount01
    ltpresult.syscalls.sync_file_range02
    ltpresult.syscalls.umount2_03
    ltpresult.syscalls.ioctl05
    ltpresult.syscalls.umount2_02
    ltpresult.syscalls.linkat02
    ltpresult.syscalls.copy_file_range02
    ltpresult.commands.df01_ext2_sh
    ltpresult.syscalls.inotify08
    ltpresult.containers.netns_breakns_ns_exec_ipv4_netlink
    ltpresult.syscalls.ioctl04
    ltpresult.syscalls.renameat01
    ltpresult.commands.mkswap01_sh
    ltpresult.syscalls.fanotify05
    ltpresult.commands.mkfs01_ext4_sh
    ltpresult.commands.mkfs01_msdos_sh
    ltpresult.syscalls.preadv203
    ltpposixresult.TPS.sched_getparam
    ltpposixresult.AIO.aio_return
    ltpresult.fs_bind.BindMounts
    ltpresult.syscalls.fchown04_16
    ltpresult.containers.netns_comm_ip_ipv6_ioctl
    ltpresult.syscalls.mount04
    ltpresult.containers.netns_breakns_ip_ipv6_ioctl
    ltpresult.syscalls.abort01
    ltpresult.net.ipv6_lib.getaddrinfo_01
    ltpresult.syscalls.mknodat02
    ltpresult.syscalls.fchown04
    ltpresult.syscalls.fremovexattr02
    ltpresult.syscalls.statx05
    ltpresult.syscalls.inotify07
    ltpresult.syscalls.mmap16
    ltpresult.syscalls.getxattr04
    ltpresult.syscalls.inotify03
    ltpresult.containers.netns_breakns_ns_exec_ipv4_ioctl
    ltpresult.syscalls.pwritev03
    ltpresult.syscalls.preadv03_64
    ltpresult.syscalls.fanotify01
    ltpposixresult.AIO.aio_error
    ltpresult.syscalls.ftruncate04
    ltpposixresult.THR.pthread_barrier_destroy
    ltpresult.commands.mkfs01_sh
    ltpresult.controllers.memcg_test_3
    ltpresult.syscalls.fanotify15
    ltpresult.syscalls.pwritev03_64
    ltpposixresult.AIO.aio_suspend
    ltpresult.syscalls.fsync04
    ltpresult.syscalls.ftruncate04_64
    ltpposixresult.TPS.sched_get_priority_max
    ltpresult.syscalls.ioctl08
    ltpresult.commands.df01_ext4_sh
    ltpresult.syscalls.mknod07
    ltpresult.syscalls.fsetxattr01
    ltpresult.syscalls.msgstress03
    ltpresult.syscalls.mount02
testseries | result_id : qemuarm64 | oeselftest_ubuntu-18.04_qemuarm64_20210413171856
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_quad_double.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-9.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_20.c compilation,  -O2
    ptestresult.gcc-user.compiler driver --help=warnings option(s): "^ +-.*[^:.]$" absent from output: "  -Wpoison-system-directories Warn for -I and -L options using system directories if cross compiling"
    ptestresult.glibc-user.posix/tst-exec-static
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_complex.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-2.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_24.c compilation,  -O1
    ptestresult.glibc-user.nptl/tst-cond-except
    ptestresult.glibc-user.gmon/tst-gmon-pie-gprof
    ptestresult.glibc-user.malloc/tst-malloc-tcache-leak-mcheck
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-7.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-4.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_22.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_1.c compilation,  -O1
    ptestresult.glibc-user.elf/tst-unused-dep-cmp
    ptestresult.glibc-user.signal/tst-minsigstksz-1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_6.c compilation,  -O1
    ptestresult.binutils./home/pokybuild/yocto-worker/qemuarm64/build/build-st-13545/tmp/work/aarch64-poky-linux/binutils-cross-testsuite/2.34-r0/git/build.aarch64-poky-linux.aarch64-poky-linux/binutils/testsuite/gentestdlls does not exist
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-11.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-8.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_9.c compilation,  -O3 -g
    ptestresult.glibc-user.nptl/tst-cond25
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-3.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_64x1_1.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_10.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-5.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-3.c compilation,  -Og -g
    ptestresult.glibc-user.rt/tst-mqueue7
    ptestresult.gcc-libgomp-user.libgomp.c/../libgomp.c-c++-common/for-12.c execution test
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_10.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_complex.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-6.c compilation,  -O2
    ptestresult.gcc-user.gcc.dg/tree-prof/time-profiler-2.c scan-ipa-dump-times profile "Read tp_first_run: 2" 1
    ptestresult.gcc-user.gcc.target/aarch64/pr79041-2.c (test for excess errors)
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_27.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-9.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_5.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_7.c compilation,  -O3 -g
    ptestresult.glibc-user.misc/tst-personality
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_15.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-2.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-10.c compilation,  -O2
    ptestresult.gcc-libstdc++-v3-user.27_io/objects/char/7.cc execution test
    ptestresult.glibc-user.nptl/tst-robust7
    ptestresult.glibc-user.nptl/tst-stackguard1
    ptestresult.gcc-libgomp-user.libgomp.c/../libgomp.c-c++-common/for-6.c execution test
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-7.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_2.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_14.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_11.c compilation,  -O3 -g
    ptestresult.gcc-libstdc++-v3-user.27_io/basic_filebuf/close/char/9964.cc execution test
    ptestresult.glibc-user.malloc/tst-dynarray-at-fail
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_23.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-12.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_19.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-2.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_9.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_4.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_7.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_6.c compilation,  -O2
    ptestresult.glibc-user.elf/tst-global1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-1.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-11.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_3.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_1.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-9.c compilation,  -Os
    ptestresult.glibc-user.elf/constload1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_1.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_15.c compilation,  -Og -g
    ptestresult.glibc-user.misc/test-errno-linux
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_15.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-12.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_23.c compilation,  -O0
    ptestresult.glibc-user.posix/tst-spawn
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-5.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_27.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_10.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_18.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_13.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_25.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_17.c compilation,  -Og -g
    ptestresult.glibc-user.elf/circleload1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_22.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_18.c compilation,  -O0
    ptestresult.glibc-user.nptl/tst-exec4
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_21.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_complex.c compilation,  -O1
    ptestresult.gcc-user.gcc.dg/gomp/pr89104.c (test for excess errors)
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_18.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-3.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-2.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-10.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-6.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/ldp_stp_6.c scan-assembler stp\td[0-9]+, d[0-9]+, \\[x[0-9]+\\]
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-1.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-5.c compilation,  -O3 -g
    ptestresult.glibc-user.nptl/tst-robust1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-3.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-13.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_27.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.dg/tls/pr78796.c (test for excess errors)
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_3.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_27.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_26.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_quad_double.c compilation,  -O1
    ptestresult.glibc-user.misc/bug18240
    ptestresult.glibc-user.nptl/test-rwlock-printers
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-12.c compilation,  -O1
    ptestresult.glibc-user.elf/tst-protected1b
    ptestresult.glibc-user.support/tst-xsigstack
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_64x1_1.c compilation,  -Os
    ptestresult.glibc-user.elf/tst-ptrguard1-static
    ptestresult.binutils-ld.pr25355.o
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_3.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-2.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_25.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-2.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_2.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/pr63304_1.c (test for excess errors)
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-13.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_16.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-6.c compilation,  -Og -g
    ptestresult.glibc-user.nptl/tst-cond24
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_22.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-8.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/sve/peel_ind_3.c -march=armv8.2-a+sve  scan-assembler \\t(adrp|adr)\\tx[0-9]+, x\\n
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-8.c compilation,  -O2
    ptestresult.glibc-user.libio/tst-vtables
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-3.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-6.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_3.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-14.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_24.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/reload-valid-spoff.c (test for excess errors)
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_9.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_13.c compilation,  -O2
    ptestresult.glibc-user.rt/tst-mqueue6
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-16.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/lsl_asr_sbfiz.c scan-assembler sbfiz\tw
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_17.c compilation,  -O1
    ptestresult.glibc-user.elf/resolvfail
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-13.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-12.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_23.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_24.c compilation,  -O0
    ptestresult.gcc-libstdc++-v3-user.27_io/objects/wchar_t/9661-1.cc execution test
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_24.c compilation,  -Os
    ptestresult.glibc-user.malloc/tst-mallocfork2-mcheck
    ptestresult.glibc-user.elf/dblload
    ptestresult.glibc-user.misc/tst-memfd_create
    ptestresult.gcc-user.gcc.target/aarch64/insv_1.c scan-assembler movk\tx[0-9]+, 0x1d6b, lsl 32
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-10.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-11.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-8.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-3.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-2.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-7.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_4.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-12.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-10.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-9.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-7.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_25.c compilation,  -O2
    ptestresult.gcc-g++-user.g++.dg/other/anon5.C  -std=gnu++98 (test for excess errors)
    ptestresult.glibc-user.posix/test-errno
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_64x1_1.c compilation,  -O2
    ptestresult.glibc-user.elf/tst-stackguard1
    ptestresult.glibc-user.gmon/tst-gmon-gprof
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-15.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_5.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_16.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-12.c compilation,  -Os
    ptestresult.glibc-user.nptl/tst-align-clone
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_24.c compilation,  -Og -g
    ptestresult.glibc-user.nptl/tst-cancelx7
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-5.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-4.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_17.c compilation,  -O3 -g
    ptestresult.glibc-user.nptl/tst-robust8
    ptestresult.gcc-libgomp-user.libgomp.c++/../libgomp.c-c++-common/for-5.c execution test
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_quad_double.c compilation,  -O0
    ptestresult.gcc-user.gcc.dg/tree-prof/time-profiler-2.c scan-ipa-dump-times profile "Read tp_first_run: 3" 1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-11.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_int128.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-15.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-5.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-1.c compilation,  -O3 -g
    ptestresult.glibc-user.elf/tst-main1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_quad_double.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_9.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-14.c compilation,  -O2
    ptestresult.glibc-user.nptl/tst-stackguard1-static
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-9.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_10.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_64x1_1.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_4.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-6.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_20.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-15.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-6.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-3.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_11.c compilation,  -O2
    ptestresult.glibc-user.timezone/tst-tzset
    ptestresult.gcc-libstdc++-v3-user.27_io/basic_filebuf/underflow/char/10097.cc execution test
    ptestresult.gcc-libgomp-user.libgomp.c++/../libgomp.c-c++-common/for-11.c execution test
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_23.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_26.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/pr78733.c (test for excess errors)
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-1.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_21.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-4.c compilation,  -O3 -g
    ptestresult.glibc-user.elf/tst-protected1a
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_14.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-8.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_18.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-2.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_11.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_1.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-10.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.dg/tree-prof/time-profiler-2.c scan-ipa-dump-times profile "Read tp_first_run: 0" 2
    ptestresult.glibc-user.signal/tst-minsigstksz-4
    ptestresult.gcc-libgomp-user.libgomp.c++/../libgomp.c-c++-common/for-12.c execution test
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_7.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-4.c compilation,  -Os
    ptestresult.glibc-user.rt/tst-mqueue3
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_2.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-13.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_21.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_26.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_21.c compilation,  -O2
    ptestresult.glibc-user.nptl/test-mutexattr-printers
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-4.c compilation,  -O2
    ptestresult.gcc-libstdc++-v3-user.libstdc++-abi/abi_check
    ptestresult.glibc-user.nptl/test-condattr-printers
    ptestresult.gcc-user.gcc.target/aarch64/fuse_adrp_add_1.c scan-assembler adrp\tx.*, fixed_regs\n\tadd\tx.*, x.*fixed_regs
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-4.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_20.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-3.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-2.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_2.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-5.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/sve/tls_preserve_1.c -march=armv8.2-a+sve  scan-assembler-not \\tst[rp]\\t[dqv]
    ptestresult.gcc-g++-user.g++.dg/other/anon5.C  -std=gnu++17 (test for excess errors)
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_64x1_1.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_int128.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_22.c compilation,  -O2
    ptestresult.glibc-user.nptl/tst-robust-fork
    ptestresult.gcc-user.gcc.target/aarch64/sve/nopeel_1.c -march=armv8.2-a+sve  scan-assembler-not [wx][0-9]*, \\[
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-3.c compilation,  -O3 -g
    ptestresult.gcc-libgomp-user.libgomp.c/../libgomp.c-c++-common/for-5.c execution test
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-10.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_1.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-7.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_17.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-1.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_12.c compilation,  -O2
    ptestresult.glibc-user.posix/tst-spawn-static
    ptestresult.gcc-g++-user.g++.dg/other/anon5.C  -std=gnu++14 (test for excess errors)
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-15.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_17.c compilation,  -O0
    ptestresult.glibc-user.sysvipc/test-sysvsem
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_8.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_7.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_complex.c compilation,  -Os
    ptestresult.glibc-user.elf/lateglobal
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-6.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-5.c compilation,  -Og -g
    ptestresult.glibc-user.elf/reldep6
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-10.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-4.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-11.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_8.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-10.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_26.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-16.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_23.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-16.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_14.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_21.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-7.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_7.c compilation,  -O2
    ptestresult.gcc-libstdc++-v3-user.27_io/basic_filebuf/close/char/4879.cc execution test
    ptestresult.glibc-user.malloc/tst-malloc_info-mcheck
    ptestresult.glibc-user.nptl/tst-setuid3
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_19.c compilation,  -O2
    ptestresult.glibc-user.malloc/tst-mallocfork2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-9.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_5.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_6.c compilation,  -Og -g
    ptestresult.glibc-user.nptl/tst-mutex10
    ptestresult.glibc-user.elf/tst-env-setuid
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-4.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-7.c compilation,  -Og -g
    ptestresult.glibc-user.nptl/tst-robust9
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-9.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_4.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_quad_double.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-9.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-3.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-6.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/sve/slp_1.c -march=armv8.2-a+sve  scan-assembler-not \\tldr
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_11.c compilation,  -Og -g
    ptestresult.gcc-libstdc++-v3-user.27_io/objects/wchar_t/7.cc execution test
    ptestresult.glibc-user.rt/tst-mqueue5
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_12.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-8.c compilation,  -Os
    ptestresult.glibc-user.nptl/test-cond-printers
    ptestresult.gcc-user.gcc.target/aarch64/vec_init_1.c scan-assembler-times ins\\t 2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_1.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_13.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-10.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_26.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_5.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-10.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_3.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_2.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_14.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_12.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_18.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_14.c compilation,  -Og -g
    ptestresult.glibc-user.nptl/tst-robust6
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-5.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_14.c compilation,  -O2
    ptestresult.glibc-user.misc/tst-clone3
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-6.c compilation,  -O0
    ptestresult.glibc-user.support/tst-support_capture_subprocess
    ptestresult.glibc-user.posix/tst-exec
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-8.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-3.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_22.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-1.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_8.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_8.c compilation,  -Os
    ptestresult.gcc-libstdc++-v3-user.27_io/objects/char/9661-1.cc execution test
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_12.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-4.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-1.c compilation,  -O3 -g
    ptestresult.glibc-user.posix/tst-spawn4
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-16.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-11.c compilation,  -Os
    ptestresult.glibc-user.misc/tst-clone2
    ptestresult.glibc-user.posix/tst-execvpe5
    ptestresult.glibc-user.elf/tst-unused-dep
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-9.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-11.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_12.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_int128.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_19.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_16.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_10.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_18.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-1.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-1.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_19.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-12.c compilation,  -Og -g
    ptestresult.glibc-user.nptl/tst-robust4
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-4.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/pr63304_1.c scan-assembler-times adrp 6
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_2.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-14.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_24.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_25.c compilation,  -O0
    ptestresult.glibc-user.nptl/tst-cancel7
    ptestresult.glibc-user.iconv/tst-iconv_prog
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_27.c compilation,  -Os
    ptestresult.glibc-user.nptl/test-mutex-printers
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_25.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-12.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_13.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-14.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-5.c compilation,  -O1
    ptestresult.glibc-user.stdlib/tst-secure-getenv
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_13.c compilation,  -O0
    ptestresult.glibc-user.posix/tst-posix_spawn-setsid
    ptestresult.gcc-libgomp-user.libgomp.c++/../libgomp.c-c++-common/for-6.c execution test
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_17.c compilation,  -Os
    ptestresult.glibc-user.nptl/tst-oddstacklimit
    ptestresult.glibc-user.malloc/tst-mxfast
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-8.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_21.c compilation,  -O1
    ptestresult.glibc-user.nptl/test-rwlockattr-printers
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_5.c compilation,  -O1
    ptestresult.glibc-user.nptl/tst-create-detached
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_8.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/sve/slp_1.c -march=armv8.2-a+sve  scan-assembler-times \\tstr 2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-7.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-4.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-9.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-13.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_complex.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_8.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-16.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_complex.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-5.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_6.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-6.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_23.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-8.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_20.c compilation,  -Os
    ptestresult.glibc-user.nptl/tst-robust3
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_6.c compilation,  -Os
    ptestresult.glibc-user.signal/tst-minsigstksz-2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_4.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_11.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-11.c compilation,  -Og -g
    ptestresult.glibc-user.signal/tst-minsigstksz-3a
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-9.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_6.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_9.c compilation,  -Og -g
    ptestresult.glibc-user.malloc/tst-malloc-thread-fail
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-2.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_16.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/sve/peel_ind_1.c -march=armv8.2-a+sve  scan-assembler \\t(adrp|adr)\\tx[0-9]+, x\\n
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_15.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-14.c compilation,  -O0
    ptestresult.glibc-user.nptl/tst-robust2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-7.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-2.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_19.c compilation,  -O1
    ptestresult.binutils.dotnet-assemblies (ordinary x86 DLL)
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-12.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_16.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-7.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-1.c compilation,  -O1
    ptestresult.glibc-user.nptl/tst-getpid1
    ptestresult.glibc-user.elf/tst-env-setuid-tunables
    ptestresult.gcc-user.gcc.target/aarch64/insv_1.c scan-assembler bfi\tx[0-9]+, x[0-9]+, 16, 5
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_11.c compilation,  -O1
    ptestresult.glibc-user.elf/tst-ifunc-fault-lazy
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-8.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_int128.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_7.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_10.c compilation,  -Os
    ptestresult.glibc-user.elf/tst-ifunc-fault-bindnow
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_20.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/pr70120-2.c (test for excess errors)
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-10.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-8.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/sve/peel_ind_2.c -march=armv8.2-a+sve  scan-assembler \\t(adrp|adr)\\tx[0-9]+, x\\n
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_int128.c compilation,  -Og -g
    ptestresult.glibc-user.elf/dblunload
    ptestresult.glibc-user.malloc/tst-malloc-tcache-leak
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_9.c compilation,  -O1
    ptestresult.glibc-user.malloc/tst-malloc-usable-tunables
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_25.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_13.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-5.c compilation,  -O2
    ptestresult.gcc-libgomp-user.libgomp.c/../libgomp.c-c++-common/for-11.c execution test
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-13.c compilation,  -Og -g
    ptestresult.glibc-user.elf/tst-stackguard1-static
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_22.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_int128.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/insv_1.c scan-assembler bfi\tx[0-9]+, x[0-9]+, 0, 8
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-12.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-6.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_27.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-11.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-11.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_20.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_16.c compilation,  -O2
    ptestresult.gcc-libstdc++-v3-user.27_io/basic_filebuf/seekoff/char/26777.cc execution test
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-15.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-4.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-7.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_3.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_15.c compilation,  -O1
    ptestresult.glibc-user.gmon/tst-gmon-static-gprof
    ptestresult.gcc-user.gcc.target/aarch64/vect-add-sub-cond.c scan-assembler-not \tld[^\t]*\t[wx]
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-1.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-11.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-6.c compilation,  -O1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-5.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-12.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-3.c compilation,  -Os
    ptestresult.glibc-user.gmon/tst-gmon
    ptestresult.glibc-user.elf/tst-ptrguard1
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-15.c compilation,  -Os
    ptestresult.glibc-user.nptl/tst-robust5
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_19.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-8.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-14.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_64x1_1.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_4.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-2.c compilation,  -Og -g
    ptestresult.glibc-user.posix/tst-spawn2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_5.c compilation,  -O2
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-16.c compilation,  -Os
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-11.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_quad_double.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_12.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-9.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-12.c compilation,  -O2
    ptestresult.glibc-user.elf/tst-prelink-cmp
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-7.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_26.c compilation,  -Og -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/va_arg-1.c compilation,  -O0
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_align-10.c compilation,  -O3 -g
    ptestresult.gcc-user.gcc.target/aarch64/aapcs64/test_15.c compilation,  -O3 -g
    ptestresult.glibc-user.signal/tst-minsigstksz-3
testseries | result_id : qemuarm | oeselftest_ubuntu-20.04_qemuarm_20210413162640
    ptestresult.gcc-user.compiler driver --help=warnings option(s): "^ +-.*[^:.]$" absent from output: "  -Wpoison-system-directories Warn for -I and -L options using system directories if cross compiling"
    ptestresult.glibc-user.posix/tst-exec-static
    ptestresult.glibc-user.nptl/tst-cond-except
    ptestresult.glibc-user.gmon/tst-gmon-pie-gprof
    ptestresult.glibc-user.malloc/tst-malloc-tcache-leak-mcheck
    ptestresult.glibc-user.dirent/list
    ptestresult.binutils-ld.visibility (hidden_undef) (non PIC, load offset)
    ptestresult.glibc-user.nptl/tst-cond25
    ptestresult.glibc-user.rt/tst-mqueue7
    ptestresult.gcc-user.gcc.dg/tree-prof/time-profiler-2.c scan-ipa-dump-times profile "Read tp_first_run: 2" 1
    ptestresult.gcc-libstdc++-v3-user.27_io/objects/char/7.cc execution test
    ptestresult.gcc-g++-user.g++.dg/lto/pr65276 cp_lto_pr65276_0.o-cp_lto_pr65276_1.o link, -flto -O0 -std=c++11
    ptestresult.glibc-user.nptl/tst-stackguard1
    ptestresult.gcc-libstdc++-v3-user.27_io/basic_filebuf/close/char/9964.cc execution test
    ptestresult.glibc-user.malloc/tst-dynarray-at-fail
    ptestresult.binutils-ld.visibility (protected_undef) (non PIC, load offset)
    ptestresult.glibc-user.elf/tst-global1
    ptestresult.glibc-user.misc/test-errno-linux
    ptestresult.glibc-user.posix/tst-spawn
    ptestresult.glibc-user.nptl/tst-exec4
    ptestresult.glibc-user.elf/lateglobal
    ptestresult.binutils-ld.visibility (hidden_undef) (PIC main, non PIC so)
    ptestresult.glibc-user.nptl/test-rwlock-printers
    ptestresult.glibc-user.elf/tst-protected1b
    ptestresult.glibc-user.elf/tst-ptrguard1-static
    ptestresult.binutils-ld.pr25355.o
    ptestresult.gcc-user.gcc.target/arm/polytypes.c  (test for warnings, line 31)
    ptestresult.glibc-user.libio/tst-vtables
    ptestresult.glibc-user.rt/tst-mqueue6
    ptestresult.glibc-user.elf/resolvfail
    ptestresult.glibc-user.malloc/tst-dynarray-fail
    ptestresult.gcc-libstdc++-v3-user.27_io/objects/wchar_t/9661-1.cc execution test
    ptestresult.glibc-user.malloc/tst-mallocfork2-mcheck
    ptestresult.glibc-user.elf/dblload
    ptestresult.glibc-user.misc/tst-memfd_create
    ptestresult.glibc-user.dirent/tst-scandir
    ptestresult.glibc-user.posix/test-errno
    ptestresult.glibc-user.elf/tst-stackguard1
    ptestresult.glibc-user.gmon/tst-gmon-gprof
    ptestresult.glibc-user.nptl/tst-cond24
    ptestresult.glibc-user.nptl/tst-align-clone
    ptestresult.glibc-user.nptl/tst-cancelx7
    ptestresult.gcc-user.gcc.dg/tree-prof/time-profiler-2.c scan-ipa-dump-times profile "Read tp_first_run: 3" 1
    ptestresult.glibc-user.nptl/tst-stackguard1-static
    ptestresult.glibc-user.malloc/tst-malloc-usable-tunables
    ptestresult.binutils-ld.visibility (protected_undef) (PIC main, non PIC so)
    ptestresult.glibc-user.nptl/tst-thread-affinity-pthread2
    ptestresult.glibc-user.sysvipc/test-sysvsem
    ptestresult.glibc-user.support/tst-support_blob_repeat
    ptestresult.glibc-user.timezone/tst-tzset
    ptestresult.gcc-libstdc++-v3-user.27_io/basic_filebuf/underflow/char/10097.cc execution test
    ptestresult.glibc-user.elf/tst-env-setuid
    ptestresult.glibc-user.elf/tst-protected1a
    ptestresult.glibc-user.nptl/test-rwlockattr-printers
    ptestresult.gcc-user.gcc.target/arm/eliminate.c scan-assembler-times r0,[\\t ]*sp 3
    ptestresult.gcc-user.gcc.dg/tree-prof/time-profiler-2.c scan-ipa-dump-times profile "Read tp_first_run: 0" 2
    ptestresult.gcc-user.gcc.target/arm/lto/pr61123-enum-size c_lto_pr61123-enum-size_0.o-c_lto_pr61123-enum-size_1.o link,  -fno-short-enums -Wl,-Ur,--no-enum-size-warning -Os -nostdlib -flto
    ptestresult.glibc-user.rt/tst-mqueue3
    ptestresult.glibc-user.nptl/test-mutexattr-printers
    ptestresult.glibc-user.nptl/test-condattr-printers
    ptestresult.gcc-g++-user.g++.dg/other/anon5.C  -std=gnu++17 (test for excess errors)
    ptestresult.glibc-user.nptl/tst-robust-fork
    ptestresult.glibc-user.posix/tst-spawn-static
    ptestresult.gcc-g++-user.g++.dg/other/anon5.C  -std=gnu++14 (test for excess errors)
    ptestresult.binutils-ld.visibility (protected_undef) (non PIC)
    ptestresult.glibc-user.elf/reldep6
    ptestresult.gcc-user.gcc.target/arm/addr-modes-float.c scan-assembler vst3.8\t{d[02468], d[02468], d[02468]}, \\[r[0-9]+\\]!
    ptestresult.glibc-user.elf/tst-stackguard1-static
    ptestresult.gcc-libstdc++-v3-user.27_io/basic_filebuf/close/char/4879.cc execution test
    ptestresult.glibc-user.nptl/tst-setuid3
    ptestresult.glibc-user.malloc/tst-mallocfork2
    ptestresult.glibc-user.nptl/tst-stack4
    ptestresult.glibc-user.nptl/tst-mutex10
    ptestresult.gcc-libstdc++-v3-user.27_io/objects/wchar_t/7.cc execution test
    ptestresult.glibc-user.rt/tst-mqueue5
    ptestresult.glibc-user.nptl/test-cond-printers
    ptestresult.glibc-user.io/tst-fts-lfs
    ptestresult.glibc-user.misc/tst-clone3
    ptestresult.binutils-ld.visibility (hidden_undef) (non PIC)
    ptestresult.glibc-user.support/tst-support_capture_subprocess
    ptestresult.glibc-user.io/tst-fts
    ptestresult.glibc-user.resolv/tst-resolv-basic
    ptestresult.gcc-libstdc++-v3-user.27_io/objects/char/9661-1.cc execution test
    ptestresult.glibc-user.posix/tst-spawn4
    ptestresult.glibc-user.misc/tst-clone2
    ptestresult.glibc-user.elf/tst-unused-dep
    ptestresult.glibc-user.nptl/tst-cancel7
    ptestresult.glibc-user.iconv/tst-iconv_prog
    ptestresult.glibc-user.nptl/test-mutex-printers
    ptestresult.glibc-user.elf/constload1
    ptestresult.glibc-user.stdlib/tst-secure-getenv
    ptestresult.gcc-user.gcc.target/arm/pr43920-2.c scan-assembler-times pop 2
    ptestresult.glibc-user.posix/tst-posix_spawn-setsid
    ptestresult.glibc-user.nptl/tst-oddstacklimit
    ptestresult.glibc-user.malloc/tst-mxfast
    ptestresult.glibc-user.nptl/tst-create-detached
    ptestresult.glibc-user.malloc/tst-malloc-thread-fail-mcheck
    ptestresult.gcc-user.gcc.target/arm/pr51968.c (test for excess errors)
    ptestresult.glibc-user.posix/tst-execvpe5
    ptestresult.glibc-user.malloc/tst-malloc-thread-fail
    ptestresult.binutils.dotnet-assemblies (ordinary x86 DLL)
    ptestresult.glibc-user.nptl/tst-getpid1
    ptestresult.glibc-user.elf/tst-env-setuid-tunables
    ptestresult.glibc-user.elf/tst-ifunc-fault-lazy
    ptestresult.glibc-user.elf/tst-ifunc-fault-bindnow
    ptestresult.glibc-user.elf/dblunload
    ptestresult.glibc-user.malloc/tst-malloc-tcache-leak
    ptestresult.gcc-user.gcc.target/arm/fp16-aapcs-3.c (test for excess errors)
    ptestresult.binutils./home/pokybuild/yocto-worker/qemuarm/build/build-st-679401/tmp/work/armv7vet2hf-neon-poky-linux-gnueabi/binutils-cross-testsuite/2.34-r0/git/build.arm-poky-linux-gnueabi.arm-poky-linux-gnueabi/binutils/testsuite/gentestdlls does not exist
    ptestresult.gcc-libstdc++-v3-user.ext/rope/pthread7-rope.cc execution test
    ptestresult.glibc-user.posix/tst-exec
    ptestresult.gcc-libstdc++-v3-user.27_io/basic_filebuf/seekoff/char/26777.cc execution test
    ptestresult.gcc-libstdc++-v3-user.30_threads/condition_variable/54185.cc execution test
    ptestresult.glibc-user.gmon/tst-gmon-static-gprof
    ptestresult.glibc-user.elf/tst-ptrguard1
    ptestresult.glibc-user.elf/circleload1
    ptestresult.glibc-user.posix/tst-spawn2
    ptestresult.glibc-user.elf/tst-unused-dep-cmp
    ptestresult.gcc-g++-user.g++.dg/other/anon5.C  -std=gnu++98 (test for excess errors)
    ptestresult.glibc-user.elf/check-localplt
    ptestresult.glibc-user.elf/tst-prelink-cmp
testseries | result_id : qemumips64 | oeselftest_debian-9_qemumips64_20210413183842
    ptestresult.glibc-user.math/test-ifloat-csin
    ptestresult.glibc-user.math/test-float32x-isinf
    ptestresult.glibc-user.elf/dblunload
    ptestresult.glibc-user.math/test-float64x-ceil
    ptestresult.gcc-user.gcc.target/mips/dspr2-MULTU.c   -O3 -g   scan-assembler \\$ac1
    ptestresult.binutils-gas.uld2 -EL (r5900)
    ptestresult.glibc-user.math/test-float-double-sub
    ptestresult.gcc-user.compiler driver --help=warnings option(s): "^ +-.*[^:.]$" absent from output: "  -Wpoison-system-directories Warn for -I and -L options using system directories if cross compiling"
    ptestresult.glibc-user.math/test-ildouble-llrint
    ptestresult.glibc-user.math/test-float-nearbyint
    ptestresult.binutils-ld./home/pokybuild/yocto-worker/qemumips64/build/build-st-22182/tmp/work/mips64r2-poky-linux/binutils-cross-testsuite/2.34-r0/git/ld/testsuite/ld-selective/4.cc: compilation failed
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long32.c   -O1  (test for excess errors)
    ptestresult.glibc-user.math/test-float64-pow
    ptestresult.binutils-gas.uld2 -EL (mips64r5)
    ptestresult.glibc-user.math/test-float64-rint
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-12.c   -O0  (test for excess errors)
    ptestresult.glibc-user.rt/tst-mqueue1
    ptestresult.glibc-user.math/test-float128-exp10
    ptestresult.glibc-user.math/test-float64-isless
    ptestresult.gcc-user.gcc.target/mips/dspr2-MULTU.c   -O2   scan-assembler \\$ac1
    ptestresult.glibc-user.math/test-ldouble-asinh
    ptestresult.glibc-user.math/test-float64-tan
    ptestresult.glibc-user.nptl/tst-cond-except
    ptestresult.glibc-user.math/test-double-isunordered
    ptestresult.glibc-user.gmon/tst-gmon-pie-gprof
    ptestresult.glibc-user.malloc/tst-malloc-tcache-leak-mcheck
    ptestresult.glibc-user.math/test-ifloat-ccosh
    ptestresult.glibc-user.math/test-ldouble-tgamma
    ptestresult.glibc-user.math/test-idouble-csinh
    ptestresult.glibc-user.math/test-float64-iseqsig
    ptestresult.glibc-user.malloc/tst-malloc_info-mcheck
    ptestresult.glibc-user.math/test-float64x-sin
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2   scan-assembler \t\\.cfi_restore 4\n
    ptestresult.glibc-user.math/test-ifloat64x-exp10
    ptestresult.binutils-ld.MIPS16e2 link PC-relative operations 1 (n32)
    ptestresult.gcc-user.gcc.dg/torture/float32-basic.c   -Os  execution test
    ptestresult.glibc-user.math/test-float64x-isgreater
    ptestresult.binutils-ld.indirect6a dynsym
    ptestresult.glibc-user.math/test-float32-float32x-mul
    ptestresult.binutils-ld.MIPS16 link PC-relative operations 0 (n32)
    ptestresult.glibc-user.math/test-ldouble-remquo
    ptestresult.glibc-user.math/test-float64x-log
    ptestresult.gcc-user.gcc.target/mips/code-readable-4.c   -O1  (test for excess errors)
    ptestresult.glibc-user.math/test-float-logb
    ptestresult.binutils-ld.GOT page 5
    ptestresult.glibc-user.math/test-float64x-ctan
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-2.c   -Os   scan-assembler \t\\.cfi_restore 64\n
    ptestresult.glibc-user.math/test-ifloat32-pow
    ptestresult.glibc-user.math/test-float64-exp10
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \t\\.cfi_restore 15\n
    ptestresult.gcc-user.gcc.target/mips/pr91769.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler lw\t\\$4,0\\(\\$5\\)\n\tlw\t\\$5,4\\(\\$5\\)\n\tmtc1\t\\$4,\\$.*\n\tmthc1\t\\$5,\\$.*
    ptestresult.glibc-user.stdlib/tst-strtod-round
    ptestresult.glibc-user.math/test-float128-ccos
    ptestresult.glibc-user.math/test-double-floor
    ptestresult.glibc-user.math/test-float32-iscanonical
    ptestresult.glibc-user.math/test-ildouble-erf
    ptestresult.binutils-ld.MIPS ELF got reloc n32
    ptestresult.glibc-user.math/test-ifloat-rint
    ptestresult.glibc-user.math/test-float64x-scalbn
    ptestresult.glibc-user.math/test-float32-float64x-mul
    ptestresult.gcc-user.gcc.target/mips/loongson-shift-count-truncated-1.c   -O2  execution test
    ptestresult.glibc-user.math/test-float64-fabs
    ptestresult.glibc-user.math/test-float-ufromfp
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \t\\.cfi_restore 64\n
    ptestresult.glibc-user.math/test-ifloat128-llrint
    ptestresult.gcc-user.gcc.target/mips/frame-header-2.c   -O1  (test for excess errors)
    ptestresult.glibc-user.math/test-float32x-lround
    ptestresult.gcc-user.gcc.target/mips/mmcount-ra-address-2.c   -O1  (test for excess errors)
    ptestresult.glibc-user.math/test-float32x-float64x-mul
    ptestresult.glibc-user.math/test-ldouble-j0
    ptestresult.gcc-user.gcc.dg/torture/fp-int-convert-timode-3.c   -Os  execution test
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-7.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.math/test-float32x-acosh
    ptestresult.glibc-user.math/test-float128-tgamma
    ptestresult.glibc-user.math/test-ifloat64x-tgamma
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -Os   scan-assembler \t\\.cfi_def_cfa_offset 0\n
    ptestresult.glibc-user.math/test-ldouble-casinh
    ptestresult.glibc-user.math/test-float64x-nextup
    ptestresult.glibc-user.math/test-float-clog
    ptestresult.glibc-user.math/test-float32x-totalorder
    ptestresult.gcc-user.gcc.dg/atomic/c11-atomic-exec-5.c   -Os  execution test
    ptestresult.glibc-user.math/test-ldouble-pow
    ptestresult.glibc-user.math/test-float128-cexp
    ptestresult.glibc-user.math/test-float32x-isgreater
    ptestresult.glibc-user.math/test-float32x-frexp
    ptestresult.binutils-gas.MIPS hilo-diff n32/EL (mips64)
    ptestresult.glibc-user.math/test-double-erfc
    ptestresult.glibc-user.math/test-float64x-asinh
    ptestresult.glibc-user.math/test-double-nextdown
    ptestresult.glibc-user.math/test-float128-cacosh
    ptestresult.glibc-user.math/test-float32-fmod
    ptestresult.glibc-user.math/test-float64x-sincos
    ptestresult.glibc-user.math/test-float128-modf
    ptestresult.gcc-user.gcc.target/mips/sdata-4.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.dg/torture/fp-int-convert-timode-3.c   -O3 -g  execution test
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \t\\.cfi_restore 25\n
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-7.c   -Os  (test for excess errors)
    ptestresult.glibc-user.nptl/tst-cond25
    ptestresult.glibc-user.math/test-float32x-fromfp
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O3 -g   scan-assembler \t\\.cfi_def_cfa_offset 0\n
    ptestresult.glibc-user.math/test-ifloat64-rint
    ptestresult.glibc-user.math/test-float32x-asin
    ptestresult.binutils-ld.indirect6d dynsym
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \t\\.cfi_restore 12\n
    ptestresult.glibc-user.math/test-float-erfc
    ptestresult.glibc-user.math/test-float64x-cos
    ptestresult.glibc-user.math/test-float64x-asin
    ptestresult.glibc-user.math/test-ifloat64-sinh
    ptestresult.glibc-user.math/test-float32x-float128-sub
    ptestresult.glibc-user.math/test-float32-isfinite
    ptestresult.gcc-user.gcc.target/mips/loongson-simd.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  execution test
    ptestresult.binutils-gas.MIPS hilo-diff n32/EL (octeonp)
    ptestresult.glibc-user.math/test-float32x-compat_totalordermag
    ptestresult.glibc-user.math/test-double-log1p
    ptestresult.glibc-user.math/test-float32x-float64-mul
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-3.c   -O3 -g  (test for excess errors)
    ptestresult.glibc-user.math/test-ifloat64-lrint
    ptestresult.glibc-user.math/test-float-remquo
    ptestresult.glibc-user.math/test-double-isnan
    ptestresult.glibc-user.math/test-float32-floor
    ptestresult.glibc-user.math/test-float32x-float64x-div
    ptestresult.glibc-user.math/test-float32-lgamma
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-3.c   -O2  (test for excess errors)
    ptestresult.glibc-user.math/test-float32x-tan
    ptestresult.glibc-user.rt/tst-mqueue7
    ptestresult.glibc-user.math/test-ldouble-significand
    ptestresult.glibc-user.math/test-ldouble-llrint
    ptestresult.glibc-user.math/test-ildouble-exp
    ptestresult.glibc-user.math/test-ldouble-isgreaterequal
    ptestresult.glibc-user.math/test-ifloat-fdim
    ptestresult.gcc-user.gcc.target/mips/sdata-2.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/frame-header-4.c   -Os   scan-assembler-not \taddiu\t\\$sp
    ptestresult.glibc-user.math/test-idouble-scalbln
    ptestresult.glibc-user.math/test-float64-fromfpx
    ptestresult.glibc-user.math/test-float64-exp2
    ptestresult.glibc-user.math/test-ifloat-cexp
    ptestresult.glibc-user.math/test-float-double-div
    ptestresult.glibc-user.math/test-float64x-yn
    ptestresult.gcc-user.gcc.dg/tree-prof/time-profiler-2.c scan-ipa-dump-times profile "Read tp_first_run: 2" 1
    ptestresult.glibc-user.math/test-ifloat128-log2
    ptestresult.gcc-user.gcc.target/mips/frame-header-3.c   -O2  (test for excess errors)
    ptestresult.glibc-user.math/test-ildouble-fma
    ptestresult.glibc-user.math/test-ldouble-atan
    ptestresult.glibc-user.math/test-float64x-acos
    ptestresult.glibc-user.math/test-float32-fpclassify
    ptestresult.gcc-user.gcc.target/mips/ds-schedule-1.c   -Os  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/compact-branches-5.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O1   scan-assembler \t\\.cfi_restore 25\n
    ptestresult.glibc-user.math/test-float-fdim
    ptestresult.glibc-user.math/test-float-islessequal
    ptestresult.gcc-user.gcc.target/mips/sdata-2.c   -Os  (test for excess errors)
    ptestresult.gcc-g++-user.g++.dg/vect/pr84556.cc  -mmsa -std=gnu++14 execution test
    ptestresult.glibc-user.math/test-ifloat32-llrint
    ptestresult.glibc-user.math/test-ldouble-lrint
    ptestresult.binutils-ld.PR ld/19317 (3)
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O1   scan-assembler \t\\.cfi_restore 8\n
    ptestresult.glibc-user.timezone/tst-tzset
    ptestresult.gcc-user.gcc.dg/torture/fp-int-convert-timode-3.c   -O0  execution test
    ptestresult.glibc-user.math/test-float-compat_totalorder
    ptestresult.glibc-user.math/test-float64x-lrint
    ptestresult.glibc-user.math/test-idouble-exp
    ptestresult.glibc-user.math/test-float-cexp
    ptestresult.glibc-user.math/test-float-casin
    ptestresult.glibc-user.math/test-float128-fdim
    ptestresult.glibc-user.math/test-ifloat32x-lrint
    ptestresult.glibc-user.math/test-double-isless
    ptestresult.gcc-user.gcc.target/mips/ds-schedule-2.c   -O2  (test for excess errors)
    ptestresult.glibc-user.math/test-double-creal
    ptestresult.binutils-ld.--gc-sections with --defsym
    ptestresult.glibc-user.math/test-ifloat32-ccosh
    ptestresult.glibc-user.math/test-float64x-rint
    ptestresult.glibc-user.math/test-ifloat32x-sinh
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long64.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O3 -g   scan-assembler \t\\.cfi_restore 9\n
    ptestresult.glibc-user.math/test-float64x-ufromfp
    ptestresult.glibc-user.posix/tst-spawn4
    ptestresult.glibc-user.math/test-float-isless
    ptestresult.glibc-user.math/test-float32x-log
    ptestresult.glibc-user.math/test-ldouble-ctan
    ptestresult.gcc-libstdc++-v3-user.27_io/objects/char/7.cc execution test
    ptestresult.gcc-g++-user.g++.dg/vect/slp-pr56812.cc  -mmsa -std=c++14  (test for errors, line 17)
    ptestresult.glibc-user.math/test-idouble-yn
    ptestresult.glibc-user.math/test-ifloat64x-csin
    ptestresult.gcc-user.gcc.target/mips/loongson-simd.c   -O1  execution test
    ptestresult.glibc-user.math/test-ldouble-cexp
    ptestresult.binutils-ld.n32 PLTs for mixed MIPS and MIPS16
    ptestresult.glibc-user.math/test-float32x-sin
    ptestresult.gcc-user.gcc.dg/vect/pr91293-3.c  -mmsa execution test
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long32.c   -O3 -g  (test for excess errors)
    ptestresult.glibc-user.math/test-float64-ceil
    ptestresult.gcc-user.gcc.target/mips/branch-cost-2.c   -Os   scan-assembler-not \t(bne|beq)\t
    ptestresult.gcc-user.gcc.dg/vect/pr91293-2.c  -mmsa execution test
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long64.c   -Os  (test for excess errors)
    ptestresult.binutils-ld.microMIPS JALX to unaligned symbol with addend 0
    ptestresult.glibc-user.math/test-float64-lround
    ptestresult.binutils-ld.vers24c
    ptestresult.glibc-user.math/test-float64x-nextdown
    ptestresult.glibc-user.math/test-ldouble-catanh
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-8.c   -O1  (test for excess errors)
    ptestresult.glibc-user.math/test-double-llogb
    ptestresult.glibc-user.math/test-float32x-acos
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-11.c   -Os  (test for excess errors)
    ptestresult.glibc-user.math/test-double-sincos
    ptestresult.binutils-ld.overlay size
    ptestresult.glibc-user.math/test-double-fmaxmag
    ptestresult.gcc-user.gcc.target/mips/frame-header-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.math/test-float32x-erfc
    ptestresult.binutils-ld.indirect5a dynsym
    ptestresult.glibc-user.math/test-float32-float64-sub
    ptestresult.glibc-user.math/test-ifloat128-exp10
    ptestresult.glibc-user.math/test-float64x-logb
    ptestresult.glibc-user.math/test-ildouble-log2
    ptestresult.glibc-user.math/test-fenv
    ptestresult.glibc-user.math/test-ldouble-trunc
    ptestresult.gcc-user.gcc.target/mips/dspr2-MULTU.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \\$ac1
    ptestresult.glibc-user.math/test-float32x-y1
    ptestresult.glibc-user.math/test-float128-fma
    ptestresult.glibc-user.math/test-float32-ceil
    ptestresult.glibc-user.math/test-double-totalorder
    ptestresult.glibc-user.math/test-float32x-creal
    ptestresult.glibc-user.math/test-ldouble-tan
    ptestresult.glibc-user.math/test-float32x-cproj
    ptestresult.binutils-ld.ld-mips-elf/reloc-1-n32
    ptestresult.glibc-user.math/test-float64-atan2
    ptestresult.gcc-user.gcc.target/mips/pr33256.c   -O0  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/long-calls-pg.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.math/test-double-csinh
    ptestresult.binutils-ld.indirect6b dynsym
    ptestresult.glibc-user.math/test-float32x-fromfpx
    ptestresult.glibc-user.math/test-float-fmaxmag
    ptestresult.gcc-libstdc++-v3-user.27_io/basic_filebuf/close/char/9964.cc execution test
    ptestresult.glibc-user.malloc/tst-dynarray-at-fail
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-3.c   -O0  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2   scan-assembler \t\\.cfi_restore 6\n
    ptestresult.glibc-user.math/test-ldouble-fromfp
    ptestresult.glibc-user.math/test-float-hypot
    ptestresult.glibc-user.math/test-ifloat32x-expm1
    ptestresult.glibc-user.math/test-float-fma
    ptestresult.glibc-user.math/test-float-llrint
    ptestresult.glibc-user.math/test-float64x-exp2
    ptestresult.glibc-user.math/test-ifloat64x-erf
    ptestresult.glibc-user.math/test-ldouble-erf
    ptestresult.glibc-user.math/test-ldouble-hypot
    ptestresult.glibc-user.math/test-idouble-pow
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-4.c   -O0  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \t\\.cfi_restore 14\n
    ptestresult.glibc-user.math/test-ldouble-asin
    ptestresult.glibc-user.elf/tst-global1
    ptestresult.glibc-user.math/test-float32-compat_totalordermag
    ptestresult.glibc-user.math/test-float-acosh
    ptestresult.glibc-user.math/test-float-tanh
    ptestresult.binutils-gas.Compact EH EL #4 with personality id, FDE data and LSDA
    ptestresult.glibc-user.math/test-float128-remquo
    ptestresult.glibc-user.math/test-ifloat32x-hypot
    ptestresult.gcc-user.gcc.target/mips/compact-branches-5.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2   scan-assembler \t\\.cfi_restore 9\n
    ptestresult.glibc-user.math/test-ldouble-isless
    ptestresult.glibc-user.math/test-double-cos
    ptestresult.glibc-user.math/test-float32-remquo
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-12.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-9.c   -Os  (test for excess errors)
    ptestresult.glibc-user.math/test-float64-log1p
    ptestresult.glibc-user.misc/test-errno-linux
    ptestresult.glibc-user.math/test-float32-lrint
    ptestresult.glibc-user.math/test-ifloat64x-expm1
    ptestresult.glibc-user.math/test-float64x-iseqsig
    ptestresult.binutils-ld.MIPS textrel-1
    ptestresult.gcc-user.gcc.dg/atomic/c11-atomic-exec-5.c   -O1  execution test
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long32.c   -O0  (test for excess errors)
    ptestresult.glibc-user.math/test-float128-llround
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-10.c   -Os  (test for excess errors)
    ptestresult.glibc-user.math/test-float64-float128-add
    ptestresult.binutils-gas.uld2 -EL (octeonp)
    ptestresult.glibc-user.math/test-float64x-cacosh
    ptestresult.glibc-user.math/test-float64x-y1
    ptestresult.glibc-user.math/test-float32-isunordered
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2   scan-assembler \t\\.cfi_restore 12\n
    ptestresult.glibc-user.math/test-float32x-float128-div
    ptestresult.glibc-user.nptl/tst-robust-fork
    ptestresult.glibc-user.math/test-float32-isless
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O3 -g   scan-assembler \t\\.cfi_restore 12\n
    ptestresult.binutils-ld.vers24b
    ptestresult.glibc-user.math/test-ifloat-scalbn
    ptestresult.glibc-user.math/test-float-ctanh
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \t\\.cfi_restore 2\n
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-11.c   -O2  (test for excess errors)
    ptestresult.glibc-user.math/test-float64-asin
    ptestresult.glibc-user.math/test-float-nextup
    ptestresult.glibc-user.math/test-float64-catan
    ptestresult.glibc-user.elf/circleload1
    ptestresult.glibc-user.math/test-float64-fmin
    ptestresult.glibc-user.math/test-double-csqrt
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \t\\.cfi_restore 9\n
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \t\\.cfi_restore 13\n
    ptestresult.glibc-user.math/test-float-issignaling
    ptestresult.glibc-user.math/test-double-fmod
    ptestresult.glibc-user.math/test-float-catanh
    ptestresult.glibc-user.math/test-ifloat128-nearbyint
    ptestresult.glibc-user.math/test-float32x-casin
    ptestresult.glibc-user.math/test-ifloat32-exp
    ptestresult.glibc-user.math/test-float32-float128-sub
    ptestresult.glibc-user.math/test-float-ceil
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \t\\.cfi_restore 6\n
    ptestresult.glibc-user.math/test-double-iscanonical
    ptestresult.gcc-user.gcc.target/mips/sdata-3.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2   scan-assembler \t\\.cfi_restore 14\n
    ptestresult.binutils-gas.MIPS hilo-diff n32/EL (mips5)
    ptestresult.glibc-user.math/test-float32x-cabs
    ptestresult.glibc-user.math/test-float32-float128-mul
    ptestresult.glibc-user.math/test-float128-ceil
    ptestresult.glibc-user.math/test-ifloat128-rint
    ptestresult.gcc-user.gcc.target/mips/pr91769.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler lw\t\\$4,0\\(\\$5\\)\n\tlw\t\\$5,4\\(\\$5\\)\n\tmtc1\t\\$4,\\$.*\n\tmthc1\t\\$5,\\$.*
    ptestresult.glibc-user.math/test-float64x-acosh
    ptestresult.glibc-user.math/test-float64-fpclassify
    ptestresult.glibc-user.math/test-ifloat32x-exp10
    ptestresult.gcc-user.gcc.target/mips/loongson-simd.c   -O0  execution test
    ptestresult.glibc-user.math/test-float32-fma
    ptestresult.glibc-user.math/test-ldouble-islessequal
    ptestresult.glibc-user.math/test-ifloat64-llrint
    ptestresult.glibc-user.math/test-float128-lgamma
    ptestresult.glibc-user.math/test-double-fdim
    ptestresult.gcc-libstdc++-v3-user.21_strings/basic_string/modifiers/insert/wchar_t/1.cc execution test
    ptestresult.glibc-user.math/test-float32-cacos
    ptestresult.glibc-user.math/test-float128-nearbyint
    ptestresult.glibc-user.math/test-float32x-cexp
    ptestresult.glibc-user.math/test-float64-getpayload
    ptestresult.gcc-user.gcc.target/mips/mmcount-ra-address-2.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/dspr2-MULT.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \\$ac1
    ptestresult.glibc-user.math/test-float128-csinh
    ptestresult.glibc-user.math/test-float-ldouble-sub
    ptestresult.glibc-user.math/test-ifloat128-pow
    ptestresult.gcc-user.gcc.dg/torture/float32-basic.c   -O3 -g  execution test
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O3 -g   scan-assembler \t\\.cfi_restore 31\n
    ptestresult.glibc-user.math/test-float64-cosh
    ptestresult.glibc-user.math/test-ldouble-fma
    ptestresult.glibc-user.math/test-float64-isnan
    ptestresult.binutils-ld.ld-plugin/lto-5r
    ptestresult.glibc-user.stdlib/tst-tininess
    ptestresult.glibc-user.nptl/tst-robust1
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -Os   scan-assembler \t\\.cfi_restore 6\n
    ptestresult.binutils-ld.MIPS jalx-1
    ptestresult.glibc-user.math/test-float128-exp2
    ptestresult.glibc-user.math/test-ifloat64-csinh
    ptestresult.glibc-user.math/test-float32-islessequal
    ptestresult.glibc-user.math/test-float-erf
    ptestresult.glibc-user.math/test-float32x-ufromfpx
    ptestresult.glibc-user.math/test-float64-jn
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -Os   scan-assembler \t\\.cfi_restore 13\n
    ptestresult.glibc-user.math/test-float64x-canonicalize
    ptestresult.gcc-user.gcc.target/mips/octeon-pipe-1.c   -Os   scan-rtl-dump sched2 "octeon_mult\\*71"
    ptestresult.gcc-user.gcc.target/mips/loongson-shift-count-truncated-1.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  execution test
    ptestresult.glibc-user.math/test-idouble-llrint
    ptestresult.glibc-user.math/test-idouble-lgamma
    ptestresult.glibc-user.math/test-float32x-trunc
    ptestresult.binutils-gas.uld2 -EL (mips5)
    ptestresult.glibc-user.math/test-float64-nextdown
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -Os   scan-assembler \t\\.cfi_restore 1\n
    ptestresult.glibc-user.math/test-float64-cbrt
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-3.c   -O1  (test for excess errors)
    ptestresult.glibc-user.math/test-float-fromfp
    ptestresult.glibc-user.math/test-float64-acosh
    ptestresult.glibc-user.math/test-ifloat64x-pow
    ptestresult.binutils-ld.MIPS16 link PC-relative operations 1 (n32)
    ptestresult.glibc-user.math/test-float128-csin
    ptestresult.glibc-user.math/test-float-csin
    ptestresult.glibc-user.math/test-float128-ilogb
    ptestresult.glibc-user.math/test-ifloat-nearbyint
    ptestresult.gcc-user.gcc.dg/torture/float64x-nan.c   -O1  execution test
    ptestresult.gcc-user.gcc.target/mips/sdata-1.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.math/test-double-jn
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \t\\.cfi_restore 3\n
    ptestresult.glibc-user.math/test-ifloat64-exp
    ptestresult.glibc-user.math/test-femode
    ptestresult.glibc-user.math/test-ldouble-fmod
    ptestresult.glibc-user.math/test-double-frexp
    ptestresult.gcc-user.gcc.target/mips/abi-o64-long64.c   -O1  (test for excess errors)
    ptestresult.glibc-user.math/test-float32x-log2
    ptestresult.glibc-user.math/test-double-logb
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2   scan-assembler \t\\.cfi_restore 11\n
    ptestresult.glibc-user.math/test-float128-casinh
    ptestresult.gcc-user.gcc.target/mips/sdata-1.c   -O3 -g  (test for excess errors)
    ptestresult.glibc-user.math/test-float-rint
    ptestresult.gcc-user.gcc.target/mips/mmcount-ra-address-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.math/test-ldouble-log2
    ptestresult.glibc-user.math/test-float32-scalbn
    ptestresult.glibc-user.math/test-ldouble-roundeven
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O3 -g   scan-assembler \t\\.cfi_restore 2\n
    ptestresult.binutils-gas.Compact EH EL #5 with personality routine, FDE data and LSDA
    ptestresult.gcc-user.gcc.target/mips/frame-header-1.c   -O2  (test for excess errors)
    ptestresult.glibc-user.math/test-double-atanh
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \t\\.cfi_restore 64\n
    ptestresult.glibc-user.math/test-float32-nearbyint
    ptestresult.glibc-user.math/test-float32-isinf
    ptestresult.gcc-user.gcc.target/mips/sdata-3.c   -Os  (test for excess errors)
    ptestresult.glibc-user.math/test-float32-copysign
    ptestresult.glibc-user.math/test-float64x-tgamma
    ptestresult.gcc-user.gcc.target/mips/fpr-moves-6.c   -O1   scan-assembler \tdmtc1\t\\$10,\\$f0\n
    ptestresult.glibc-user.math/test-idouble-cosh
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-7.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long32.c   -Os  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O3 -g   scan-assembler \t\\.cfi_restore 5\n
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -Os   scan-assembler \t\\.cfi_restore 2\n
    ptestresult.glibc-user.math/test-float32x-roundeven
    ptestresult.glibc-user.math/test-double-cacosh
    ptestresult.glibc-user.math/test-float32x-fma
    ptestresult.glibc-user.math/test-ldouble-nextafter
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O1   scan-assembler \t\\.cfi_restore 9\n
    ptestresult.glibc-user.math/test-float32-casinh
    ptestresult.glibc-user.misc/bug18240
    ptestresult.glibc-user.nptl/test-rwlock-printers
    ptestresult.glibc-user.math/test-ifloat32x-yn
    ptestresult.glibc-user.elf/tst-protected1b
    ptestresult.gcc-user.gcc.target/mips/ds-schedule-1.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.math/test-ldouble-tanh
    ptestresult.glibc-user.math/test-float32-canonicalize
    ptestresult.glibc-user.math/test-float32x-iszero
    ptestresult.glibc-user.elf/tst-ptrguard1-static
    ptestresult.glibc-user.math/test-float-remainder
    ptestresult.glibc-user.math/test-float64x-fmod
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.binutils-ld.pr25355.o
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \t\\.cfi_restore 4\n
    ptestresult.gcc-user.gcc.c-torture/execute/pr64242.c   -O2  execution test
    ptestresult.glibc-user.math/test-float64x-sinh
    ptestresult.gcc-user.gcc.target/mips/ds-schedule-2.c   -O3 -g  (test for excess errors)
    ptestresult.binutils-gas.MIPS hilo-diff n32/EL (mips4)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-8.c   -O0  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-9.c   -O2  (test for excess errors)
    ptestresult.gcc-libstdc++-v3-user.21_strings/basic_string/cons/wchar_t/1.cc execution test
    ptestresult.gcc-user.gcc.target/mips/sdata-1.c   -O0  (test for excess errors)
    ptestresult.glibc-user.math/test-float64-float128-div
    ptestresult.glibc-user.math/test-float-llround
    ptestresult.glibc-user.math/test-ldouble-modf
    ptestresult.glibc-user.math/test-float128-ufromfp
    ptestresult.glibc-user.math/test-float128-cosh
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-8.c   -O3 -g  (test for excess errors)
    ptestresult.glibc-user.math/test-float128-ctan
    ptestresult.glibc-user.math/test-float32-sinh
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-7.c   -O3 -fomit-frame-pointer -funroll-loops -fpeel-loops -ftracer -finline-functions  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long32.c   -O2  (test for excess errors)
    ptestresult.glibc-user.math/test-float64-j0
    ptestresult.glibc-user.math/test-double-pow
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -Os   scan-assembler \t\\.cfi_restore 64\n
    ptestresult.glibc-user.math/test-float-ccos
    ptestresult.glibc-user.math/test-ldouble-atanh
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O1   scan-assembler \t\\.cfi_restore 12\n
    ptestresult.binutils-gas.MIPS hilo-diff n32/EL (octeon3)
    ptestresult.glibc-user.math/test-double-compat_totalordermag
    ptestresult.glibc-user.math/test-float32x-erf
    ptestresult.glibc-user.math/test-ldouble-lround
    ptestresult.glibc-user.math/test-float64x-exp
    ptestresult.glibc-user.math/test-ifloat128-erf
    ptestresult.glibc-user.math/test-ifloat64x-fma
    ptestresult.glibc-user.math/test-float64x-float128-div
    ptestresult.glibc-user.math/test-float64-roundeven
    ptestresult.gcc-user.gcc.dg/torture/float128-ieee-nan.c   -O1  execution test
    ptestresult.glibc-user.math/test-float32x-jn
    ptestresult.binutils-ld.MIPS JALX to unaligned symbol with addend 2
    ptestresult.glibc-user.math/test-float64-float64x-mul
    ptestresult.glibc-user.math/test-ifloat32-expm1
    ptestresult.glibc-user.math/test-ifloat128-cexp
    ptestresult.glibc-user.math/test-float64-casinh
    ptestresult.glibc-user.math/test-float32-float64-mul
    ptestresult.glibc-user.math/test-float-fmax
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -Os   scan-assembler \t\\.cfi_restore 24\n
    ptestresult.gcc-user.gcc.dg/vect/pr88598-3.c -flto -ffat-lto-objects -mpaired-single execution test
    ptestresult.glibc-user.math/test-float32-ccos
    ptestresult.glibc-user.math/test-ildouble-lrint
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-3.c   -Os  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O3 -g   scan-assembler \t\\.cfi_restore 4\n
    ptestresult.glibc-user.math/test-float32-float64x-add
    ptestresult.glibc-user.math/test-float32x-fmax
    ptestresult.glibc-user.math/test-double-iseqsig
    ptestresult.glibc-user.math/test-float-isgreater
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O3 -g   scan-assembler \t\\.cfi_restore 64\n
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O3 -g   scan-assembler \t\\.cfi_restore 65\n
    ptestresult.glibc-user.math/test-float64x-clog10
    ptestresult.glibc-user.math/test-ifloat-cabs
    ptestresult.glibc-user.math/test-idouble-ctanh
    ptestresult.gcc-user.gcc.target/mips/ds-schedule-1.c   -O0  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/frame-header-3.c   -O1  (test for excess errors)
    ptestresult.glibc-user.math/test-float32-llrint
    ptestresult.gcc-user.gcc.dg/atomic/c11-atomic-exec-5.c   -O3 -fomit-frame-pointer -funroll-loops -fpeel-loops -ftracer -finline-functions  execution test
    ptestresult.glibc-user.math/test-float128-isgreater
    ptestresult.glibc-user.math/test-float32x-llogb
    ptestresult.glibc-user.math/test-ifloat32-ccos
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-9.c   -O3 -g  (test for excess errors)
    ptestresult.glibc-user.math/test-ifloat64-ccosh
    ptestresult.glibc-user.math/test-float128-cbrt
    ptestresult.glibc-user.libio/tst-vtables
    ptestresult.glibc-user.math/test-float64-fma
    ptestresult.glibc-user.math/test-float-isunordered
    ptestresult.glibc-user.math/test-float64-lgamma
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2   scan-assembler \t\\.cfi_restore 3\n
    ptestresult.gcc-user.gcc.target/mips/abi-o64-long64.c   -O3 -g  (test for excess errors)
    ptestresult.glibc-user.math/test-float128-islessgreater
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \t\\.cfi_restore 31\n
    ptestresult.glibc-user.math/test-float32x-y0
    ptestresult.glibc-user.math/test-float32x-csin
    ptestresult.gcc-user.gcc.target/mips/sdata-4.c   -Os  (test for excess errors)
    ptestresult.gcc-g++-user.g++.dg/vect/pr87914.cc  -mmsa -std=c++17 execution test
    ptestresult.glibc-user.math/test-ifloat64x-scalbn
    ptestresult.glibc-user.math/test-float-csinh
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2   scan-assembler \t\\.cfi_restore 7\n
    ptestresult.glibc-user.math/test-ifloat-exp2
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O1   scan-assembler \t\\.cfi_restore 2\n
    ptestresult.glibc-user.math/test-ildouble-y1
    ptestresult.glibc-user.math/test-ifloat64x-yn
    ptestresult.glibc-user.math/test-float64x-llogb
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \t\\.cfi_restore 10\n
    ptestresult.glibc-user.math/test-ldouble-y1
    ptestresult.glibc-user.math/test-ifloat32x-tgamma
    ptestresult.glibc-user.stdio-common/tst-printf-round
    ptestresult.glibc-user.math/test-fenv-preserve
    ptestresult.binutils./home/pokybuild/yocto-worker/qemumips64/build/build-st-22182/tmp/work/mips64r2-poky-linux/binutils-cross-testsuite/2.34-r0/git/build.mips64-poky-linux.mips64-poky-linux/binutils/testsuite/gentestdlls does not exist
    ptestresult.glibc-user.math/test-float64x-fma
    ptestresult.glibc-user.math/test-ifloat64-lgamma
    ptestresult.gcc-g++-user.g++.dg/vect/slp-pr56812.cc  -mmsa -std=c++17 (test for excess errors)
    ptestresult.gcc-g++-user.g++.dg/opt/devirt2.C  -std=gnu++98 (test for excess errors)
    ptestresult.glibc-user.math/test-float64-clog
    ptestresult.glibc-user.math/test-ildouble-expm1
    ptestresult.glibc-user.math/test-double-ldouble-add
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-10.c   -O3 -fomit-frame-pointer -funroll-loops -fpeel-loops -ftracer -finline-functions  (test for excess errors)
    ptestresult.glibc-user.math/test-float32x-iscanonical
    ptestresult.gcc-user.gcc.target/mips/pr54240.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-tree-dump phiopt1 "Hoisting adjacent loads"
    ptestresult.gcc-user.gcc.target/mips/cfgcleanup-jalr2.c   -Os   scan-assembler \\.reloc\t1f,R_MIPS_JALR,foo
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O1   scan-assembler \t\\.cfi_restore 3\n
    ptestresult.glibc-user.math/test-float32x-nextafter
    ptestresult.glibc-user.math/test-ldouble-rint
    ptestresult.glibc-user.math/test-ldouble-remainder
    ptestresult.glibc-user.math/test-ifloat-hypot
    ptestresult.glibc-user.math/test-ifloat64x-lgamma
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2   scan-assembler \t\\.cfi_restore 65\n
    ptestresult.binutils-ld.MIPS eh-frame 2, n32
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-5.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.math/test-float32-y1
    ptestresult.gcc-user.gcc.target/mips/octeon-pipe-1.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-rtl-dump sched2 "octeon_mult\\*71"
    ptestresult.glibc-user.math/test-float-fmod
    ptestresult.glibc-user.math/test-float64-frexp
    ptestresult.gcc-user.gcc.target/mips/octeon-pipe-1.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-rtl-dump sched2 "octeon_mult\\*71"
    ptestresult.glibc-user.math/test-float32-acos
    ptestresult.glibc-user.math/test-double-fromfp
    ptestresult.glibc-user.elf/resolvfail
    ptestresult.glibc-user.math/test-float64-expm1
    ptestresult.glibc-user.math/test-float32x-csqrt
    ptestresult.glibc-user.math/test-float-fabs
    ptestresult.binutils-ld.ld-plugin/lto-3r
    ptestresult.glibc-user.math/test-float32-cimag
    ptestresult.gcc-user.gcc.target/mips/call-from-init.c   -O0  (test for excess errors)
    ptestresult.glibc-user.math/test-double-getpayload
    ptestresult.glibc-user.math/test-double-clog10
    ptestresult.glibc-user.math/test-float-cproj
    ptestresult.glibc-user.math/test-float64-log
    ptestresult.glibc-user.math/test-float64x-log1p
    ptestresult.gcc-libstdc++-v3-user.27_io/objects/wchar_t/9661-1.cc execution test
    ptestresult.glibc-user.math/test-float32-float32x-add
    ptestresult.glibc-user.math/test-double-canonicalize
    ptestresult.glibc-user.math/test-ifloat64-hypot
    ptestresult.glibc-user.math/test-float32x-logb
    ptestresult.glibc-user.math/test-double-y1
    ptestresult.glibc-user.math/test-double-isgreaterequal
    ptestresult.glibc-user.math/test-ldouble-cacos
    ptestresult.glibc-user.math/test-float64-float128-sub
    ptestresult.gcc-user.gcc.target/mips/octeon2-pipe-1.c   -O2   scan-rtl-dump sched2 "octeon_mult\\*17"
    ptestresult.glibc-user.math/test-ldouble-exp
    ptestresult.glibc-user.malloc/tst-mallocfork2-mcheck
    ptestresult.glibc-user.math/test-float32x-float64-div
    ptestresult.glibc-user.math/test-ifloat32-csin
    ptestresult.glibc-user.math/test-float64-copysign
    ptestresult.glibc-user.math/test-float32-casin
    ptestresult.glibc-user.math/test-ifloat32-fdim
    ptestresult.glibc-user.math/test-idouble-csin
    ptestresult.glibc-user.misc/tst-memfd_create
    ptestresult.gcc-user.gcc.dg/torture/float64x-nan.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  execution test
    ptestresult.gcc-user.gcc.dg/torture/fp-int-convert-timode-4.c   -Os  execution test
    ptestresult.glibc-user.math/test-float128-atan
    ptestresult.glibc-user.math/test-float32x-sinh
    ptestresult.glibc-user.math/test-float64-cimag
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-2.c   -Os   scan-assembler \t\\.cfi_restore 65\n
    ptestresult.glibc-user.math/test-ldouble-clog10
    ptestresult.glibc-user.math/test-float32x-compat_totalorder
    ptestresult.glibc-user.math/test-float128-frexp
    ptestresult.glibc-user.math/test-float32-ctanh
    ptestresult.glibc-user.math/test-float64-sinh
    ptestresult.binutils-ld.n32 PLTs for mixed MIPS and microMIPS
    ptestresult.glibc-user.math/test-float32x-llround
    ptestresult.gcc-user.gcc.target/mips/compact-branches-6.c   -O2  (test for excess errors)
    ptestresult.glibc-user.math/test-ldouble-llround
    ptestresult.glibc-user.math/test-float-round
    ptestresult.binutils-ld.Build pr23658-2
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-10.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.math/test-float64-clog10
    ptestresult.glibc-user.setjmp/tst-setjmp-fp
    ptestresult.glibc-user.math/test-float128-logb
    ptestresult.binutils-ld.MIPS export class call relocation test (n32)
    ptestresult.binutils-ld.MIPS16 JALX to unaligned symbol with addend 0
    ptestresult.glibc-user.math/test-float128-isless
    ptestresult.glibc-user.math/test-float-sinh
    ptestresult.binutils-ld.ld-elf/group3b
    ptestresult.glibc-user.math/test-ldouble-cbrt
    ptestresult.gcc-user.gcc.dg/atomic/c11-atomic-exec-5.c   -O2  execution test
    ptestresult.glibc-user.math/test-float32x-fminmag
    ptestresult.glibc-user.math/test-float32x-nearbyint
    ptestresult.glibc-user.math/test-ldouble-yn
    ptestresult.glibc-user.math/test-ldouble-csinh
    ptestresult.glibc-user.math/test-float128-y0
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-7.c   -O2  (test for excess errors)
    ptestresult.glibc-user.math/test-float32x-setpayload
    ptestresult.gcc-user.gcc.dg/atomic/c11-atomic-exec-5.c   -O3 -g  execution test
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O3 -g   scan-assembler \t\\.cfi_restore 11\n
    ptestresult.glibc-user.math/test-float-log10
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \t\\.cfi_restore 5\n
    ptestresult.glibc-user.math/test-float-nexttoward
    ptestresult.gcc-user.gcc.target/mips/compact-branches-5.c   -O1  (test for excess errors)
    ptestresult.glibc-user.math/test-float32-log10
    ptestresult.glibc-user.math/test-float-creal
    ptestresult.glibc-user.math/test-double-round
    ptestresult.glibc-user.math/test-ldouble-round
    ptestresult.glibc-user.posix/tst-spawn2
    ptestresult.gcc-user.gcc.target/mips/sdata-2.c   -O0  (test for excess errors)
    ptestresult.glibc-user.math/test-float128-lround
    ptestresult.gcc-user.gcc.target/mips/long-calls-pg.c   -O2  (test for excess errors)
    ptestresult.glibc-user.math/test-ldouble-acosh
    ptestresult.glibc-user.math/test-float-j0
    ptestresult.gcc-user.gcc.target/mips/fpr-moves-6.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \tdmtc1\t\\$10,\\$f0\n
    ptestresult.glibc-user.math/test-double-sin
    ptestresult.glibc-user.math/test-float128-iseqsig
    ptestresult.glibc-user.math/test-float32-tanh
    ptestresult.glibc-user.math/test-ifloat32-j0
    ptestresult.glibc-user.math/test-ifloat64-sqrt
    ptestresult.glibc-user.math/test-float32-fromfp
    ptestresult.glibc-user.math/test-ildouble-ccosh
    ptestresult.glibc-user.math/test-float128-tanh
    ptestresult.glibc-user.math/test-double-atan2
    ptestresult.glibc-user.math/test-float128-ufromfpx
    ptestresult.glibc-user.posix/test-errno
    ptestresult.gcc-user.gcc.target/mips/loongson-simd.c   -Os  execution test
    ptestresult.glibc-user.math/test-ldouble-sincos
    ptestresult.glibc-user.math/test-fenv-clear
    ptestresult.glibc-user.elf/tst-stackguard1
    ptestresult.binutils-gas.uld2 -EL (r4000)
    ptestresult.glibc-user.math/test-float64-csin
    ptestresult.glibc-user.math/test-float32x-log1p
    ptestresult.gcc-user.gcc.target/mips/long-calls-pg.c   -O1  (test for excess errors)
    ptestresult.glibc-user.math/test-ifloat128-sqrt
    ptestresult.glibc-user.math/test-double-asin
    ptestresult.glibc-user.math/test-float32-modf
    ptestresult.glibc-user.math/test-double-cproj
    ptestresult.gcc-user.gcc.target/mips/pr33256.c   -O2  (test for excess errors)
    ptestresult.glibc-user.math/test-float-totalorder
    ptestresult.glibc-user.math/test-ldouble-ufromfpx
    ptestresult.glibc-user.math/test-float64x-nearbyint
    ptestresult.glibc-user.nptl/tst-cond24
    ptestresult.glibc-user.math/test-float64-iscanonical
    ptestresult.gcc-user.gcc.target/mips/call-from-init.c   -O2  (test for excess errors)
    ptestresult.glibc-user.math/test-ldouble-cos
    ptestresult.glibc-user.math/test-ifloat-scalbln
    ptestresult.glibc-user.math/test-ifloat-sqrt
    ptestresult.glibc-user.math/test-ifloat-y1
    ptestresult.glibc-user.math/test-float32-tan
    ptestresult.glibc-user.math/test-float128-exp
    ptestresult.glibc-user.math/test-misc
    ptestresult.glibc-user.math/test-float32-clog
    ptestresult.glibc-user.math/test-ifloat32x-erfc
    ptestresult.glibc-user.math/test-float128-fmin
    ptestresult.binutils-ld./home/pokybuild/yocto-worker/qemumips64/build/build-st-22182/tmp/work/mips64r2-poky-linux/binutils-cross-testsuite/2.34-r0/git/ld/testsuite/ld-selective/5.cc: compilation failed
    ptestresult.glibc-user.math/test-double-rint
    ptestresult.glibc-user.math/test-float128-remainder
    ptestresult.gcc-user.gcc.dg/torture/float64x-nan.c   -Os  execution test
    ptestresult.glibc-user.nptl/tst-align-clone
    ptestresult.binutils-ld.indirect5d dynsym
    ptestresult.glibc-user.math/test-float32x-csinh
    ptestresult.glibc-user.math/test-idouble-tgamma
    ptestresult.glibc-user.math/test-ildouble-tgamma
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \t\\.cfi_restore 9\n
    ptestresult.glibc-user.math/test-float64-y1
    ptestresult.glibc-user.math/test-float128-y1
    ptestresult.gcc-user.gcc.target/mips/octeon2-pipe-1.c   -O1   scan-rtl-dump sched2 "octeon_mult\\*17"
    ptestresult.glibc-user.math/test-float32x-round
    ptestresult.glibc-user.math/test-idouble-scalbn
    ptestresult.glibc-user.math/test-ifloat-csinh
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \t\\.cfi_restore 8\n
    ptestresult.binutils-ld.MIPS16e2 link PC-relative operations 0 (n32)
    ptestresult.glibc-user.math/test-float64-canonicalize
    ptestresult.binutils-ld.MIPS relax-jalr n32
    ptestresult.glibc-user.math/test-ifloat32x-lgamma
    ptestresult.glibc-user.math/test-float32x-log10
    ptestresult.gcc-user.gcc.target/mips/octeon3-pipe-1.c   -O1   scan-rtl-dump sched2 "octeon_mult\\*17"
    ptestresult.glibc-user.elf/constload1
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \t\\.cfi_restore 1\n
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-10.c   -O2  (test for excess errors)
    ptestresult.glibc-user.math/test-float64x-sqrt
    ptestresult.glibc-user.math/test-float64x-erf
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-12.c   -O1  (test for excess errors)
    ptestresult.glibc-user.math/test-float-double-add
    ptestresult.gcc-user.gcc.target/mips/mmcount-ra-address-3.c   -Os  (test for excess errors)
    ptestresult.glibc-user.math/test-idouble-scalb
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-7.c   -O3 -g  (test for excess errors)
    ptestresult.glibc-user.math/test-ldouble-exp10
    ptestresult.glibc-user.math/test-float32-atan2
    ptestresult.glibc-user.math/test-float32-creal
    ptestresult.gcc-user.gcc.dg/torture/float32-basic.c   -O0  execution test
    ptestresult.glibc-user.math/test-double-conj
    ptestresult.gcc-user.gcc.dg/torture/float128-ieee-nan.c   -Os  execution test
    ptestresult.glibc-user.math/test-float64x-j1
    ptestresult.glibc-user.math/test-ldouble-fromfpx
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-12.c   -Os  (test for excess errors)
    ptestresult.binutils-ld.PR ld/21375 in shared library (n32, hidden)
    ptestresult.glibc-user.math/test-float64-nearbyint
    ptestresult.glibc-user.math/test-float32x-islessgreater
    ptestresult.glibc-user.nptl/tst-robust8
    ptestresult.glibc-user.math/test-float32x-nextup
    ptestresult.glibc-user.math/test-idouble-sinh
    ptestresult.gcc-libgomp-user.libgomp.c++/../libgomp.c-c++-common/for-5.c execution test
    ptestresult.glibc-user.math/test-float128-fmaxmag
    ptestresult.gcc-user.gcc.target/mips/frame-header-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.math/test-float64x-remquo
    ptestresult.glibc-user.math/test-float32-round
    ptestresult.gcc-user.gcc.dg/tree-prof/time-profiler-2.c scan-ipa-dump-times profile "Read tp_first_run: 3" 1
    ptestresult.glibc-user.math/test-ifloat64-ccos
    ptestresult.glibc-user.math/test-float128-jn
    ptestresult.glibc-user.math/test-double-trunc
    ptestresult.gcc-user.gcc.target/mips/pr91769.c   -O1   scan-assembler lw\t\\$4,0\\(\\$5\\)\n\tlw\t\\$5,4\\(\\$5\\)\n\tmtc1\t\\$4,\\$.*\n\tmthc1\t\\$5,\\$.*
    ptestresult.glibc-user.math/test-float-asin
    ptestresult.gcc-user.gcc.dg/atomic/c11-atomic-exec-5.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  execution test
    ptestresult.glibc-user.math/test-float64-fdim
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2   scan-assembler \t\\.cfi_restore 1\n
    ptestresult.glibc-user.math/test-idouble-nearbyint
    ptestresult.glibc-user.math/test-float-cabs
    ptestresult.gcc-user.gcc.target/mips/cfgcleanup-jalr2.c   -Os   scan-assembler \\.reloc\t1f,R_MIPS_JALR,bar
    ptestresult.glibc-user.math/test-double-log2
    ptestresult.glibc-user.math/test-float64-sincos
    ptestresult.binutils-ld.MIPS ELF xgot reloc n32
    ptestresult.glibc-user.math/test-float32x-cbrt
    ptestresult.binutils-ld.MIPS16 interlinking for local functions 1
    ptestresult.glibc-user.math/test-ifloat32-scalbn
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-8.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.math/test-float32x-islessequal
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O3 -g   scan-assembler \t\\.cfi_restore 7\n
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O1   scan-assembler \t\\.cfi_restore 11\n
    ptestresult.glibc-user.math/test-float64x-atanh
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \t\\.cfi_restore 11\n
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long64.c   -O0  (test for excess errors)
    ptestresult.glibc-user.math/test-ifloat64-expm1
    ptestresult.glibc-user.math/test-float32x-float64-add
    ptestresult.glibc-user.math/test-double-fpclassify
    ptestresult.glibc-user.math/test-ifloat-scalb
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-2.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \t\\.cfi_restore 64\n
    ptestresult.glibc-user.math/test-float32-log2
    ptestresult.glibc-user.math/test-float64x-atan
    ptestresult.glibc-user.math/test-double-roundeven
    ptestresult.gcc-user.gcc.target/mips/fpr-moves-6.c   -Os   scan-assembler \tdmtc1\t\\$10,\\$f0\n
    ptestresult.glibc-user.math/test-float64-j1
    ptestresult.glibc-user.math/test-float64-floor
    ptestresult.binutils-ld.PR ld/21375 in shared library (n32, microMIPS, hidden)
    ptestresult.glibc-user.math/test-ifloat32-exp10
    ptestresult.glibc-user.math/test-double-casinh
    ptestresult.glibc-user.math/test-float64-fmod
    ptestresult.glibc-user.nptl/tst-stackguard1-static
    ptestresult.glibc-user.math/test-ildouble-scalbn
    ptestresult.glibc-user.math/test-ifloat64-fma
    ptestresult.binutils-gas.uld2 -EL (octeon3)
    ptestresult.gcc-user.gcc.target/mips/code-readable-4.c   -O3 -g  (test for excess errors)
    ptestresult.glibc-user.math/test-ildouble-scalb
    ptestresult.binutils-ld./home/pokybuild/yocto-worker/qemumips64/build/build-st-22182/tmp/work/mips64r2-poky-linux/binutils-cross-testsuite/2.34-r0/git/ld/testsuite/ld-selective/1.c: compilation failed
    ptestresult.gcc-user.gcc.target/mips/pr54240.c   -O3 -g   scan-tree-dump phiopt1 "Hoisting adjacent loads"
    ptestresult.glibc-user.math/test-float32-scalbln
    ptestresult.glibc-user.math/test-float64x-ilogb
    ptestresult.glibc-user.math/test-double-nextup
    ptestresult.glibc-user.math/test-float32-nextdown
    ptestresult.glibc-user.math/test-float64x-clog
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \t\\.cfi_restore 12\n
    ptestresult.binutils-gas.MIPS hilo-diff n32/EL (mips64r6)
    ptestresult.glibc-user.math/test-ildouble-sqrt
    ptestresult.glibc-user.math/test-double-remainder
    ptestresult.glibc-user.math/test-float32-fminmag
    ptestresult.glibc-user.math/test-float128-ctanh
    ptestresult.gcc-user.gcc.target/mips/sdata-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/code-readable-4.c   -Os  (test for excess errors)
    ptestresult.glibc-user.math/test-ifloat128-yn
    ptestresult.glibc-user.math/test-ifloat-lrint
    ptestresult.glibc-user.math/test-float-isnormal
    ptestresult.glibc-user.math/test-float32x-issignaling
    ptestresult.gcc-user.gcc.target/mips/sdata-4.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.math/test-float32-roundeven
    ptestresult.glibc-user.math/test-float128-erfc
    ptestresult.glibc-user.math/test-float64-modf
    ptestresult.glibc-user.math/test-float-roundeven
    ptestresult.glibc-user.math/test-float32x-isunordered
    ptestresult.glibc-user.math/test-float-asinh
    ptestresult.gcc-user.gcc.target/mips/mmcount-ra-address-3.c   -O2  (test for excess errors)
    ptestresult.glibc-user.math/test-nearbyint-except
    ptestresult.binutils-ld.ld-elf/eh5
    ptestresult.glibc-user.math/test-float64x-catan
    ptestresult.glibc-user.math/test-float64-hypot
    ptestresult.glibc-user.math/test-ldouble-exp2
    ptestresult.glibc-user.math/test-float64-atan
    ptestresult.glibc-user.math/test-float64-ctan
    ptestresult.glibc-user.math/test-ifloat-expm1
    ptestresult.glibc-user.math/test-float64-tgamma
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long32.c   -Os  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \t\\.cfi_restore 2\n
    ptestresult.glibc-user.math/test-float32-fdim
    ptestresult.gcc-user.gcc.target/mips/insn-pseudo-1.c   -O3 -g   scan-assembler \tbeqz\t\\$[0-9]+,(.L[0-9]+)\n.*\n\\1:\n\t\\.insn\n(?:.L[0-9]+ = \\.\n)?\t\\.end\tunreachable\n
    ptestresult.glibc-user.math/test-float32-asinh
    ptestresult.glibc-user.math/test-double-casin
    ptestresult.glibc-user.math/test-ifloat64x-sqrt
    ptestresult.glibc-user.math/test-float64-csinh
    ptestresult.glibc-user.math/test-ldouble-cacosh
    ptestresult.gcc-g++-user.g++.dg/vect/pr87914.cc  -mmsa -std=c++14 execution test
    ptestresult.glibc-user.math/test-float-cos
    ptestresult.glibc-user.math/test-ifloat64-log
    ptestresult.glibc-user.math/test-ldouble-fdim
    ptestresult.glibc-user.math/test-ifloat128-scalbn
    ptestresult.glibc-user.math/test-float128-erf
    ptestresult.glibc-user.math/test-float128-canonicalize
    ptestresult.gcc-libstdc++-v3-user.27_io/basic_filebuf/underflow/char/10097.cc execution test
    ptestresult.glibc-user.math/test-float-setpayload
    ptestresult.gcc-libgomp-user.libgomp.c++/../libgomp.c-c++-common/for-11.c execution test
    ptestresult.gcc-user.gcc.target/mips/octeon2-pipe-1.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-rtl-dump sched2 "octeon_mult\\*17"
    ptestresult.glibc-user.math/test-float-exp10
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -Os   scan-assembler \t\\.cfi_restore 12\n
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2   scan-assembler \t\\.cfi_restore 2\n
    ptestresult.glibc-user.math/test-float-scalbn
    ptestresult.glibc-user.math/test-double-acosh
    ptestresult.glibc-user.math/test-double-j0
    ptestresult.glibc-user.math/test-float-casinh
    ptestresult.glibc-user.math/test-idouble-hypot
    ptestresult.glibc-user.math/test-float64x-float128-sub
    ptestresult.binutils-ld./home/pokybuild/yocto-worker/qemumips64/build/build-st-22182/tmp/work/mips64r2-poky-linux/binutils-cross-testsuite/2.34-r0/git/ld/testsuite/ld-selective/3.cc: compilation failed
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-4.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.elf/tst-env-setuid
    ptestresult.glibc-user.math/test-float32-conj
    ptestresult.glibc-user.math/test-float64-float64x-add
    ptestresult.glibc-user.math/test-float32-llround
    ptestresult.glibc-user.math/test-float32x-ccosh
    ptestresult.gcc-g++-user.g++.dg/vect/pr84556.cc  -mmsa -std=gnu++17 execution test
    ptestresult.gcc-user.gcc.target/mips/long-calls-pg.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.c-torture/execute/pr64242.c   -Os  execution test
    ptestresult.glibc-user.math/test-ifloat64-tgamma
    ptestresult.glibc-user.math/test-ifloat64x-scalbln
    ptestresult.binutils-gas.MIPS hilo-diff n32/EL (mips64r3)
    ptestresult.glibc-user.math/test-float32x-hypot
    ptestresult.glibc-user.math/test-float32x-sincos
    ptestresult.glibc-user.elf/tst-protected1a
    ptestresult.glibc-user.math/test-ildouble-csinh
    ptestresult.glibc-user.math/test-float32-atanh
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2   scan-assembler \t\\.cfi_restore 8\n
    ptestresult.glibc-user.math/test-float64x-tan
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-2.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \t\\.cfi_restore 65\n
    ptestresult.gcc-user.gcc.target/mips/ds-schedule-1.c   -O1  (test for excess errors)
    ptestresult.glibc-user.math/test-double-isinf
    ptestresult.glibc-user.math/test-ldouble-nexttoward
    ptestresult.glibc-user.math/test-ifloat32x-y1
    ptestresult.glibc-user.math/test-float32x-lrint
    ptestresult.glibc-user.math/test-float32x-isnormal
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O1   scan-assembler \t\\.cfi_restore 13\n
    ptestresult.gcc-user.gcc.target/mips/pr33256.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.math/test-float64-log2
    ptestresult.glibc-user.math/test-float32x-isfinite
    ptestresult.glibc-user.math/test-float-tgamma
    ptestresult.glibc-user.math/test-double-cimag
    ptestresult.glibc-user.math/test-float64-csqrt
    ptestresult.glibc-user.math/test-float32-float64x-sub
    ptestresult.glibc-user.math/test-double-lgamma
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \t\\.cfi_restore 13\n
    ptestresult.glibc-user.math/test-double-atan
    ptestresult.gcc-user.gcc.target/mips/sdata-1.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.math/test-float64-ccosh
    ptestresult.glibc-user.math/test-float32x-totalordermag
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-7.c   -O0  (test for excess errors)
    ptestresult.glibc-user.math/test-ldouble-y0
    ptestresult.glibc-user.math/test-double-lrint
    ptestresult.glibc-user.math/test-ildouble-pow
    ptestresult.gcc-user.gcc.target/mips/octeon3-pipe-1.c   -O2   scan-rtl-dump sched2 "octeon_mult\\*17"
    ptestresult.glibc-user.math/test-float32-nextup
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2   scan-assembler \t\\.cfi_restore 25\n
    ptestresult.glibc-user.math/test-float64-acos
    ptestresult.glibc-user.math/test-float32x-cacosh
    ptestresult.glibc-user.math/test-float32x-nextdown
    ptestresult.gcc-user.gcc.dg/tree-prof/time-profiler-2.c scan-ipa-dump-times profile "Read tp_first_run: 0" 2
    ptestresult.gcc-user.gcc.target/mips/insn-pseudo-4.c   -O3 -g   scan-assembler \tlw\t(\\$[0-9]+),(.L[0-9]+)\n.*\tbeqz\t\\1,(.L[0-9]+)\n.*\n\\3:\n\t\\.insn\n(?:.L[0-9]+ = \\.\n)?\t\\.type\t__pool_unreachable_[0-9]+, @object\n__pool_unreachable_[0-9]+:\n\t\\.align\t2\n\\2:\n\t\\.word\t305419896\n
    ptestresult.glibc-user.math/test-ifloat32x-cosh
    ptestresult.glibc-user.math/test-double-nearbyint
    ptestresult.glibc-user.math/test-float64-float64x-div
    ptestresult.glibc-user.math/test-float32x-fdim
    ptestresult.glibc-user.math/test-float128-scalbln
    ptestresult.gcc-user.gcc.dg/torture/float32-basic.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  execution test
    ptestresult.gcc-g++-user.c-c++-common/spec-barrier-1.c  -std=gnu++98 (test for excess errors)
    ptestresult.glibc-user.math/test-double-expm1
    ptestresult.glibc-user.math/test-double-j1
    ptestresult.glibc-user.math/test-ldouble-acos
    ptestresult.glibc-user.math/test-float-cacosh
    ptestresult.glibc-user.math/test-float64-compat_totalorder
    ptestresult.glibc-user.math/test-float32x-float64x-sub
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -Os   scan-assembler \t\\.cfi_restore 31\n
    ptestresult.glibc-user.math/test-float64-ctanh
    ptestresult.glibc-user.math/test-double-nextafter
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2   scan-assembler \t\\.cfi_restore 24\n
    ptestresult.glibc-user.math/test-ldouble-floor
    ptestresult.glibc-user.rt/tst-mqueue3
    ptestresult.glibc-user.math/test-float64x-frexp
    ptestresult.glibc-user.math/test-float64x-casin
    ptestresult.glibc-user.math/test-ifloat-cosh
    ptestresult.glibc-user.math/test-float32x-scalbln
    ptestresult.glibc-user.math/test-double-ldouble-div
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -Os   scan-assembler \t\\.cfi_restore 4\n
    ptestresult.glibc-user.math/test-fexcept
    ptestresult.glibc-user.math/test-float64x-lgamma
    ptestresult.glibc-user.math/test-double-tanh
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long64.c   -Os  (test for excess errors)
    ptestresult.glibc-user.math/test-idouble-log
    ptestresult.glibc-user.math/test-float64x-islessgreater
    ptestresult.glibc-user.math/test-double-tan
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-2.c   -O3 -g   scan-assembler \t\\.cfi_restore 65\n
    ptestresult.gcc-user.gcc.target/mips/mmcount-ra-address-2.c   -Os  (test for excess errors)
    ptestresult.gcc-user.gcc.c-torture/execute/pr64242.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  execution test
    ptestresult.glibc-user.math/test-float-getpayload
    ptestresult.gcc-user.gcc.target/mips/pr54240.c   -O2   scan-tree-dump phiopt1 "Hoisting adjacent loads"
    ptestresult.binutils-ld.JAL overflow 2
    ptestresult.glibc-user.math/test-float128-llogb
    ptestresult.glibc-user.math/test-ifloat128-fdim
    ptestresult.glibc-user.math/test-ifloat128-exp
    ptestresult.gcc-user.gcc.target/mips/loongson-shift-count-truncated-1.c   -O1  execution test
    ptestresult.gcc-user.gcc.dg/torture/pr52451.c   -O1  execution test
    ptestresult.glibc-user.nptl/test-mutexattr-printers
    ptestresult.glibc-user.math/test-float64-scalbln
    ptestresult.binutils-gas.MIPS hilo-diff n32/EL (octeon)
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \t\\.cfi_restore 65\n
    ptestresult.gcc-user.gcc.target/mips/octeon-pipe-1.c   -O2   scan-rtl-dump sched2 "octeon_mult\\*71"
    ptestresult.glibc-user.math/test-ifloat-fma
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \t\\.cfi_restore 8\n
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long64.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.dg/torture/float128-ieee-nan.c   -O0  execution test
    ptestresult.glibc-user.math/test-float32x-exp
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-9.c   -O0  (test for excess errors)
    ptestresult.glibc-user.math/test-float-lgamma
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O1   scan-assembler \t\\.cfi_restore 1\n
    ptestresult.glibc-user.math/test-double-ldouble-sub
    ptestresult.glibc-user.math/test-float128-asin
    ptestresult.gcc-libstdc++-v3-user.libstdc++-abi/abi_check
    ptestresult.gcc-user.gcc.target/mips/compact-branches-6.c   -Os  (test for excess errors)
    ptestresult.glibc-user.math/test-float128-fmod
    ptestresult.glibc-user.math/test-float64-exp
    ptestresult.glibc-user.nptl/test-condattr-printers
    ptestresult.glibc-user.math/test-float32x-expm1
    ptestresult.glibc-user.math/test-float32-issignaling
    ptestresult.glibc-user.math/test-ldouble-j1
    ptestresult.gcc-user.gcc.dg/torture/fp-int-convert-timode-4.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  execution test
    ptestresult.gcc-user.gcc.dg/vect/pr88598-6.c  -mpaired-single execution test
    ptestresult.glibc-user.math/test-float32x-ilogb
    ptestresult.glibc-user.math/test-float64-issubnormal
    ptestresult.glibc-user.math/test-double-nexttoward
    ptestresult.binutils-gas.MIPS hilo-diff n32/EL (mips64r2)
    ptestresult.glibc-user.math/test-ifloat32x-cexp
    ptestresult.binutils-ld.Place orphan sections (map file check)
    ptestresult.glibc-user.math/test-float64-compat_totalordermag
    ptestresult.glibc-user.math/test-float-j1
    ptestresult.gcc-user.gcc.dg/torture/float32-basic.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  execution test
    ptestresult.glibc-user.math/test-float64x-lround
    ptestresult.glibc-user.math/test-idouble-exp2
    ptestresult.glibc-user.math/test-float-sincos
    ptestresult.glibc-user.math/test-ifloat-lgamma
    ptestresult.glibc-user.rt/tst-cputimer2
    ptestresult.glibc-user.io/tst-statx
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \t\\.cfi_restore 14\n
    ptestresult.gcc-user.gcc.target/mips/loongson-simd.c   -O2  execution test
    ptestresult.glibc-user.math/test-float32x-clog
    ptestresult.binutils-gas.MIPS hilo-diff n32/EL (r4000)
    ptestresult.glibc-user.math/test-float32x-ctanh
    ptestresult.glibc-user.math/test-ldouble-frexp
    ptestresult.gcc-libstdc++-v3-user.experimental/filesystem/operations/last_write_time.cc execution test
    ptestresult.glibc-user.math/test-double-cacos
    ptestresult.glibc-user.math/test-float32x-cimag
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \t\\.cfi_restore 15\n
    ptestresult.glibc-user.math/test-float32x-float128-add
    ptestresult.glibc-user.math/test-float-exp2
    ptestresult.gcc-user.gcc.dg/vect/pr91293-1.c  -mmsa execution test
    ptestresult.glibc-user.math/test-float32x-isnan
    ptestresult.glibc-user.math/test-ifloat64x-y1
    ptestresult.gcc-libgomp-user.libgomp.c/../libgomp.c-c++-common/for-5.c execution test
    ptestresult.glibc-user.math/test-ldouble-atan2
    ptestresult.gcc-user.gcc.dg/torture/pr52451.c   -Os  execution test
    ptestresult.glibc-user.math/test-ifloat128-lrint
    ptestresult.glibc-user.math/test-ifloat64x-llrint
    ptestresult.glibc-user.math/test-ifloat32x-scalbln
    ptestresult.glibc-user.elf/tst-dlopen-nodelete-reloc
    ptestresult.glibc-user.math/test-float32-erf
    ptestresult.glibc-user.math/test-float64x-float128-add
    ptestresult.glibc-user.math/test-float64x-catanh
    ptestresult.glibc-user.math/test-idouble-cexp
    ptestresult.gcc-user.gcc.target/mips/frame-header-4.c   -O3 -g   scan-assembler-not \taddiu\t\\$sp
    ptestresult.glibc-user.math/test-float-modf
    ptestresult.glibc-user.math/test-float32-csinh
    ptestresult.glibc-user.math/test-ifloat32x-ccosh
    ptestresult.glibc-user.math/test-float-yn
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -Os   scan-assembler \t\\.cfi_restore 5\n
    ptestresult.glibc-user.math/test-float32-csqrt
    ptestresult.glibc-user.math/test-fenvinline
    ptestresult.glibc-user.math/test-ldouble-sin
    ptestresult.binutils-ld.ld-mips-elf/attr-gnu-4-10
    ptestresult.glibc-user.math/test-float32-exp2
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long32.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.math/test-idouble-expm1
    ptestresult.gcc-user.gcc.dg/torture/fp-int-convert-timode-4.c   -O1  execution test
    ptestresult.binutils-ld.PR ld/12982
    ptestresult.glibc-user.math/test-ildouble-exp2
    ptestresult.gcc-user.gcc.target/mips/octeon3-pipe-1.c   -O3 -g   scan-rtl-dump sched2 "octeon_mult\\*17"
    ptestresult.glibc-user.math/test-float32x-rint
    ptestresult.glibc-user.math/test-float64x-tanh
    ptestresult.glibc-user.math/test-float32x-clog10
    ptestresult.glibc-user.math/test-double-scalbln
    ptestresult.glibc-user.math/test-float64-log10
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-4.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.math/test-float64x-ctanh
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \t\\.cfi_restore 10\n
    ptestresult.gcc-user.gcc.target/mips/ds-schedule-2.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.math/test-float32x-pow
    ptestresult.gcc-user.gcc.target/mips/mmcount-ra-address-2.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.math/test-float128-acosh
    ptestresult.glibc-user.math/test-ldouble-scalbn
    ptestresult.glibc-user.math/test-fesetexcept
    ptestresult.glibc-user.sysvipc/test-sysvsem
    ptestresult.glibc-user.math/test-float-nextafter
    ptestresult.glibc-user.math/test-float64-fminmag
    ptestresult.glibc-user.math/test-float64-ilogb
    ptestresult.glibc-user.math/test-double-fromfpx
    ptestresult.binutils-ld._gp scope test (n32 versioned library)
    ptestresult.glibc-user.math/test-float128-fminmag
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \t\\.cfi_restore 3\n
    ptestresult.gcc-user.gcc.dg/torture/float128-ieee-nan.c   -O2  execution test
    ptestresult.glibc-user.elf/lateglobal
    ptestresult.gcc-user.gcc.dg/torture/pr52451.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  execution test
    ptestresult.glibc-user.math/test-ifloat32-cosh
    ptestresult.glibc-user.math/test-float128-log2
    ptestresult.glibc-user.math/test-float128-sinh
    ptestresult.glibc-user.math/test-float64-isgreaterequal
    ptestresult.gcc-user.gcc.target/mips/sdata-3.c   -O2  (test for excess errors)
    ptestresult.glibc-user.math/test-double-exp
    ptestresult.binutils-ld.indirect6c dynsym
    ptestresult.gcc-user.gcc.dg/localalias.c execution test
    ptestresult.glibc-user.math/test-float32x-lgamma
    ptestresult.glibc-user.math/test-float32x-tgamma
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \t\\.cfi_restore 7\n
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O3 -g   scan-assembler \t\\.cfi_restore 13\n
    ptestresult.glibc-user.elf/reldep6
    ptestresult.glibc-user.math/test-float-clog10
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-5.c   -Os  (test for excess errors)
    ptestresult.glibc-user.math/test-double-scalb
    ptestresult.glibc-user.math/test-float128-isunordered
    ptestresult.binutils-gas.MIPS hilo-diff n32/EL (xlr)
    ptestresult.glibc-user.math/test-ifloat32-cexp
    ptestresult.glibc-user.math/test-float32-float64-add
    ptestresult.glibc-user.math/test-float-llogb
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long64.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O3 -g   scan-assembler \t\\.cfi_restore 3\n
    ptestresult.gcc-user.gcc.dg/atomic/c11-atomic-exec-5.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  execution test
    ptestresult.glibc-user.math/test-ifloat32-y1
    ptestresult.binutils-ld._gp scope test (n32 shared library)
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \t\\.cfi_restore 6\n
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \t\\.cfi_restore 24\n
    ptestresult.glibc-user.math/test-float128-j0
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O1   scan-assembler \t\\.cfi_restore 5\n
    ptestresult.gcc-user.gcc.target/mips/frame-header-1.c   -O1  (test for excess errors)
    ptestresult.glibc-user.math/test-float32-cexp
    ptestresult.glibc-user.math/test-float64-fmaxmag
    ptestresult.glibc-user.math/test-ifloat32-rint
    ptestresult.glibc-user.math/test-fenv-return
    ptestresult.glibc-user.math/test-float64-lrint
    ptestresult.gcc-user.gcc.target/mips/compact-branches-6.c   -O0  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-2.c   -O2   scan-assembler \t\\.cfi_restore 64\n
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \t\\.cfi_restore 11\n
    ptestresult.gcc-user.gcc.target/mips/frame-header-3.c   -O3 -g  (test for excess errors)
    ptestresult.glibc-user.math/test-float64-ufromfpx
    ptestresult.glibc-user.math/test-float32x-float64x-add
    ptestresult.gcc-user.gcc.target/mips/pr33256.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long32.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.math/test-float64x-fromfpx
    ptestresult.glibc-user.math/test-float-frexp
    ptestresult.glibc-user.math/test-ifloat64x-ccos
    ptestresult.glibc-user.math/test-ldouble-islessgreater
    ptestresult.glibc-user.math/test-ifloat64-scalbn
    ptestresult.glibc-user.math/test-ifloat32x-csin
    ptestresult.gcc-g++-user.c-c++-common/spec-barrier-1.c  -std=gnu++17 (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/frame-header-2.c   -O2  (test for excess errors)
    ptestresult.binutils-gas.MIPS hilo-diff n32/EL (octeon2)
    ptestresult.glibc-user.math/test-float32x-issubnormal
    ptestresult.glibc-user.math/test-float64-sqrt
    ptestresult.glibc-user.math/test-ifloat64-cexp
    ptestresult.gcc-user.gcc.target/mips/sdata-1.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/call-from-init.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/sdata-1.c   -Os  (test for excess errors)
    ptestresult.glibc-user.math/test-ldouble-nextup
    ptestresult.gcc-libstdc++-v3-user.27_io/basic_filebuf/close/char/4879.cc execution test
    ptestresult.glibc-user.math/test-double-isfinite
    ptestresult.glibc-user.math/test-float64x-ufromfpx
    ptestresult.gcc-user.gcc.dg/torture/float128-ieee-nan.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  execution test
    ptestresult.glibc-user.math/test-ifloat128-ccos
    ptestresult.glibc-user.stdlib/tst-strtod-underflow
    ptestresult.glibc-user.nptl/tst-setuid3
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -Os   scan-assembler \t\\.cfi_restore 10\n
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2   scan-assembler \t\\.cfi_restore 5\n
    ptestresult.glibc-user.math/test-float128-clog
    ptestresult.glibc-user.math/test-float64x-cacos
    ptestresult.gcc-user.gcc.target/mips/loongson-shift-count-truncated-1.c   -Os  execution test
    ptestresult.glibc-user.math/test-float-signbit
    ptestresult.glibc-user.math/test-ldouble-jn
    ptestresult.glibc-user.math/test-float64-casin
    ptestresult.glibc-user.math/test-ildouble-csin
    ptestresult.gcc-user.gcc.dg/vect/pr88598-6.c -flto -ffat-lto-objects -mpaired-single execution test
    ptestresult.glibc-user.malloc/tst-mallocfork2
    ptestresult.glibc-user.math/test-ifloat64x-nearbyint
    ptestresult.glibc-user.math/test-float64-cproj
    ptestresult.gcc-user.gcc.dg/torture/pr52451.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  execution test
    ptestresult.glibc-user.math/test-ifloat64-y1
    ptestresult.gcc-user.gcc.target/mips/sdata-4.c   -O2  (test for excess errors)
    ptestresult.glibc-user.math/test-ldouble-fmaxmag
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-5.c   -O2  (test for excess errors)
    ptestresult.glibc-user.math/test-float32x-modf
    ptestresult.binutils-gas.MIPS hilo-diff n32/EL (vr5400)
    ptestresult.glibc-user.math/test-ldouble-ufromfp
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-11.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.math/test-double-ufromfp
    ptestresult.gcc-user.gcc.dg/torture/float128-ieee-nan.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  execution test
    ptestresult.glibc-user.math/test-float64-nextafter
    ptestresult.gcc-user.gcc.target/mips/loongson-shift-count-truncated-1.c   -O0  execution test
    ptestresult.glibc-user.math/test-float64-fmax
    ptestresult.gcc-user.gcc.target/mips/dspr2-MULT.c   -O3 -g   scan-assembler \\$ac1
    ptestresult.binutils-gas.Compact EH EL #1 with personality ID and FDE data
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long64.c   -O1  (test for excess errors)
    ptestresult.glibc-user.math/test-ifloat64-yn
    ptestresult.glibc-user.math/test-ifloat64x-cexp
    ptestresult.glibc-user.math/test-double-exp10
    ptestresult.gcc-user.gcc.dg/tree-ssa/ssa-dom-cse-2.c scan-tree-dump optimized "return 28;"
    ptestresult.binutils-gas.MIPS hilo-diff n32/EL (mips64r5)
    ptestresult.glibc-user.math/test-float-copysign
    ptestresult.glibc-user.wcsmbs/tst-wcstod-round
    ptestresult.glibc-user.math/test-float64x-fromfp
    ptestresult.glibc-user.math/test-ifloat-llrint
    ptestresult.glibc-user.math/test-ldouble-log1p
    ptestresult.glibc-user.nptl/tst-mutex10
    ptestresult.gcc-user.gcc.target/mips/abi-o64-long64.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2   scan-assembler \t\\.cfi_restore 31\n
    ptestresult.glibc-user.math/test-float32-cosh
    ptestresult.glibc-user.math/test-ifloat64-pow
    ptestresult.glibc-user.math/test-ifloat32x-rint
    ptestresult.gcc-user.gcc.target/mips/mmcount-ra-address-2.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-12.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.math/test-float128-atan2
    ptestresult.glibc-user.math/test-float32-rint
    ptestresult.gcc-user.gcc.target/mips/compact-branches-5.c   -O0  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/long-calls-pg.c   -O0  (test for excess errors)
    ptestresult.glibc-user.math/test-float64-llogb
    ptestresult.glibc-user.nptl/tst-robust9
    ptestresult.glibc-user.math/test-float-exp
    ptestresult.gcc-user.gcc.target/mips/pr33256.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.binutils-gas.uld2 -EL (mips64)
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long64.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/call-from-init.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-2.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \t\\.cfi_restore 64\n
    ptestresult.binutils-ld.MIPS reloc estimation 1
    ptestresult.glibc-user.math/test-float128-roundeven
    ptestresult.binutils-ld.ld-mips-elf/attr-gnu-4-3-n32-ph
    ptestresult.binutils-gas.MIPS hilo-diff n32/EL (mips3)
    ptestresult.glibc-user.math/test-float64-isinf
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-8.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.math/test-ildouble-exp10
    ptestresult.glibc-user.math/test-float32x-catanh
    ptestresult.glibc-user.math/test-float-floor
    ptestresult.glibc-user.math/test-float-isinf
    ptestresult.glibc-user.rt/tst-cputimer3
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long64.c   -O2  (test for excess errors)
    ptestresult.glibc-user.math/test-ldouble-scalbln
    ptestresult.glibc-user.math/test-ifloat64x-csinh
    ptestresult.gcc-user.gcc.target/mips/octeon-pipe-1.c   -O1   scan-rtl-dump sched2 "octeon_mult\\*71"
    ptestresult.glibc-user.math/test-float-significand
    ptestresult.gcc-user.gcc.target/mips/sdata-2.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.math/test-float-pow
    ptestresult.glibc-user.math/test-float32x-cos
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O1   scan-assembler \t\\.cfi_restore 64\n
    ptestresult.glibc-user.math/test-float32-isgreater
    ptestresult.gcc-libstdc++-v3-user.27_io/objects/wchar_t/7.cc execution test
    ptestresult.glibc-user.math/test-ifloat32-tgamma
    ptestresult.glibc-user.math/test-float32-exp10
    ptestresult.glibc-user.math/test-float64-ccos
    ptestresult.glibc-user.math/test-float128-sin
    ptestresult.glibc-user.math/test-float64-isfinite
    ptestresult.glibc-user.math/test-ifloat32-yn
    ptestresult.gcc-user.gcc.target/mips/sdata-2.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-10.c   -O3 -g  (test for excess errors)
    ptestresult.glibc-user.math/test-ifloat32x-exp2
    ptestresult.gcc-user.gcc.target/mips/sdata-3.c   -O0  (test for excess errors)
    ptestresult.glibc-user.math/test-float64-isnormal
    ptestresult.gcc-g++-user.g++.dg/vect/slp-pr56812.cc  -mmsa -std=c++14 (test for excess errors)
    ptestresult.glibc-user.math/test-float32x-float128-mul
    ptestresult.glibc-user.math/test-float128-ccosh
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-10.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.math/test-ldouble-scalb
    ptestresult.glibc-user.math/test-float32-frexp
    ptestresult.glibc-user.math/test-float32x-fmod
    ptestresult.glibc-user.nptl/test-cond-printers
    ptestresult.glibc-user.math/test-ildouble-ccos
    ptestresult.glibc-user.math/test-float32-ctan
    ptestresult.gcc-g++-user.g++.dg/opt/devirt2.C  -std=gnu++17 (test for excess errors)
    ptestresult.glibc-user.math/test-float-acos
    ptestresult.glibc-user.math/test-double-fma
    ptestresult.glibc-user.math/test-float64-float64x-sub
    ptestresult.glibc-user.math/test-ifloat64x-fdim
    ptestresult.gcc-user.gcc.target/mips/compact-branches-6.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.math/test-float32x-j1
    ptestresult.gcc-user.gcc.target/mips/compact-branches-6.c   -O1  (test for excess errors)
    ptestresult.gcc-g++-user.g++.dg/vect/slp-pr56812.cc  -mmsa -std=c++17  (test for errors, line 17)
    ptestresult.glibc-user.math/test-float-scalb
    ptestresult.glibc-user.math/test-float128-islessequal
    ptestresult.glibc-user.math/test-float128-atanh
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2   scan-assembler \t\\.cfi_restore 15\n
    ptestresult.glibc-user.math/test-float64-setpayloadsig
    ptestresult.glibc-user.math/test-ifloat64x-log2
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \t\\.cfi_def_cfa_offset 0\n
    ptestresult.binutils-gas.uld2 -EL (vr5400)
    ptestresult.glibc-user.math/test-ifloat128-scalbln
    ptestresult.glibc-user.math/test-float32-nextafter
    ptestresult.gcc-user.gcc.target/mips/octeon3-pipe-1.c   -Os   scan-rtl-dump sched2 "octeon_mult\\*17"
    ptestresult.gcc-user.gcc.dg/pr44194-1.c scan-rtl-dump-not final "insn[: ][^\n]*set \\(mem(?![^\n]*scratch)"
    ptestresult.glibc-user.math/test-float64-yn
    ptestresult.glibc-user.math/test-float32-ufromfp
    ptestresult.gcc-user.gcc.target/mips/sdata-4.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/frame-header-3.c   -Os  (test for excess errors)
    ptestresult.gcc-g++-user.g++.dg/vect/slp-pr56812.cc  -mmsa -std=c++98  (test for errors, line 17)
    ptestresult.glibc-user.math/test-float-iszero
    ptestresult.gcc-user.gcc.target/mips/long-calls-pg.c   -Os  (test for excess errors)
    ptestresult.glibc-user.math/test-ifloat-j0
    ptestresult.glibc-user.math/test-float64-cacosh
    ptestresult.glibc-user.math/test-float128-fmax
    ptestresult.glibc-user.math/test-float32-fmax
    ptestresult.glibc-user.math/test-float-sqrt
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O3 -g   scan-assembler \t\\.cfi_restore 8\n
    ptestresult.glibc-user.math/test-float32x-fmin
    ptestresult.gcc-user.gcc.target/mips/pr33256.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.c-torture/execute/pr64242.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  execution test
    ptestresult.binutils-ld./home/pokybuild/yocto-worker/qemumips64/build/build-st-22182/tmp/work/mips64r2-poky-linux/binutils-cross-testsuite/2.34-r0/git/ld/testsuite/ld-selective/2.c: compilation failed
    ptestresult.glibc-user.math/test-float-totalordermag
    ptestresult.glibc-user.libio/tst-readline
    ptestresult.gcc-libstdc++-v3-user.21_strings/basic_string/modifiers/insert/char/1.cc execution test
    ptestresult.gcc-user.gcc.target/mips/abi-o64-long64.c   -O0  (test for excess errors)
    ptestresult.glibc-user.math/test-float32-fmin
    ptestresult.glibc-user.nptl/tst-robust6
    ptestresult.glibc-user.misc/tst-clone3
    ptestresult.glibc-user.math/test-float128-nextdown
    ptestresult.glibc-user.math/test-ifloat32x-nearbyint
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -Os   scan-assembler \t\\.cfi_restore 3\n
    ptestresult.glibc-user.math/test-float64-iszero
    ptestresult.glibc-user.math/test-float64x-nextafter
    ptestresult.glibc-user.math/test-ldouble-fmax
    ptestresult.gcc-libstdc++-v3-user.21_strings/basic_string/cons/char/1.cc execution test
    ptestresult.glibc-user.math/test-float32-getpayload
    ptestresult.glibc-user.math/test-femode-traps
    ptestresult.gcc-user.gcc.target/mips/loongson-simd.c   -O3 -g  execution test
    ptestresult.gcc-user.gcc.target/mips/compact-branches-5.c   -Os  (test for excess errors)
    ptestresult.glibc-user.math/test-ifloat32-lrint
    ptestresult.glibc-user.math/test-double-log10
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O3 -g   scan-assembler \t\\.cfi_restore 14\n
    ptestresult.gcc-user.gcc.dg/torture/float64x-nan.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  execution test
    ptestresult.glibc-user.math/test-ifloat32x-fma
    ptestresult.binutils-ld.--gc-sections with __start_SECTIONNAME
    ptestresult.glibc-user.math/test-float64x-hypot
    ptestresult.glibc-user.math/test-double-hypot
    ptestresult.gcc-user.gcc.target/mips/frame-header-4.c   -O2   scan-assembler-not \taddiu\t\\$sp
    ptestresult.glibc-user.math/test-ifloat128-fma
    ptestresult.glibc-user.math/test-double-significand
    ptestresult.glibc-user.math/test-float32x-tanh
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long32.c   -O2  (test for excess errors)
    ptestresult.glibc-user.math/test-float-y1
    ptestresult.glibc-user.math/test-double-remquo
    ptestresult.gcc-user.gcc.target/mips/abi-o64-long64.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.math/test-float64x-log10
    ptestresult.gcc-user.gcc.target/mips/sdata-1.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O1   scan-assembler \t\\.cfi_restore 65\n
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long64.c   -O0  (test for excess errors)
    ptestresult.glibc-user.rt/tst-aio4
    ptestresult.gcc-user.gcc.dg/atomic/c11-atomic-exec-5.c   -O0  execution test
    ptestresult.gcc-user.gcc.target/mips/dspr2-MULT.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \\$ac1
    ptestresult.binutils-gas.MIPS hilo-diff n32/EL (micromips)
    ptestresult.glibc-user.math/test-double-islessgreater
    ptestresult.glibc-user.math/test-idouble-ccos
    ptestresult.glibc-user.math/test-ifloat128-csinh
    ptestresult.glibc-user.rt/tst-timer4
    ptestresult.glibc-user.math/test-float32-float64-div
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-11.c   -O0  (test for excess errors)
    ptestresult.binutils-ld.Build libpr16496b.so
    ptestresult.gcc-libstdc++-v3-user.27_io/objects/char/9661-1.cc execution test
    ptestresult.glibc-user.math/test-ifloat32-lgamma
    ptestresult.glibc-user.math/test-float32-j0
    ptestresult.gcc-user.gcc.target/mips/sdata-2.c   -O3 -g  (test for excess errors)
    ptestresult.glibc-user.math/test-idouble-rint
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \t\\.cfi_restore 1\n
    ptestresult.glibc-user.math/test-ldouble-erfc
    ptestresult.glibc-user.math/test-float32-setpayloadsig
    ptestresult.glibc-user.math/test-idouble-sqrt
    ptestresult.glibc-user.math/test-float64-erf
    ptestresult.glibc-user.math/test-double-ctan
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long32.c   -O3 -g  (test for excess errors)
    ptestresult.glibc-user.math/test-float64-nextup
    ptestresult.glibc-user.math/test-float-nextdown
    ptestresult.glibc-user.math/test-float32x-carg
    ptestresult.gcc-user.gcc.target/mips/fpr-moves-6.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \tdmtc1\t\\$10,\\$f0\n
    ptestresult.glibc-user.math/test-float64x-ccos
    ptestresult.glibc-user.math/test-float64-remquo
    ptestresult.glibc-user.math/test-float32x-j0
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-7.c   -O1  (test for excess errors)
    ptestresult.glibc-user.math/test-double-ilogb
    ptestresult.glibc-user.elf/tst-unused-dep
    ptestresult.gcc-user.gcc.target/mips/pr91769.c   -Os   scan-assembler lw\t\\$4,0\\(\\$5\\)\n\tlw\t\\$5,4\\(\\$5\\)\n\tmtc1\t\\$4,\\$.*\n\tmthc1\t\\$5,\\$.*
    ptestresult.glibc-user.math/test-float-isnan
    ptestresult.glibc-user.math/test-float32-ilogb
    ptestresult.glibc-user.math/test-double-fmin
    ptestresult.glibc-user.math/test-double-cexp
    ptestresult.gcc-user.gcc.target/mips/branch-cost-2.c   -Os   scan-assembler \t(movz|movn)\t
    ptestresult.glibc-user.math/test-ifloat32x-csinh
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -Os   scan-assembler \t\\.cfi_restore 11\n
    ptestresult.glibc-user.misc/tst-clone2
    ptestresult.glibc-user.math/test-float32x-signbit
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -Os   scan-assembler \t\\.cfi_restore 9\n
    ptestresult.glibc-user.math/test-float64x-csin
    ptestresult.glibc-user.math/test-float-canonicalize
    ptestresult.glibc-user.math/test-idouble-fma
    ptestresult.gcc-user.gcc.target/mips/frame-header-1.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.math/test-float64-scalbn
    ptestresult.glibc-user.math/test-float-setpayloadsig
    ptestresult.glibc-user.math/test-float64-carg
    ptestresult.glibc-user.math/test-float64-creal
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -Os   scan-assembler \t\\.cfi_restore 65\n
    ptestresult.glibc-user.math/test-ildouble-nearbyint
    ptestresult.glibc-user.math/test-float32x-remainder
    ptestresult.glibc-user.math/test-double-compat_totalorder
    ptestresult.glibc-user.math/test-float-iseqsig
    ptestresult.glibc-user.math/test-ifloat128-expm1
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-4.c   -O3 -g  (test for excess errors)
    ptestresult.glibc-user.math/test-float-iscanonical
    ptestresult.gcc-user.gcc.target/mips/code-readable-4.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/loongson-simd.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  execution test
    ptestresult.glibc-user.math/test-ldouble-ctanh
    ptestresult.binutils-ld._gp scope test (n32 executable)
    ptestresult.glibc-user.math/test-double-ctanh
    ptestresult.glibc-user.elf/dblload
    ptestresult.glibc-user.math/test-float64x-llround
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -Os   scan-assembler \t\\.cfi_restore 14\n
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-5.c   -O3 -g  (test for excess errors)
    ptestresult.glibc-user.math/test-float64-atanh
    ptestresult.glibc-user.math/test-float128-clog10
    ptestresult.glibc-user.math/test-idouble-exp10
    ptestresult.glibc-user.math/test-float32-catan
    ptestresult.glibc-user.math/test-double-signbit
    ptestresult.glibc-user.math/test-float64x-casinh
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \t\\.cfi_restore 4\n
    ptestresult.binutils-ld.undefined symbols in shared lib (dyn reloc)
    ptestresult.binutils-gas.uld2 -EL (sb1)
    ptestresult.glibc-user.nptl/tst-robust4
    ptestresult.gcc-user.gcc.target/mips/cfgcleanup-jalr2.c   -Os   scan-assembler-not \\.set\tnomacro\n\tjalr\t\\$25
    ptestresult.glibc-user.math/test-float64-totalordermag
    ptestresult.glibc-user.math/test-float32-iszero
    ptestresult.glibc-user.math/test-double-modf
    ptestresult.gcc-user.gcc.target/mips/frame-header-2.c   -O3 -g  (test for excess errors)
    ptestresult.glibc-user.math/test-double-ccosh
    ptestresult.glibc-user.math/test-float64x-jn
    ptestresult.glibc-user.math/test-float32x-scalbn
    ptestresult.glibc-user.math/test-float64x-islessequal
    ptestresult.glibc-user.math/test-float-atan
    ptestresult.glibc-user.math/test-float-sin
    ptestresult.glibc-user.math/test-float32x-cacos
    ptestresult.glibc-user.math/test-float32-logb
    ptestresult.glibc-user.math/test-float-compat_totalordermag
    ptestresult.glibc-user.math/test-float-trunc
    ptestresult.binutils-gas.MIPS hilo-diff n32/EL (r5900)
    ptestresult.glibc-user.math/test-float-double-mul
    ptestresult.glibc-user.math/test-float64x-cbrt
    ptestresult.glibc-user.math/test-float128-fromfpx
    ptestresult.gcc-user.gcc.dg/pr44194-1.c scan-rtl-dump dse1 "global deletions = (2|3)"
    ptestresult.glibc-user.math/test-float64x-cosh
    ptestresult.glibc-user.math/test-float128-scalbn
    ptestresult.glibc-user.math/test-float64-round
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O1   scan-assembler \t\\.cfi_restore 4\n
    ptestresult.glibc-user.math/test-float64-cpow
    ptestresult.glibc-user.math/test-float128-floor
    ptestresult.glibc-user.math/test-float32-j1
    ptestresult.glibc-user.math/test-float64-signbit
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O3 -g   scan-assembler \t\\.cfi_restore 1\n
    ptestresult.glibc-user.math/test-ifloat32x-ccos
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O1   scan-assembler \t\\.cfi_restore 24\n
    ptestresult.glibc-user.math/test-double-asinh
    ptestresult.glibc-user.iconv/tst-iconv_prog
    ptestresult.binutils-ld.ld-mips-elf/attr-gnu-4-1-n32-ph
    ptestresult.gcc-user.gcc.target/mips/pr91769.c   -O2   scan-assembler lw\t\\$4,0\\(\\$5\\)\n\tlw\t\\$5,4\\(\\$5\\)\n\tmtc1\t\\$4,\\$.*\n\tmthc1\t\\$5,\\$.*
    ptestresult.glibc-user.math/test-float32x-llrint
    ptestresult.glibc-user.math/test-nearbyint-except-2
    ptestresult.glibc-user.nptl/test-mutex-printers
    ptestresult.glibc-user.math/test-ldouble-cosh
    ptestresult.glibc-user.math/test-ildouble-cexp
    ptestresult.binutils-gas.MIPS hilo-diff n32/EL (sb1)
    ptestresult.binutils-ld.MIPS JALX to unaligned symbol with addend 0
    ptestresult.glibc-user.math/test-idouble-y1
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-9.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.math/test-float64-llround
    ptestresult.glibc-user.math/test-idouble-lrint
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-2.c   -O1   scan-assembler \t\\.cfi_restore 64\n
    ptestresult.glibc-user.math/test-float64x-ccosh
    ptestresult.gcc-user.gcc.target/mips/dspr2-MULT.c   -O2   scan-assembler \\$ac1
    ptestresult.glibc-user.math/test-ldouble-fminmag
    ptestresult.glibc-user.math/test-float32-remainder
    ptestresult.binutils-ld.GOT dump (readelf -A) test 1
    ptestresult.glibc-user.math/test-float32x-exp2
    ptestresult.glibc-user.math/test-ifloat64-nearbyint
    ptestresult.gcc-user.gcc.dg/torture/float64x-nan.c   -O3 -g  execution test
    ptestresult.glibc-user.math/test-float32-ufromfpx
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O3 -g   scan-assembler \t\\.cfi_restore 15\n
    ptestresult.glibc-user.math/test-ildouble-scalbln
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-5.c   -O1  (test for excess errors)
    ptestresult.glibc-user.math/test-ldouble-isgreater
    ptestresult.binutils-gas.uld2 -EL (micromips)
    ptestresult.glibc-user.math/test-float-ldouble-div
    ptestresult.glibc-user.math/test-float64-conj
    ptestresult.glibc-user.math/test-ldouble-sinh
    ptestresult.glibc-user.math/test-ifloat32-csinh
    ptestresult.glibc-user.stdlib/tst-secure-getenv
    ptestresult.glibc-user.math/test-float64x-csinh
    ptestresult.glibc-user.math/test-ldouble-sqrt
    ptestresult.gcc-g++-user.g++.dg/vect/pr87914.cc  -mmsa -std=c++98 execution test
    ptestresult.binutils-ld.PR ld/21375 in shared library (n32, microMIPS)
    ptestresult.glibc-user.math/test-float32x-float64-sub
    ptestresult.glibc-user.posix/tst-posix_spawn-setsid
    ptestresult.gcc-user.gcc.target/mips/compact-branches-5.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.math/test-ildouble-lgamma
    ptestresult.glibc-user.math/test-ldouble-csin
    ptestresult.gcc-user.gcc.target/mips/frame-header-4.c   -O1   scan-assembler-not \taddiu\t\\$sp
    ptestresult.glibc-user.math/test-ifloat64-csin
    ptestresult.glibc-user.math/test-ifloat128-csin
    ptestresult.glibc-user.math/test-float32-ccosh
    ptestresult.glibc-user.math/test-float64x-remainder
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \t\\.cfi_def_cfa_offset 0\n
    ptestresult.glibc-user.math/test-double-csin
    ptestresult.binutils-ld.PR ld/15323 (4)
    ptestresult.glibc-user.math/test-float64x-modf
    ptestresult.glibc-user.math/test-float32-totalordermag
    ptestresult.glibc-user.math/test-float-ctan
    ptestresult.glibc-user.math/test-ifloat128-lgamma
    ptestresult.glibc-user.math/test-double-lround
    ptestresult.glibc-user.malloc/tst-mxfast
    ptestresult.binutils-gas.uld2 -EL (mips3)
    ptestresult.glibc-user.math/test-double-totalordermag
    ptestresult.glibc-user.math/test-float32-float128-div
    ptestresult.gcc-user.gcc.target/mips/frame-header-2.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.math/test-float32-cabs
    ptestresult.gcc-user.c-c++-common/spec-barrier-1.c  -Wc++-compat  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-8.c   -Os  (test for excess errors)
    ptestresult.glibc-user.math/test-double-tgamma
    ptestresult.glibc-user.math/test-float64x-y0
    ptestresult.gcc-user.gcc.dg/torture/fp-int-convert-timode-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  execution test
    ptestresult.glibc-user.math/test-float128-cacos
    ptestresult.gcc-g++-user.g++.dg/vect/slp-pr56812.cc  -mmsa -std=c++98 (test for excess errors)
    ptestresult.glibc-user.math/test-float64x-float128-mul
    ptestresult.glibc-user.math/test-ifloat64x-lrint
    ptestresult.glibc-user.math/test-double-acos
    ptestresult.glibc-user.nptl/tst-create-detached
    ptestresult.glibc-user.math/test-ldouble-catan
    ptestresult.glibc-user.math/test-ldouble-log
    ptestresult.glibc-user.math/test-ifloat32-sqrt
    ptestresult.gcc-user.gcc.dg/torture/float32-basic.c   -O2  execution test
    ptestresult.glibc-user.math/test-float64x-isless
    ptestresult.glibc-user.math/test-ifloat64-exp10
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -Os   scan-assembler \t\\.cfi_restore 8\n
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-5.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.math/test-float64x-pow
    ptestresult.glibc-user.math/test-float-tan
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long64.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.nptl/tst-robust3
    ptestresult.glibc-user.math/test-ifloat64-erfc
    ptestresult.glibc-user.math/test-double-setpayloadsig
    ptestresult.glibc-user.math/test-float128-acos
    ptestresult.glibc-user.math/test-double-ufromfpx
    ptestresult.glibc-user.math/test-float32x-fmaxmag
    ptestresult.glibc-user.math/test-ifloat-exp
    ptestresult.gcc-user.gcc.target/mips/abi-o64-long64.c   -Os  (test for excess errors)
    ptestresult.binutils-ld.tmpdir/pr22263-1a.s: assembly failed
    ptestresult.glibc-user.math/test-ifloat-exp10
    ptestresult.glibc-user.rt/tst-cputimer1
    ptestresult.glibc-user.math/test-float32-issubnormal
    ptestresult.glibc-user.math/test-ldouble-clog
    ptestresult.glibc-user.math/test-ifloat64x-rint
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long32.c   -O1  (test for excess errors)
    ptestresult.glibc-user.math/test-float32x-casinh
    ptestresult.glibc-user.math/test-ifloat32x-fdim
    ptestresult.glibc-user.math/test-float64x-exp10
    ptestresult.gcc-user.gcc.target/mips/insn-pseudo-2.c   -O3 -g   scan-assembler \tbeqz\t\\$[0-9]+,(.L[0-9]+)\n.*\n\\1:\n\t\\.insn\n(?:.L[0-9]+ = \\.\n)?\t\\.end\tunreachable\n
    ptestresult.glibc-user.math/test-float64-float128-mul
    ptestresult.glibc-user.math/test-double-catan
    ptestresult.glibc-user.math/test-float128-rint
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O3 -g   scan-assembler \t\\.cfi_restore 24\n
    ptestresult.glibc-user.math/test-float-atan2
    ptestresult.glibc-user.math/test-float32x-canonicalize
    ptestresult.glibc-user.math/test-float32x-ufromfp
    ptestresult.glibc-user.math/test-ifloat32-scalbln
    ptestresult.gcc-user.gcc.dg/tree-ssa/pr84512.c scan-tree-dump optimized "return 285;"
    ptestresult.glibc-user.math/test-float32x-ccos
    ptestresult.gcc-user.gcc.target/mips/loongson-shift-count-truncated-1.c   -O3 -g  execution test
    ptestresult.glibc-user.math/test-ifloat-sinh
    ptestresult.glibc-user.math/test-float-ldouble-mul
    ptestresult.glibc-user.math/test-ifloat32x-ctanh
    ptestresult.glibc-user.math/test-float64-remainder
    ptestresult.glibc-user.rt/tst-mqueue5
    ptestresult.glibc-user.math/test-float32-isnormal
    ptestresult.glibc-user.math/test-float64x-roundeven
    ptestresult.gcc-user.gcc.target/mips/ds-schedule-1.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.math/test-ifloat-ccos
    ptestresult.glibc-user.math/test-float64-cacos
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long32.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.math/test-float32x-iseqsig
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \t\\.cfi_restore 7\n
    ptestresult.glibc-user.math/test-ifloat128-ccosh
    ptestresult.glibc-user.math/test-float64-setpayload
    ptestresult.gcc-user.gcc.dg/torture/float64x-nan.c   -O2  execution test
    ptestresult.glibc-user.math/test-float64x-llrint
    ptestresult.glibc-user.math/test-ifloat128-y1
    ptestresult.glibc-user.math/test-float-fpclassify
    ptestresult.binutils-gas.Compact EH EL #7 with personality id and fallback FDE
    ptestresult.glibc-user.math/test-float128-sqrt
    ptestresult.glibc-user.math/test-float64x-erfc
    ptestresult.glibc-user.math/test-float64x-expm1
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-9.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.math/test-float32x-ceil
    ptestresult.glibc-user.math/test-float-scalbln
    ptestresult.glibc-user.math/test-float32x-copysign
    ptestresult.glibc-user.math/test-float-conj
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O1   scan-assembler \t\\.cfi_restore 31\n
    ptestresult.glibc-user.math/test-float32-islessgreater
    ptestresult.glibc-user.math/test-float64x-fmax
    ptestresult.glibc-user.math/test-float32-setpayload
    ptestresult.glibc-user.math/test-float-issubnormal
    ptestresult.glibc-user.math/test-float-cacos
    ptestresult.glibc-user.nptl/tst-stackguard1
    ptestresult.glibc-user.math/test-double-cosh
    ptestresult.glibc-user.math/test-ifloat64-ctanh
    ptestresult.glibc-user.math/test-float-fromfpx
    ptestresult.gcc-user.gcc.target/mips/ds-schedule-1.c   -O3 -g  (test for excess errors)
    ptestresult.glibc-user.math/test-ifloat64-scalbln
    ptestresult.glibc-user.math/test-float32-fmaxmag
    ptestresult.glibc-user.math/test-float-islessgreater
    ptestresult.glibc-user.math/test-ldouble-nextdown
    ptestresult.gcc-user.gcc.target/mips/sdata-4.c   -O1  (test for excess errors)
    ptestresult.glibc-user.math/test-float32-clog10
    ptestresult.gcc-g++-user.c-c++-common/spec-barrier-1.c  -std=gnu++14 (test for excess errors)
    ptestresult.glibc-user.math/test-ifloat32-sinh
    ptestresult.glibc-user.math/test-float64-catanh
    ptestresult.glibc-user.math/test-float128-casin
    ptestresult.glibc-user.math/test-float-lrint
    ptestresult.glibc-user.math/test-float-catan
    ptestresult.glibc-user.math/test-float128-pow
    ptestresult.glibc-user.math/test-ldouble-ccos
    ptestresult.binutils-ld.--gc-sections with KEEP
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long32.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.math/test-float128-catanh
    ptestresult.glibc-user.math/test-float64x-fmaxmag
    ptestresult.glibc-user.math/test-float-cimag
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long64.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \t\\.cfi_restore 5\n
    ptestresult.glibc-user.math/test-float-expm1
    ptestresult.gcc-user.gcc.dg/torture/fp-int-convert-timode-4.c   -O2  execution test
    ptestresult.glibc-user.math/test-float128-j1
    ptestresult.glibc-user.gmon/tst-gmon-gprof
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O1   scan-assembler \t\\.cfi_restore 10\n
    ptestresult.glibc-user.math/test-float-cpow
    ptestresult.glibc-user.math/test-float64-isunordered
    ptestresult.glibc-user.math/test-float128-nextafter
    ptestresult.glibc-user.math/test-ifloat32x-exp
    ptestresult.binutils-ld.ld-elf/group3a
    ptestresult.binutils-ld.ld-elf/orphan-region
    ptestresult.glibc-user.malloc/tst-malloc-thread-fail
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \t\\.cfi_restore 31\n
    ptestresult.gcc-user.gcc.target/mips/octeon2-pipe-1.c   -Os   scan-rtl-dump sched2 "octeon_mult\\*17"
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O1   scan-assembler \t\\.cfi_def_cfa_offset 0\n
    ptestresult.glibc-user.math/test-idouble-ccosh
    ptestresult.glibc-user.math/test-float32x-atanh
    ptestresult.glibc-user.math/test-double-log
    ptestresult.glibc-user.math/test-float32-carg
    ptestresult.glibc-user.math/test-float32-float128-add
    ptestresult.glibc-user.math/test-idouble-erfc
    ptestresult.glibc-user.math/test-float64-erfc
    ptestresult.glibc-user.nptl/tst-robust2
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long64.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.math/test-float64-logb
    ptestresult.glibc-user.math/test-double-llrint
    ptestresult.binutils-gas.gas/mips/align2-el
    ptestresult.glibc-user.math/test-float-ccosh
    ptestresult.glibc-user.math/test-double-issignaling
    ptestresult.gcc-user.gcc.target/mips/frame-header-1.c   -O3 -g  (test for excess errors)
    ptestresult.binutils.dotnet-assemblies (ordinary x86 DLL)
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long32.c   -O0  (test for excess errors)
    ptestresult.binutils-ld.GOT page 7 (order 1)
    ptestresult.binutils-ld.ld-elf/orphan
    ptestresult.binutils-ld.GOT page test 3
    ptestresult.glibc-user.math/test-ldouble-logb
    ptestresult.glibc-user.math/test-float32-totalorder
    ptestresult.glibc-user.math/test-ifloat64-fdim
    ptestresult.gcc-user.gcc.dg/torture/pr52451.c   -O2  execution test
    ptestresult.glibc-user.math/test-float32x-floor
    ptestresult.glibc-user.math/test-float32-log
    ptestresult.glibc-user.math/test-double-ceil
    ptestresult.glibc-user.math/test-float32-fromfpx
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-8.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.dg/torture/float128-ieee-nan.c   -O3 -g  execution test
    ptestresult.glibc-user.nptl/tst-getpid1
    ptestresult.glibc-user.math/test-float32-hypot
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O1   scan-assembler \t\\.cfi_restore 15\n
    ptestresult.glibc-user.math/test-float32-tgamma
    ptestresult.glibc-user.elf/tst-env-setuid-tunables
    ptestresult.glibc-user.math/test-float32-sqrt
    ptestresult.glibc-user.math/test-float32-float64x-div
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -Os   scan-assembler \t\\.cfi_restore 25\n
    ptestresult.glibc-user.math/test-ifloat-tgamma
    ptestresult.glibc-user.math/test-float128-tan
    ptestresult.glibc-user.math/test-float64x-csqrt
    ptestresult.glibc-user.math/test-float-log1p
    ptestresult.glibc-user.math/test-ldouble-lgamma
    ptestresult.binutils-gas.Compact EH EL #3 with personality id and large FDE data
    ptestresult.glibc-user.math/test-float64-totalorder
    ptestresult.gcc-user.gcc.target/mips/long-calls-pg.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.math/test-ildouble-rint
    ptestresult.glibc-user.rt/tst-mqueue6
    ptestresult.binutils-ld.PR ld/19317 (2)
    ptestresult.glibc-user.math/test-float32x-conj
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O1   scan-assembler \t\\.cfi_restore 7\n
    ptestresult.glibc-user.math/test-float-ilogb
    ptestresult.gcc-user.gcc.target/mips/frame-header-1.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.math/test-float128-llrint
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-12.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-5.c   -O0  (test for excess errors)
    ptestresult.glibc-user.math/test-float64-fromfp
    ptestresult.glibc-user.math/test-double-y0
    ptestresult.gcc-user.gcc.target/mips/octeon2-pipe-1.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-rtl-dump sched2 "octeon_mult\\*17"
    ptestresult.gcc-user.gcc.target/mips/abi-o64-long64.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-11.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.dg/vect/pr89440.c -flto -ffat-lto-objects -mpaired-single execution test
    ptestresult.binutils-ld.ld-mips-elf/no-shared-1-n32
    ptestresult.gcc-user.gcc.target/mips/call-from-init.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-2.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \t\\.cfi_restore 65\n
    ptestresult.glibc-user.math/test-double-isnormal
    ptestresult.glibc-user.math/test-float32-float32x-sub
    ptestresult.gcc-user.gcc.target/mips/compact-branches-6.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/compact-branches-5.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O3 -g   scan-assembler \t\\.cfi_restore 25\n
    ptestresult.binutils-ld.ld-mips-elf/pie-n32
    ptestresult.glibc-user.math/test-fenv-tls
    ptestresult.glibc-user.math/test-float32-asin
    ptestresult.gcc-user.gcc.target/mips/frame-header-4.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler-not \taddiu\t\\$sp
    ptestresult.glibc-user.math/test-double-erf
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-11.c   -O3 -g  (test for excess errors)
    ptestresult.glibc-user.math/test-float-fmin
    ptestresult.glibc-user.math/test-ifloat-pow
    ptestresult.glibc-user.math/test-double-setpayload
    ptestresult.gcc-user.gcc.target/mips/octeon-pipe-1.c   -O3 -g   scan-rtl-dump sched2 "octeon_mult\\*71"
    ptestresult.glibc-user.math/test-ldouble-llogb
    ptestresult.gcc-user.gcc.target/mips/frame-header-1.c   -Os  (test for excess errors)
    ptestresult.glibc-user.math/test-float32x-yn
    ptestresult.gcc-user.gcc.target/mips/insn-pseudo-3.c   -O3 -g   scan-assembler \tbeqz\t\\$[0-9]+,(.L[0-9]+)\n.*\n\\1:\n\t\\.insn\n(?:.L[0-9]+ = \\.\n)?\t\\.end\tunreachable\n
    ptestresult.glibc-user.math/test-float-carg
    ptestresult.binutils-ld.GOT page 7 (order 2)
    ptestresult.glibc-user.math/test-float64x-fdim
    ptestresult.glibc-user.math/test-float32x-sqrt
    ptestresult.glibc-user.malloc/tst-malloc-tcache-leak
    ptestresult.glibc-user.math/test-float128-sincos
    ptestresult.glibc-user.math/test-float-ldouble-add
    ptestresult.glibc-user.math/test-float-isgreaterequal
    ptestresult.gcc-libstdc++-v3-user.27_io/filesystem/operations/last_write_time.cc execution test
    ptestresult.glibc-user.math/test-float32-isnan
    ptestresult.binutils-gas.uld2 -EL (mips4)
    ptestresult.binutils-gas.uld2 -EL (octeon2)
    ptestresult.glibc-user.math/test-float128-fromfp
    ptestresult.glibc-user.math/test-float-y0
    ptestresult.binutils-ld.indirect5c dynsym
    ptestresult.glibc-user.math/test-float-isfinite
    ptestresult.glibc-user.math/test-float32-y0
    ptestresult.glibc-user.math/test-double-scalbn
    ptestresult.glibc-user.math/test-float128-asinh
    ptestresult.glibc-user.math/test-ifloat64x-exp
    ptestresult.glibc-user.malloc/tst-malloc-usable-tunables
    ptestresult.gcc-user.gcc.dg/torture/pr52451.c   -O0  execution test
    ptestresult.gcc-user.gcc.target/mips/pr54240.c   -Os   scan-tree-dump phiopt1 "Hoisting adjacent loads"
    ptestresult.glibc-user.math/test-float128-expm1
    ptestresult.glibc-user.math/test-float32-cacosh
    ptestresult.glibc-user.math/test-float64x-isgreaterequal
    ptestresult.gcc-user.gcc.target/mips/compact-branches-6.c   -O3 -g  (test for excess errors)
    ptestresult.glibc-user.math/test-float32-sincos
    ptestresult.glibc-user.math/test-ldouble-ceil
    ptestresult.gcc-user.gcc.target/mips/call-from-init.c   -O3 -g  (test for excess errors)
    ptestresult.glibc-user.math/test-float32-log1p
    ptestresult.gcc-user.gcc.target/mips/call-from-init.c   -Os  (test for excess errors)
    ptestresult.glibc-user.math/test-float32-fabs
    ptestresult.glibc-user.math/test-float32-cos
    ptestresult.glibc-user.math/test-ldouble-iseqsig
    ptestresult.glibc-user.math/test-float-log
    ptestresult.binutils-ld.Emit relocs 1
    ptestresult.glibc-user.math/test-float-log2
    ptestresult.glibc-user.math/test-float32-float32x-div
    ptestresult.gcc-libgomp-user.libgomp.c/../libgomp.c-c++-common/for-11.c execution test
    ptestresult.glibc-user.math/test-float128-yn
    ptestresult.gcc-user.gcc.dg/torture/float64x-nan.c   -O0  execution test
    ptestresult.glibc-user.math/test-float64-issignaling
    ptestresult.glibc-user.math/test-float64x-log2
    ptestresult.glibc-user.math/test-float-jn
    ptestresult.glibc-user.math/test-float128-lrint
    ptestresult.glibc-user.math/test-float64-cos
    ptestresult.glibc-user.math/test-double-fabs
    ptestresult.glibc-user.math/test-float32x-fpclassify
    ptestresult.glibc-user.math/test-double-issubnormal
    ptestresult.glibc-user.math/test-float64-y0
    ptestresult.glibc-user.math/test-double-sqrt
    ptestresult.gcc-user.gcc.target/mips/octeon2-pipe-1.c   -O3 -g   scan-rtl-dump sched2 "octeon_mult\\*17"
    ptestresult.glibc-user.math/test-ldouble-isunordered
    ptestresult.gcc-user.gcc.dg/vect/pr89440.c  -mpaired-single execution test
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2   scan-assembler \t\\.cfi_restore 13\n
    ptestresult.glibc-user.math/test-ldouble-nearbyint
    ptestresult.gcc-user.gcc.target/mips/fpr-moves-6.c   -O2   scan-assembler \tdmtc1\t\\$10,\\$f0\n
    ptestresult.glibc-user.math/test-double-islessequal
    ptestresult.glibc-user.math/test-float32-jn
    ptestresult.glibc-user.elf/tst-stackguard1-static
    ptestresult.glibc-user.math/test-float128-log1p
    ptestresult.glibc-user.math/test-float64-cexp
    ptestresult.gcc-user.gcc.target/mips/sdata-4.c   -O0  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O1   scan-assembler \t\\.cfi_restore 6\n
    ptestresult.glibc-user.math/test-ifloat32-exp2
    ptestresult.glibc-user.math/test-float32-iseqsig
    ptestresult.glibc-user.math/test-float64-cabs
    ptestresult.gcc-user.gcc.dg/torture/fp-int-convert-timode-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  execution test
    ptestresult.glibc-user.math/test-double-isgreater
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-4.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-11.c   -O1  (test for excess errors)
    ptestresult.glibc-user.math/test-float128-isgreaterequal
    ptestresult.gcc-user.gcc.target/mips/octeon3-pipe-1.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-rtl-dump sched2 "octeon_mult\\*17"
    ptestresult.glibc-user.math/test-float32-cbrt
    ptestresult.glibc-user.math/test-float-cosh
    ptestresult.binutils-ld.ld-mips-elf/attr-gnu-4-0-n32-ph
    ptestresult.glibc-user.math/test-float64x-j0
    ptestresult.glibc-user.math/test-ldouble-casin
    ptestresult.gcc-user.gcc.target/mips/sdata-2.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \t\\.cfi_restore 25\n
    ptestresult.glibc-user.rt/tst-timer5
    ptestresult.glibc-user.math/test-float64x-trunc
    ptestresult.gcc-g++-user.g++.dg/opt/devirt2.C  -std=gnu++14 (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O3 -g   scan-assembler \t\\.cfi_restore 10\n
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -Os   scan-assembler \t\\.cfi_restore 15\n
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-2.c   -O2   scan-assembler \t\\.cfi_restore 65\n
    ptestresult.gcc-user.gcc.dg/torture/fp-int-convert-timode-3.c   -O1  execution test
    ptestresult.glibc-user.math/test-float32x-setpayloadsig
    ptestresult.gcc-user.gcc.target/mips/code-readable-4.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.math/test-double-cpow
    ptestresult.glibc-user.math/test-float64-islessgreater
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \t\\.cfi_restore 65\n
    ptestresult.glibc-user.math/test-double-fminmag
    ptestresult.glibc-user.math/test-ildouble-yn
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2   scan-assembler \t\\.cfi_restore 10\n
    ptestresult.glibc-user.math/test-double-copysign
    ptestresult.gcc-user.gcc.target/mips/mmcount-ra-address-2.c   -O2  (test for excess errors)
    ptestresult.glibc-user.math/test-float64-trunc
    ptestresult.glibc-user.math/test-float32x-ctan
    ptestresult.gcc-user.gcc.target/mips/frame-header-4.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler-not \taddiu\t\\$sp
    ptestresult.glibc-user.math/test-float32-pow
    ptestresult.glibc-user.math/test-ifloat32x-pow
    ptestresult.gcc-libstdc++-v3-user.27_io/basic_filebuf/seekoff/char/26777.cc execution test
    ptestresult.glibc-user.math/test-float32x-asinh
    ptestresult.gcc-user.gcc.target/mips/sdata-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.math/test-float32x-catan
    ptestresult.glibc-user.math/test-float-atanh
    ptestresult.glibc-user.math/test-float32x-atan2
    ptestresult.glibc-user.math/test-float64-asinh
    ptestresult.glibc-user.math/test-double-iszero
    ptestresult.glibc-user.math/test-double-cbrt
    ptestresult.binutils-ld.PR ld/21375 in shared library (n32)
    ptestresult.glibc-user.math/test-float32x-getpayload
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-12.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.dg/torture/fp-int-convert-timode-4.c   -O3 -g  execution test
    ptestresult.glibc-user.math/test-float64x-fmin
    ptestresult.glibc-user.math/test-float64x-scalbln
    ptestresult.gcc-user.gcc.target/mips/ds-schedule-1.c   -O2  (test for excess errors)
    ptestresult.glibc-user.math/test-float64-isgreater
    ptestresult.glibc-user.math/test-float32-cproj
    ptestresult.glibc-user.math/test-float32-atan
    ptestresult.glibc-user.math/test-ifloat64-exp2
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.math/test-float32-compat_totalorder
    ptestresult.glibc-user.math/test-double-fmax
    ptestresult.gcc-user.gcc.target/mips/mmcount-ra-address-3.c   -O3 -g  (test for excess errors)
    ptestresult.binutils-ld.MIPS Compact EH 6
    ptestresult.binutils-ld.MIPS rel32 n32
    ptestresult.glibc-user.math/test-float128-hypot
    ptestresult.glibc-user.math/test-ifloat32x-scalbn
    ptestresult.glibc-user.gmon/tst-gmon-static-gprof
    ptestresult.glibc-user.math/test-float32-signbit
    ptestresult.glibc-user.math/test-float128-trunc
    ptestresult.glibc-user.math/test-float32x-remquo
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O3 -g   scan-assembler \t\\.cfi_restore 6\n
    ptestresult.glibc-user.math/test-float32x-isless
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-5.c   -O3 -fomit-frame-pointer -funroll-loops -fpeel-loops -ftracer -finline-functions  (test for excess errors)
    ptestresult.glibc-user.math/test-float32x-cpow
    ptestresult.gcc-user.gcc.dg/vect/pr88598-3.c  -mpaired-single execution test
    ptestresult.binutils-ld.ld-mips-elf/attr-gnu-4-2-n32-ph
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-4.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2   scan-assembler \t\\.cfi_restore 64\n
    ptestresult.gcc-user.gcc.target/mips/octeon3-pipe-1.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-rtl-dump sched2 "octeon_mult\\*17"
    ptestresult.glibc-user.math/test-float32-isgreaterequal
    ptestresult.glibc-user.math/test-double-clog
    ptestresult.binutils-gas.Compact EH EL #6 with personality id, LSDA and large FDE data
    ptestresult.glibc-user.math/test-float32-acosh
    ptestresult.gcc-user.gcc.target/mips/mmcount-ra-address-3.c   -O1  (test for excess errors)
    ptestresult.glibc-user.math/test-float32x-exp10
    ptestresult.gcc-user.gcc.dg/torture/fp-int-convert-timode-3.c   -O2  execution test
    ptestresult.glibc-user.math/test-ldouble-fmin
    ptestresult.glibc-user.math/test-float64x-fminmag
    ptestresult.binutils-ld.overlay size (map file check)
    ptestresult.binutils-ld.MIPS eh-frame 1, n32
    ptestresult.glibc-user.nptl/tst-robust7
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-2.c   -O1   scan-assembler \t\\.cfi_restore 65\n
    ptestresult.glibc-user.math/test-float32-csin
    ptestresult.glibc-user.math/test-ldouble-ilogb
    ptestresult.glibc-user.elf/tst-ptrguard1
    ptestresult.glibc-user.math/test-double-catanh
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -Os   scan-assembler \t\\.cfi_restore 7\n
    ptestresult.gcc-user.gcc.target/mips/frame-header-2.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.math/test-float-cbrt
    ptestresult.glibc-user.math/test-float128-cos
    ptestresult.glibc-user.math/test-float128-csqrt
    ptestresult.gcc-user.gcc.dg/torture/fp-int-convert-timode-4.c   -O0  execution test
    ptestresult.glibc-user.math/test-float32-llogb
    ptestresult.glibc-user.math/test-float32-trunc
    ptestresult.glibc-user.nptl/tst-robust5
    ptestresult.gcc-user.gcc.target/mips/frame-header-2.c   -Os  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-10.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long64.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-4.c   -Os  (test for excess errors)
    ptestresult.glibc-user.math/test-float128-log
    ptestresult.glibc-user.math/test-ldouble-ccosh
    ptestresult.glibc-user.math/test-ldouble-expm1
    ptestresult.glibc-user.math/test-ifloat64x-exp2
    ptestresult.glibc-user.math/test-float-ufromfpx
    ptestresult.glibc-user.math/test-ldouble-csqrt
    ptestresult.glibc-user.math/test-double-cabs
    ptestresult.glibc-user.math/test-float32x-cosh
    ptestresult.glibc-user.math/test-double-yn
    ptestresult.gcc-user.gcc.target/mips/code-readable-4.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.math/test-float64x-cexp
    ptestresult.gcc-user.gcc.dg/torture/float32-basic.c   -O1  execution test
    ptestresult.glibc-user.math/test-ldouble-canonicalize
    ptestresult.glibc-user.math/test-ifloat128-tgamma
    ptestresult.glibc-user.math/test-float32-yn
    ptestresult.glibc-user.elf/tst-unused-dep-cmp
    ptestresult.glibc-user.math/test-float32-lround
    ptestresult.glibc-user.math/test-float32-cpow
    ptestresult.glibc-user.math/test-float-fminmag
    ptestresult.binutils-gas.Compact EH EL #2 with personality routine and FDE data
    ptestresult.glibc-user.math/test-ifloat64-cosh
    ptestresult.gcc-user.gcc.target/mips/save-restore-3.c   -O0   scan-assembler \tsave\t\\$4-\\$6,
    ptestresult.glibc-user.math/test-float32-sin
    ptestresult.glibc-user.math/test-ifloat64x-ccosh
    ptestresult.gcc-user.gcc.target/mips/sdata-3.c   -O3 -g  (test for excess errors)
    ptestresult.glibc-user.math/test-float64-tanh
    ptestresult.glibc-user.nptl/test-rwlockattr-printers
    ptestresult.glibc-user.math/test-ldouble-log10
    ptestresult.glibc-user.math/test-float32x-fabs
    ptestresult.glibc-user.math/test-ifloat32-nearbyint
    ptestresult.glibc-user.math/test-float64x-isunordered
    ptestresult.glibc-user.math/test-float32-catanh
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O1   scan-assembler \t\\.cfi_restore 14\n
    ptestresult.glibc-user.math/test-ildouble-fdim
    ptestresult.gcc-user.gcc.dg/torture/fp-int-convert-timode-4.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  execution test
    ptestresult.glibc-user.math/test-float64x-round
    ptestresult.glibc-user.math/test-double-llround
    ptestresult.gcc-user.gcc.target/mips/dspr2-MULTU.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \\$ac1
    ptestresult.glibc-user.math/test-float64-sin
    ptestresult.glibc-user.math/test-float32-exp
    ptestresult.gcc-user.gcc.c-torture/execute/pr64242.c   -O3 -g  execution test
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2   scan-assembler \t\\.cfi_def_cfa_offset 0\n
    ptestresult.binutils-ld.vers24a
    ptestresult.glibc-user.math/test-ifloat-yn
    ptestresult.binutils-gas.uld2 -EL (octeon)
    ptestresult.gcc-user.gcc.target/mips/fpr-moves-6.c   -O3 -g   scan-assembler \tdmtc1\t\\$10,\\$f0\n
    ptestresult.glibc-user.math/test-ifloat32x-sqrt
    ptestresult.glibc-user.math/test-ifloat128-exp2
    ptestresult.glibc-user.math/test-double-sinh
    ptestresult.gcc-user.gcc.target/mips/mmcount-ra-address-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.math/test-double-exp2
    ptestresult.glibc-user.math/test-float128-log10
    ptestresult.glibc-user.math/test-fetestexceptflag
    ptestresult.gcc-user.gcc.dg/torture/pr52451.c   -O3 -g  execution test
    ptestresult.glibc-user.math/test-float-csqrt
    ptestresult.gcc-user.gcc.target/mips/ds-schedule-2.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.math/test-float128-catan
    ptestresult.glibc-user.math/test-double-ccos
    ptestresult.glibc-user.math/test-ifloat32-fma
    ptestresult.glibc-user.math/test-idouble-fdim
    ptestresult.glibc-user.math/test-float32x-isgreaterequal
    ptestresult.glibc-user.math/test-double-carg
    ptestresult.glibc-user.math/test-ifloat32x-log
    ptestresult.binutils-gas.uld2 -EL (mips64r3)
    ptestresult.glibc-user.math/test-float64-ufromfp
    ptestresult.gcc-user.gcc.target/mips/pr54240.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-tree-dump phiopt1 "Hoisting adjacent loads"
    ptestresult.gcc-user.gcc.target/mips/pr33256.c   -Os  (test for excess errors)
    ptestresult.glibc-user.math/test-float64x-atan2
    ptestresult.gcc-user.gcc.target/mips/loongson-shift-count-truncated-1.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  execution test
    ptestresult.glibc-user.math/test-float32-expm1
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-2.c   -O3 -g   scan-assembler \t\\.cfi_restore 64\n
    ptestresult.glibc-user.math/test-ifloat32x-llrint
    ptestresult.glibc-user.math/test-float-lround
    ptestresult.glibc-user.math/test-float32-erfc
    ptestresult.glibc-user.math/test-ifloat32-cabs
    ptestresult.binutils-gas.uld2 -EL (xlr)
    ptestresult.binutils-ld.GOT page 6
    ptestresult.gcc-libstdc++-v3-user.27_io/ios_base/storage/2.cc execution test
    ptestresult.binutils-gas.uld2 -EL (mips64r2)
    ptestresult.glibc-user.math/test-float64-llrint
    ptestresult.glibc-user.math/test-float32x-atan
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-9.c   -O1  (test for excess errors)
    ptestresult.glibc-user.math/test-float128-nextup
    ptestresult.glibc-user.math/test-float64-islessequal
    ptestresult.binutils-ld.indirect5b dynsym
    ptestresult.glibc-user.math/test-float128-round
    ptestresult.gcc-user.gcc.target/mips/interrupt_handler-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \t\\.cfi_restore 24\n
    ptestresult.glibc-user.math/test-float64x-floor
    ptestresult.glibc-user.math/test-ifloat32-hypot
    ptestresult.glibc-user.math/test-double-ldouble-mul
testseries | result_id : qemumips | oeselftest_debian-10_qemumips_20210413173729
    ptestresult.glibc-user.elf/dblunload
    ptestresult.gcc-user.gcc.target/mips/dspr2-MULTU.c   -O3 -g   scan-assembler \\$ac1
    ptestresult.gcc-user.compiler driver --help=warnings option(s): "^ +-.*[^:.]$" absent from output: "  -Wpoison-system-directories Warn for -I and -L options using system directories if cross compiling"
    ptestresult.glibc-user.posix/tst-exec-static
    ptestresult.gcc-g++-user.g++.dg/tree-prof/partition3.C compilation,  -fprofile-generate -D_PROFILE_GENERATE
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long32.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-12.c   -O0  (test for excess errors)
    ptestresult.glibc-user.rt/tst-mqueue1
    ptestresult.gcc-user.gcc.target/mips/dspr2-MULTU.c   -O2   scan-assembler \\$ac1
    ptestresult.gcc-user.gcc.target/mips/lxc1-sxc1-2.c   -Os   scan-assembler \tldxc1\t
    ptestresult.glibc-user.nptl/tst-cond-except
    ptestresult.glibc-user.gmon/tst-gmon-pie-gprof
    ptestresult.glibc-user.malloc/tst-malloc-tcache-leak-mcheck
    ptestresult.binutils-ld.indirect6a dynsym
    ptestresult.gcc-user.gcc.target/mips/mips-nonpic/main-15.c -fno-pic (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/code-readable-4.c   -O1  (test for excess errors)
    ptestresult.glibc-user.dirent/list
    ptestresult.gcc-user.gcc.target/mips/pr91769.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler lw\t\\$4,0\\(\\$5\\)\n\tlw\t\\$5,4\\(\\$5\\)\n\tmtc1\t\\$4,\\$.*\n\tmthc1\t\\$5,\\$.*
    ptestresult.gcc-user.gcc.dg/vect/pr88598-1.c  -mmsa (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/frame-header-2.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/mmcount-ra-address-2.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-7.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/octeon-exts-5.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler-times \texts\t 4
    ptestresult.gcc-user.gcc.dg/vect/pr88598-2.c  -mmsa (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/ext-2.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/sdata-4.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-7.c   -Os  (test for excess errors)
    ptestresult.glibc-user.nptl/tst-cond25
    ptestresult.binutils-ld.indirect6d dynsym
    ptestresult.gcc-user.gcc.target/mips/ext-2.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/loongson-simd.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  execution test
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-3.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-3.c   -O2  (test for excess errors)
    ptestresult.glibc-user.rt/tst-mqueue7
    ptestresult.gcc-user.gcc.target/mips/compact-branches-5.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/sdata-2.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/frame-header-4.c   -Os   scan-assembler-not \taddiu\t\\$sp
    ptestresult.gcc-user.gcc.target/mips/frame-header-3.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/ds-schedule-1.c   -Os  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/compact-branches-5.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/sdata-2.c   -Os  (test for excess errors)
    ptestresult.gcc-g++-user.g++.dg/vect/pr84556.cc  -mmsa -std=gnu++14 execution test
    ptestresult.binutils-ld.PR ld/19317 (3)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-12.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.timezone/tst-tzset
    ptestresult.gcc-user.gcc.dg/vect/vect-96.c  -mmsa  scan-tree-dump-times vect "Alignment of access forced using peeling" 1
    ptestresult.gcc-user.gcc.target/mips/mips-nonpic/main-13.c -fno-pic (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/ds-schedule-2.c   -O2  (test for excess errors)
    ptestresult.binutils-ld.--gc-sections with --defsym
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long64.c   -O2  (test for excess errors)
    ptestresult.glibc-user.posix/tst-spawn4
    ptestresult.gcc-user.gcc.target/mips/loongson-dctz.c   -O0   scan-assembler dctz\t
    ptestresult.gcc-libstdc++-v3-user.27_io/objects/char/7.cc execution test
    ptestresult.gcc-g++-user.g++.dg/vect/slp-pr56812.cc  -mmsa -std=c++14  (test for errors, line 17)
    ptestresult.gcc-user.gcc.target/mips/loongson-simd.c   -O1  execution test
    ptestresult.gcc-user.gcc.dg/vect/pr91293-3.c  -mmsa execution test
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long32.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/branch-cost-2.c   -Os   scan-assembler-not \t(bne|beq)\t
    ptestresult.gcc-user.gcc.dg/vect/pr91293-2.c  -mmsa execution test
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long64.c   -Os  (test for excess errors)
    ptestresult.binutils-ld.vers24c
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-8.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/lxc1-sxc1-2.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \tldxc1\t
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-11.c   -Os  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/frame-header-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.c-torture/execute/loop-2g.c   -O3 -g  execution test
    ptestresult.binutils-ld.indirect5a dynsym
    ptestresult.gcc-user.gcc.dg/vect/pr91293-1.c -flto -ffat-lto-objects -mmsa (test for excess errors)
    ptestresult.gcc-user.gcc.dg/vect/vect-32.c  -mmsa  scan-tree-dump-times vect "Vectorizing an unaligned access" 0
    ptestresult.gcc-user.gcc.target/mips/dspr2-MULTU.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \\$ac1
    ptestresult.gcc-user.gcc.target/mips/pr33256.c   -O0  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/long-calls-pg.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.binutils-ld.indirect6b dynsym
    ptestresult.gcc-libstdc++-v3-user.27_io/basic_filebuf/close/char/9964.cc execution test
    ptestresult.glibc-user.malloc/tst-dynarray-at-fail
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-3.c   -O0  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/20020620-1.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-4.c   -O0  (test for excess errors)
    ptestresult.glibc-user.elf/tst-global1
    ptestresult.gcc-g++-user.g++.dg/vect/pr84556.cc  -mmsa -std=gnu++14 (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/compact-branches-5.c   -O2  (test for excess errors)
    ptestresult.glibc-user.misc/test-errno-linux
    ptestresult.glibc-user.posix/tst-spawn
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long32.c   -O0  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-10.c   -Os  (test for excess errors)
    ptestresult.glibc-user.nptl/tst-robust-fork
    ptestresult.binutils-ld.vers24b
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-11.c   -O2  (test for excess errors)
    ptestresult.glibc-user.elf/circleload1
    ptestresult.gcc-user.gcc.dg/vect/pr88598-5.c  -mmsa (test for excess errors)
    ptestresult.glibc-user.nptl/tst-exec4
    ptestresult.gcc-user.gcc.target/mips/sdata-3.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.dg/vect/pr81740-1.c -flto -ffat-lto-objects -mmsa (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/loongson-simd.c   -O0  execution test
    ptestresult.glibc-user.locale/tst-locale-locpath
    ptestresult.gcc-libstdc++-v3-user.21_strings/basic_string/modifiers/insert/wchar_t/1.cc execution test
    ptestresult.gcc-user.gcc.target/mips/mmcount-ra-address-2.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/dspr2-MULT.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \\$ac1
    ptestresult.gcc-user.gcc.target/mips/lxc1-sxc1-2.c   -O3 -fomit-frame-pointer -funroll-loops -fpeel-loops -ftracer -finline-functions   scan-assembler \tldxc1\t
    ptestresult.binutils-ld.ld-plugin/lto-5r
    ptestresult.glibc-user.nptl/tst-robust1
    ptestresult.gcc-user.gcc.target/mips/mips-nonpic/main-11.c -fno-pic (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/octeon-exts-2.c   -Os   scan-assembler-times \texts\t 4
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-3.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.dg/vect/vect-multitypes-6.c -flto -ffat-lto-objects -mmsa  scan-tree-dump-times vect "Vectorizing an unaligned access" 6
    ptestresult.gcc-user.gcc.target/mips/sdata-1.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/abi-o64-long64.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/sdata-1.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/mmcount-ra-address-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/frame-header-1.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/sdata-3.c   -Os  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-7.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long32.c   -Os  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/octeon-exts-2.c   -O1   scan-assembler-times \texts\t 4
    ptestresult.gcc-user.gcc.c-torture/execute/loop-2f.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  execution test
    ptestresult.glibc-user.nptl/test-rwlock-printers
    ptestresult.glibc-user.elf/tst-protected1b
    ptestresult.gcc-g++-user.g++.dg/vect/pr87914.cc  -mmsa -std=c++17 (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/ds-schedule-1.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.elf/tst-ptrguard1-static
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.binutils-ld.pr25355.o
    ptestresult.gcc-user.gcc.c-torture/execute/pr64242.c   -O2  execution test
    ptestresult.gcc-user.gcc.target/mips/ds-schedule-2.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-8.c   -O0  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-9.c   -O2  (test for excess errors)
    ptestresult.gcc-libstdc++-v3-user.21_strings/basic_string/cons/wchar_t/1.cc execution test
    ptestresult.gcc-user.gcc.target/mips/sdata-1.c   -O0  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-8.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-7.c   -O3 -fomit-frame-pointer -funroll-loops -fpeel-loops -ftracer -finline-functions  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long32.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/mips-nonpic/main-1.c -fno-pic (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/loongson-dctz.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler dctz\t
    ptestresult.gcc-user.gcc.target/mips/mips-nonpic/main-9.c -fno-pic (test for excess errors)
    ptestresult.gcc-user.gcc.c-torture/execute/loop-2g.c   -O3 -fomit-frame-pointer -funroll-loops -fpeel-loops -ftracer -finline-functions  execution test
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-3.c   -Os  (test for excess errors)
    ptestresult.binutils-ld./home/pokybuild/yocto-worker/qemumips/build/build-st-2734/tmp/work/mips32r2-poky-linux/binutils-cross-testsuite/2.34-r0/git/ld/testsuite/ld-selective/5.cc: compilation failed
    ptestresult.gcc-user.gcc.target/mips/loongson-dctz.c   -O3 -g   scan-assembler dctz\t
    ptestresult.gcc-user.gcc.target/mips/ds-schedule-1.c   -O0  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/frame-header-3.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-9.c   -O3 -g  (test for excess errors)
    ptestresult.glibc-user.libio/tst-vtables
    ptestresult.gcc-user.gcc.target/mips/abi-o64-long64.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/sdata-4.c   -Os  (test for excess errors)
    ptestresult.gcc-g++-user.g++.dg/vect/pr87914.cc  -mmsa -std=c++17 execution test
    ptestresult.gcc-g++-user.g++.dg/vect/slp-pr56812.cc  -mmsa -std=c++17 (test for excess errors)
    ptestresult.gcc-g++-user.g++.dg/opt/devirt2.C  -std=gnu++98 (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-10.c   -O3 -fomit-frame-pointer -funroll-loops -fpeel-loops -ftracer -finline-functions  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/pr54240.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-tree-dump phiopt1 "Hoisting adjacent loads"
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-5.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.elf/resolvfail
    ptestresult.glibc-user.malloc/tst-dynarray-fail
    ptestresult.binutils-ld.ld-plugin/lto-3r
    ptestresult.gcc-user.gcc.target/mips/loongson-shift-count-truncated-1.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/mips-nonpic/main-8.c -fno-pic (test for excess errors)
    ptestresult.gcc-libstdc++-v3-user.27_io/objects/wchar_t/9661-1.cc execution test
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-4.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/octeon-exts-5.c   -O2   scan-assembler-times \texts\t 4
    ptestresult.glibc-user.malloc/tst-mallocfork2-mcheck
    ptestresult.binutils-ld./home/pokybuild/yocto-worker/qemumips/build/build-st-2734/tmp/work/mips32r2-poky-linux/binutils-cross-testsuite/2.34-r0/git/ld/testsuite/ld-selective/3.cc: compilation failed
    ptestresult.glibc-user.misc/tst-memfd_create
    ptestresult.binutils-ld./home/pokybuild/yocto-worker/qemumips/build/build-st-2734/tmp/work/mips32r2-poky-linux/binutils-cross-testsuite/2.34-r0/git/ld/testsuite/ld-selective/2.c: compilation failed
    ptestresult.gcc-user.gcc.target/mips/compact-branches-6.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-10.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.dg/vect/vect-96.c -flto -ffat-lto-objects -mmsa  scan-tree-dump-times vect "Alignment of access forced using peeling" 1
    ptestresult.gcc-user.gcc.c-torture/execute/pr64242.c   -O1  execution test
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-7.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/compact-branches-5.c   -O1  (test for excess errors)
    ptestresult.glibc-user.dirent/tst-scandir
    ptestresult.gcc-user.gcc.target/mips/sdata-2.c   -O0  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/long-calls-pg.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/octeon-exts-5.c   -O1   scan-assembler-times \texts\t 4
    ptestresult.glibc-user.posix/test-errno
    ptestresult.gcc-user.gcc.target/mips/loongson-simd.c   -Os  execution test
    ptestresult.gcc-user.gcc.target/mips/20020620-1.c   -Os  (test for excess errors)
    ptestresult.glibc-user.elf/tst-stackguard1
    ptestresult.gcc-user.gcc.target/mips/long-calls-pg.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/pr33256.c   -O2  (test for excess errors)
    ptestresult.glibc-user.nptl/tst-cond24
    ptestresult.gcc-user.gcc.target/mips/mips-nonpic/main-10.c -fno-pic (test for excess errors)
    ptestresult.glibc-user.nptl/tst-align-clone
    ptestresult.binutils-ld.indirect5d dynsym
    ptestresult.gcc-user.gcc.dg/vect/vect-23.c -flto -ffat-lto-objects -mmsa  scan-tree-dump-times vect "Vectorizing an unaligned access" 0
    ptestresult.glibc-user.nptl/tst-cancelx7
    ptestresult.gcc-user.gcc.dg/vect/pr91293-1.c  -mmsa (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/mips-nonpic/main-12.c -fno-pic (test for excess errors)
    ptestresult.gcc-user.gcc.c-torture/execute/loop-2g.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  execution test
    ptestresult.glibc-user.elf/constload1
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-10.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-12.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/mmcount-ra-address-3.c   -Os  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-7.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-12.c   -Os  (test for excess errors)
    ptestresult.glibc-user.nptl/tst-robust8
    ptestresult.gcc-user.gcc.target/mips/frame-header-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/loongson-dctz.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler dctz\t
    ptestresult.gcc-user.gcc.target/mips/pr91769.c   -O1   scan-assembler lw\t\\$4,0\\(\\$5\\)\n\tlw\t\\$5,4\\(\\$5\\)\n\tmtc1\t\\$4,\\$.*\n\tmthc1\t\\$5,\\$.*
    ptestresult.gcc-user.gcc.target/mips/ext-2.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-8.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/20020620-1.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long64.c   -O0  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/mips-nonpic/main-16.c -fno-pic (test for excess errors)
    ptestresult.glibc-user.nptl/tst-stackguard1-static
    ptestresult.gcc-user.gcc.target/mips/code-readable-4.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/pr54240.c   -O3 -g   scan-tree-dump phiopt1 "Hoisting adjacent loads"
    ptestresult.gcc-user.gcc.dg/vect/pr81740-2.c -flto -ffat-lto-objects -mmsa (test for excess errors)
    ptestresult.gcc-user.gcc.dg/vect/pr88598-4.c -flto -ffat-lto-objects -mmsa (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/sdata-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/code-readable-4.c   -Os  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/sdata-4.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-g++-user.g++.dg/vect/pr87914.cc  -mmsa -std=c++14 (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/mmcount-ra-address-3.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.c-torture/execute/loop-2f.c   -O3 -g  execution test
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long32.c   -Os  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/insn-pseudo-1.c   -O3 -g   scan-assembler \tbeqz\t\\$[0-9]+,(.L[0-9]+)\n.*\n\\1:\n\t\\.insn\n(?:.L[0-9]+ = \\.\n)?\t\\.end\tunreachable\n
    ptestresult.gcc-g++-user.g++.dg/vect/pr87914.cc  -mmsa -std=c++14 execution test
    ptestresult.gcc-libstdc++-v3-user.27_io/basic_filebuf/underflow/char/10097.cc execution test
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-4.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.elf/tst-env-setuid
    ptestresult.gcc-g++-user.g++.dg/vect/pr84556.cc  -mmsa -std=gnu++17 execution test
    ptestresult.gcc-user.gcc.target/mips/long-calls-pg.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.c-torture/execute/pr64242.c   -Os  execution test
    ptestresult.glibc-user.elf/tst-protected1a
    ptestresult.gcc-user.gcc.target/mips/loongson-shift-count-truncated-1.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/ds-schedule-1.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/pr33256.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.dg/vect/pr81740-2.c  -mmsa (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/sdata-1.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/mips-nonpic/main-3.c -fno-pic (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-7.c   -O0  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/octeon-exts-2.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler-times \texts\t 4
    ptestresult.gcc-user.gcc.target/mips/insn-pseudo-4.c   -O3 -g   scan-assembler \tlw\t(\\$[0-9]+),(.L[0-9]+)\n.*\tbeqz\t\\1,(.L[0-9]+)\n.*\n\\3:\n\t\\.insn\n(?:.L[0-9]+ = \\.\n)?\t\\.type\t__pool_unreachable_[0-9]+, @object\n__pool_unreachable_[0-9]+:\n\t\\.align\t2\n\\2:\n\t\\.word\t305419896\n
    ptestresult.gcc-g++-user.c-c++-common/spec-barrier-1.c  -std=gnu++98 (test for excess errors)
    ptestresult.glibc-user.rt/tst-mqueue3
    ptestresult.glibc-user.support/tst-support_capture_subprocess
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long64.c   -Os  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/mmcount-ra-address-2.c   -Os  (test for excess errors)
    ptestresult.gcc-user.gcc.c-torture/execute/pr64242.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  execution test
    ptestresult.gcc-user.gcc.target/mips/pr54240.c   -O2   scan-tree-dump phiopt1 "Hoisting adjacent loads"
    ptestresult.glibc-user.nptl/test-mutexattr-printers
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long64.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-9.c   -O0  (test for excess errors)
    ptestresult.gcc-libstdc++-v3-user.libstdc++-abi/abi_check
    ptestresult.gcc-user.gcc.target/mips/compact-branches-6.c   -Os  (test for excess errors)
    ptestresult.glibc-user.nptl/test-condattr-printers
    ptestresult.gcc-user.gcc.c-torture/execute/loop-2g.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  execution test
    ptestresult.glibc-user.rt/tst-cputimer2
    ptestresult.glibc-user.io/tst-statx
    ptestresult.gcc-user.gcc.target/mips/loongson-simd.c   -O2  execution test
    ptestresult.gcc-user.gcc.dg/vect/pr91293-1.c  -mmsa execution test
    ptestresult.gcc-user.gcc.c-torture/execute/pr64242.c   -O0  execution test
    ptestresult.glibc-user.elf/tst-dlopen-nodelete-reloc
    ptestresult.gcc-user.gcc.target/mips/frame-header-4.c   -O3 -g   scan-assembler-not \taddiu\t\\$sp
    ptestresult.gcc-user.gcc.target/mips/mips-nonpic/main-4.c -fno-pic (test for excess errors)
    ptestresult.glibc-user.posix/tst-spawn-static
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long32.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.binutils-ld.PR ld/12982
    ptestresult.gcc-user.gcc.dg/vect/vect-32.c -flto -ffat-lto-objects -mmsa  scan-tree-dump-times vect "Vectorizing an unaligned access" 0
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-4.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/ds-schedule-2.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/mmcount-ra-address-2.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.sysvipc/test-sysvsem
    ptestresult.gcc-user.gcc.target/mips/octeon-exts-2.c   -O2   scan-assembler-times \texts\t 4
    ptestresult.glibc-user.elf/lateglobal
    ptestresult.gcc-user.gcc.target/mips/sdata-3.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.c-torture/execute/loop-2f.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  execution test
    ptestresult.binutils-ld.indirect6c dynsym
    ptestresult.glibc-user.elf/reldep6
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-5.c   -Os  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/lxc1-sxc1-2.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \tldxc1\t
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long64.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/lxc1-sxc1-2.c   -O3 -g   scan-assembler \tldxc1\t
    ptestresult.binutils-ld.shared (non PIC)
    ptestresult.gcc-user.gcc.target/mips/loongson-dctz.c   -O2   scan-assembler dctz\t
    ptestresult.gcc-user.gcc.c-torture/execute/loop-2g.c   -O2  execution test
    ptestresult.gcc-user.gcc.target/mips/frame-header-1.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/compact-branches-6.c   -O0  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/frame-header-3.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.dg/vect/pr88598-2.c -flto -ffat-lto-objects -mmsa (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/pr33256.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long32.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.dg/vect/pr91293-2.c -flto -ffat-lto-objects -mmsa (test for excess errors)
    ptestresult.gcc-g++-user.c-c++-common/spec-barrier-1.c  -std=gnu++17 (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/frame-header-2.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.c-torture/execute/loop-2f.c   -O3 -fomit-frame-pointer -funroll-loops -fpeel-loops -ftracer -finline-functions  execution test
    ptestresult.gcc-user.gcc.target/mips/sdata-1.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/sdata-1.c   -Os  (test for excess errors)
    ptestresult.gcc-libstdc++-v3-user.27_io/basic_filebuf/close/char/4879.cc execution test
    ptestresult.glibc-user.nptl/tst-setuid3
    ptestresult.glibc-user.malloc/tst-mallocfork2
    ptestresult.gcc-user.gcc.target/mips/sdata-4.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-5.c   -O2  (test for excess errors)
    ptestresult.glibc-user.malloc/tst-malloc-thread-fail-mcheck
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-11.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/dspr2-MULT.c   -O3 -g   scan-assembler \\$ac1
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long64.c   -O1  (test for excess errors)
    ptestresult.glibc-user.nptl/tst-mutex10
    ptestresult.gcc-user.gcc.target/mips/abi-o64-long64.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/mmcount-ra-address-2.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-12.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/compact-branches-5.c   -O0  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/long-calls-pg.c   -O0  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/pr33256.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long64.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-8.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.dg/vect/pr81740-1.c  -mmsa (test for excess errors)
    ptestresult.glibc-user.rt/tst-cputimer3
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long64.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.c-torture/execute/loop-2g.c   -Os  execution test
    ptestresult.gcc-user.gcc.target/mips/sdata-2.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-libstdc++-v3-user.27_io/objects/wchar_t/7.cc execution test
    ptestresult.gcc-user.gcc.target/mips/sdata-2.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-10.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/sdata-3.c   -O0  (test for excess errors)
    ptestresult.gcc-g++-user.g++.dg/vect/slp-pr56812.cc  -mmsa -std=c++14 (test for excess errors)
    ptestresult.glibc-user.rt/tst-mqueue5
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-10.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.nptl/test-cond-printers
    ptestresult.binutils-ld./home/pokybuild/yocto-worker/qemumips/build/build-st-2734/tmp/work/mips32r2-poky-linux/binutils-cross-testsuite/2.34-r0/git/ld/testsuite/ld-selective/1.c: compilation failed
    ptestresult.gcc-g++-user.g++.dg/opt/devirt2.C  -std=gnu++17 (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/compact-branches-6.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/compact-branches-6.c   -O1  (test for excess errors)
    ptestresult.gcc-g++-user.g++.dg/vect/slp-pr56812.cc  -mmsa -std=c++17  (test for errors, line 17)
    ptestresult.gcc-user.gcc.target/mips/sdata-4.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/frame-header-3.c   -Os  (test for excess errors)
    ptestresult.gcc-g++-user.g++.dg/vect/slp-pr56812.cc  -mmsa -std=c++98  (test for errors, line 17)
    ptestresult.gcc-user.gcc.target/mips/long-calls-pg.c   -Os  (test for excess errors)
    ptestresult.gcc-user.gcc.dg/vect/pr88598-6.c -flto -ffat-lto-objects -mmsa (test for excess errors)
    ptestresult.gcc-user.gcc.dg/vect/pr88598-5.c -flto -ffat-lto-objects -mmsa (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/mips-nonpic/main-2.c -fno-pic (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/pr33256.c   -O1  (test for excess errors)
    ptestresult.glibc-user.io/tst-fts-lfs
    ptestresult.gcc-user.gcc.c-torture/execute/pr64242.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  execution test
    ptestresult.gcc-libstdc++-v3-user.21_strings/basic_string/modifiers/insert/char/1.cc execution test
    ptestresult.gcc-user.gcc.target/mips/abi-o64-long64.c   -O0  (test for excess errors)
    ptestresult.glibc-user.nptl/tst-robust6
    ptestresult.glibc-user.misc/tst-clone3
    ptestresult.gcc-libstdc++-v3-user.21_strings/basic_string/cons/char/1.cc execution test
    ptestresult.gcc-user.gcc.target/mips/loongson-simd.c   -O3 -g  execution test
    ptestresult.gcc-user.gcc.target/mips/compact-branches-5.c   -Os  (test for excess errors)
    ptestresult.binutils-ld.--gc-sections with __start_SECTIONNAME
    ptestresult.gcc-user.gcc.target/mips/frame-header-4.c   -O2   scan-assembler-not \taddiu\t\\$sp
    ptestresult.gcc-user.gcc.dg/vect/vect-23.c  -mmsa  scan-tree-dump-times vect "Vectorizing an unaligned access" 0
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long32.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/abi-o64-long64.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/sdata-1.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long64.c   -O0  (test for excess errors)
    ptestresult.glibc-user.rt/tst-aio4
    ptestresult.gcc-user.gcc.dg/vect/pr91293-3.c  -mmsa (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/dspr2-MULT.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler \\$ac1
    ptestresult.glibc-user.io/tst-fts
    ptestresult.glibc-user.nptl/tst-robust7
    ptestresult.gcc-user.gcc.target/mips/loongson-shift-count-truncated-1.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.dg/vect/pr88598-6.c  -mmsa (test for excess errors)
    ptestresult.glibc-user.rt/tst-timer4
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-11.c   -O0  (test for excess errors)
    ptestresult.binutils-ld.Build libpr16496b.so
    ptestresult.gcc-libstdc++-v3-user.27_io/objects/char/9661-1.cc execution test
    ptestresult.gcc-user.gcc.dg/vect/vect-multitypes-3.c -flto -ffat-lto-objects -mmsa  scan-tree-dump-times vect "Vectorizing an unaligned access" 3
    ptestresult.gcc-user.gcc.target/mips/sdata-2.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/loongson-shift-count-truncated-1.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long32.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/20020620-1.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-7.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/loongson-shift-count-truncated-1.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/pr91769.c   -Os   scan-assembler lw\t\\$4,0\\(\\$5\\)\n\tlw\t\\$5,4\\(\\$5\\)\n\tmtc1\t\\$4,\\$.*\n\tmthc1\t\\$5,\\$.*
    ptestresult.gcc-user.gcc.target/mips/branch-cost-2.c   -Os   scan-assembler \t(movz|movn)\t
    ptestresult.glibc-user.misc/tst-clone2
    ptestresult.gcc-user.gcc.target/mips/frame-header-1.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-4.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/code-readable-4.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/loongson-simd.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  execution test
    ptestresult.glibc-user.elf/dblload
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-5.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.dg/vect/vect-multitypes-6.c  -mmsa  scan-tree-dump-times vect "Vectorizing an unaligned access" 6
    ptestresult.glibc-user.nptl/tst-robust4
    ptestresult.gcc-user.gcc.target/mips/frame-header-2.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/mips-nonpic/main-5.c -fno-pic (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/mips-nonpic/main-14.c -fno-pic (test for excess errors)
    ptestresult.glibc-user.nptl/tst-cancel7
    ptestresult.glibc-user.iconv/tst-iconv_prog
    ptestresult.gcc-user.gcc.target/mips/pr91769.c   -O2   scan-assembler lw\t\\$4,0\\(\\$5\\)\n\tlw\t\\$5,4\\(\\$5\\)\n\tmtc1\t\\$4,\\$.*\n\tmthc1\t\\$5,\\$.*
    ptestresult.glibc-user.nptl/test-mutex-printers
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-9.c   -Os  (test for excess errors)
    ptestresult.binutils-ld./home/pokybuild/yocto-worker/qemumips/build/build-st-2734/tmp/work/mips32r2-poky-linux/binutils-cross-testsuite/2.34-r0/git/ld/testsuite/ld-selective/4.cc: compilation failed
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-9.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/dspr2-MULT.c   -O2   scan-assembler \\$ac1
    ptestresult.glibc-user.nptl/tst-getpid1
    ptestresult.gcc-user.gcc.c-torture/execute/loop-2f.c   -O2  execution test
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-5.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/octeon-exts-5.c   -Os   scan-assembler-times \texts\t 4
    ptestresult.glibc-user.stdlib/tst-secure-getenv
    ptestresult.gcc-g++-user.g++.dg/vect/pr87914.cc  -mmsa -std=c++98 execution test
    ptestresult.glibc-user.posix/tst-posix_spawn-setsid
    ptestresult.gcc-user.gcc.target/mips/frame-header-4.c   -O1   scan-assembler-not \taddiu\t\\$sp
    ptestresult.binutils-ld.PR ld/15323 (4)
    ptestresult.glibc-user.nptl/tst-oddstacklimit
    ptestresult.glibc-user.malloc/tst-mxfast
    ptestresult.gcc-user.gcc.target/mips/frame-header-2.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.c-c++-common/spec-barrier-1.c  -Wc++-compat  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-8.c   -Os  (test for excess errors)
    ptestresult.gcc-g++-user.g++.dg/vect/slp-pr56812.cc  -mmsa -std=c++98 (test for excess errors)
    ptestresult.glibc-user.nptl/tst-create-detached
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-5.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long64.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.nptl/tst-robust3
    ptestresult.gcc-user.gcc.c-torture/execute/loop-2f.c   -Os  execution test
    ptestresult.gcc-user.gcc.target/mips/abi-o64-long64.c   -Os  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/ext-2.c   -O1  (test for excess errors)
    ptestresult.binutils-ld.tmpdir/pr22263-1a.s: assembly failed
    ptestresult.glibc-user.rt/tst-cputimer1
    ptestresult.gcc-user.gcc.dg/vect/pr90018.c -flto -ffat-lto-objects -mmsa (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long32.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/insn-pseudo-2.c   -O3 -g   scan-assembler \tbeqz\t\\$[0-9]+,(.L[0-9]+)\n.*\n\\1:\n\t\\.insn\n(?:.L[0-9]+ = \\.\n)?\t\\.end\tunreachable\n
    ptestresult.glibc-user.posix/tst-execvpe5
    ptestresult.gcc-user.gcc.target/mips/octeon-exts-5.c   -O3 -g   scan-assembler-times \texts\t 4
    ptestresult.gcc-user.gcc.target/mips/mips-nonpic/main-7.c -fno-pic (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/octeon-exts-5.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler-times \texts\t 4
    ptestresult.gcc-user.gcc.target/mips/ds-schedule-1.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long32.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/loongson-dctz.c   -O1   scan-assembler dctz\t
    ptestresult.gcc-user.gcc.target/mips/lxc1-sxc1-2.c   -O2   scan-assembler \tldxc1\t
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-9.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.nptl/tst-stackguard1
    ptestresult.gcc-user.gcc.target/mips/ds-schedule-1.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/sdata-4.c   -O1  (test for excess errors)
    ptestresult.gcc-g++-user.c-c++-common/spec-barrier-1.c  -std=gnu++14 (test for excess errors)
    ptestresult.binutils-ld.--gc-sections with KEEP
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long32.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long64.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.gmon/tst-gmon-gprof
    ptestresult.glibc-user.nptl/tst-robust9
    ptestresult.glibc-user.malloc/tst-malloc-thread-fail
    ptestresult.glibc-user.nptl/tst-robust2
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long64.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.posix/tst-exec
    ptestresult.gcc-user.gcc.target/mips/frame-header-1.c   -O3 -g  (test for excess errors)
    ptestresult.binutils.dotnet-assemblies (ordinary x86 DLL)
    ptestresult.gcc-user.gcc.target/mips/abi-eabi32-long32.c   -O0  (test for excess errors)
    ptestresult.gcc-libgomp-user.libgomp.oacc-c/../libgomp.oacc-c-c++-common/atomic_update-1.c -DACC_DEVICE_TYPE_host=1 -DACC_MEM_SHARED=1 -foffload=disable  -O2  execution test
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-8.c   -O2  (test for excess errors)
    ptestresult.gcc-libgomp-user.libgomp.oacc-c++/../libgomp.oacc-c-c++-common/atomic_update-1.c -DACC_DEVICE_TYPE_host=1 -DACC_MEM_SHARED=1 -foffload=disable  -O2  execution test
    ptestresult.glibc-user.elf/tst-env-setuid-tunables
    ptestresult.gcc-user.gcc.target/mips/long-calls-pg.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.dg/vect/pr91293-3.c -flto -ffat-lto-objects -mmsa (test for excess errors)
    ptestresult.glibc-user.rt/tst-mqueue6
    ptestresult.binutils-ld.PR ld/19317 (2)
    ptestresult.gcc-user.gcc.target/mips/frame-header-1.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-12.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-5.c   -O0  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/abi-o64-long64.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-11.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/compact-branches-6.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/compact-branches-5.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/frame-header-4.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler-not \taddiu\t\\$sp
    ptestresult.gcc-user.gcc.dg/vect/pr88598-1.c -flto -ffat-lto-objects -mmsa (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-11.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/lxc1-sxc1-2.c   -O1   scan-assembler \tldxc1\t
    ptestresult.gcc-user.gcc.target/mips/frame-header-1.c   -Os  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/insn-pseudo-3.c   -O3 -g   scan-assembler \tbeqz\t\\$[0-9]+,(.L[0-9]+)\n.*\n\\1:\n\t\\.insn\n(?:.L[0-9]+ = \\.\n)?\t\\.end\tunreachable\n
    ptestresult.glibc-user.malloc/tst-malloc-tcache-leak
    ptestresult.gcc-user.gcc.dg/vect/pr91293-2.c  -mmsa (test for excess errors)
    ptestresult.binutils-ld.indirect5c dynsym
    ptestresult.glibc-user.malloc/tst-malloc-usable-tunables
    ptestresult.gcc-user.gcc.target/mips/pr54240.c   -Os   scan-tree-dump phiopt1 "Hoisting adjacent loads"
    ptestresult.gcc-user.gcc.target/mips/octeon-exts-2.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler-times \texts\t 4
    ptestresult.gcc-user.gcc.target/mips/frame-header-2.c   -Os  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/compact-branches-6.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/loongson-shift-count-truncated-1.c   -O0  (test for excess errors)
    ptestresult.gcc-user.gcc.c-torture/execute/loop-2g.c   -O1  execution test
    ptestresult.gcc-user.gcc.c-torture/execute/loop-2f.c   -O0  execution test
    ptestresult.glibc-user.elf/tst-stackguard1-static
    ptestresult.gcc-user.gcc.target/mips/sdata-4.c   -O0  (test for excess errors)
    ptestresult.gcc-user.gcc.dg/vect/vect-24.c -flto -ffat-lto-objects -mmsa  scan-tree-dump-times vect "Vectorizing an unaligned access" 0
    ptestresult.gcc-user.gcc.dg/vect/pr89440.c -flto -ffat-lto-objects -mmsa (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-4.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.dg/vect/pr90018.c  -mmsa (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-11.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/sdata-2.c   -O1  (test for excess errors)
    ptestresult.glibc-user.rt/tst-timer5
    ptestresult.gcc-g++-user.g++.dg/opt/devirt2.C  -std=gnu++14 (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/code-readable-4.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/pr91769.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler lw\t\\$4,0\\(\\$5\\)\n\tlw\t\\$5,4\\(\\$5\\)\n\tmtc1\t\\$4,\\$.*\n\tmthc1\t\\$5,\\$.*
    ptestresult.gcc-user.gcc.target/mips/mmcount-ra-address-2.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.dg/vect/vect-24.c  -mmsa  scan-tree-dump-times vect "Vectorizing an unaligned access" 0
    ptestresult.gcc-user.gcc.target/mips/frame-header-4.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-assembler-not \taddiu\t\\$sp
    ptestresult.gcc-libstdc++-v3-user.27_io/basic_filebuf/seekoff/char/26777.cc execution test
    ptestresult.gcc-user.gcc.target/mips/sdata-3.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.binutils-ld.shared (PIC main, non PIC so)
    ptestresult.gcc-user.gcc.dg/vect/pr89440.c  -mmsa (test for excess errors)
    ptestresult.gcc-user.gcc.c-torture/execute/loop-2g.c   -O0  execution test
    ptestresult.gcc-user.gcc.target/mips/octeon-exts-2.c   -O3 -g   scan-assembler-times \texts\t 4
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-12.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/ds-schedule-1.c   -O2  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/ext-2.c   -Os  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/mmcount-ra-address-3.c   -O3 -g  (test for excess errors)
    ptestresult.glibc-user.gmon/tst-gmon-static-gprof
    ptestresult.gcc-user.gcc.c-torture/execute/loop-2f.c   -O1  execution test
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-5.c   -O3 -fomit-frame-pointer -funroll-loops -fpeel-loops -ftracer -finline-functions  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/mmcount-ra-address-3.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.dg/vect/vect-multitypes-3.c  -mmsa  scan-tree-dump-times vect "Vectorizing an unaligned access" 3
    ptestresult.gcc-user.gcc.target/mips/loongson-shift-count-truncated-1.c   -Os  (test for excess errors)
    ptestresult.glibc-user.elf/tst-ptrguard1
    ptestresult.gcc-user.gcc.target/mips/frame-header-2.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/ext-2.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/20020620-1.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.glibc-user.nptl/tst-robust5
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-10.c   -O1  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/abi-eabi64-long64.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-4.c   -Os  (test for excess errors)
    ptestresult.gcc-user.gcc.dg/vect/pr88598-4.c  -mmsa (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/code-readable-4.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  (test for excess errors)
    ptestresult.glibc-user.posix/tst-spawn2
    ptestresult.gcc-user.gcc.dg/vect/pr88598-3.c  -mmsa (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/save-restore-3.c   -O0   scan-assembler \tsave\t\\$4-\\$6,
    ptestresult.gcc-user.gcc.target/mips/sdata-3.c   -O3 -g  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/mips-nonpic/main-6.c -fno-pic (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/loongson-dctz.c   -Os   scan-assembler dctz\t
    ptestresult.gcc-user.gcc.dg/vect/pr88598-3.c -flto -ffat-lto-objects -mmsa (test for excess errors)
    ptestresult.glibc-user.nptl/test-rwlockattr-printers
    ptestresult.gcc-user.gcc.target/mips/dspr2-MULTU.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects   scan-assembler \\$ac1
    ptestresult.gcc-user.gcc.c-torture/execute/pr64242.c   -O3 -g  execution test
    ptestresult.gcc-g++-user.g++.dg/vect/pr84556.cc  -mmsa -std=gnu++17 (test for excess errors)
    ptestresult.binutils-ld.vers24a
    ptestresult.gcc-user.gcc.target/mips/mmcount-ra-address-3.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/ds-schedule-2.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  (test for excess errors)
    ptestresult.gcc-g++-user.g++.dg/vect/pr87914.cc  -mmsa -std=c++98 (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/pr54240.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none   scan-tree-dump phiopt1 "Hoisting adjacent loads"
    ptestresult.gcc-user.gcc.target/mips/pr33256.c   -Os  (test for excess errors)
    ptestresult.gcc-user.gcc.target/mips/20020620-1.c   -O1  (test for excess errors)
    ptestresult.binutils./home/pokybuild/yocto-worker/qemumips/build/build-st-2734/tmp/work/mips32r2-poky-linux/binutils-cross-testsuite/2.34-r0/git/build.mips-poky-linux.mips-poky-linux/binutils/testsuite/gentestdlls does not exist
    ptestresult.gcc-libstdc++-v3-user.27_io/ios_base/storage/2.cc execution test
    ptestresult.gcc-user.gcc.target/mips/r10k-cache-barrier-9.c   -O1  (test for excess errors)
    ptestresult.binutils-ld.indirect5b dynsym
testseries | result_id : qemuppc | oeselftest_ubuntu-18.04_qemuppc_20210413171738
    ptestresult.gcc-user.compiler driver --help=warnings option(s): "^ +-.*[^:.]$" absent from output: "  -Wpoison-system-directories Warn for -I and -L options using system directories if cross compiling"
    ptestresult.glibc-user.posix/tst-exec-static
    ptestresult.glibc-user.nptl/tst-cond-except
    ptestresult.glibc-user.gmon/tst-gmon-pie-gprof
    ptestresult.glibc-user.malloc/tst-malloc-tcache-leak-mcheck
    ptestresult.gcc-user.gcc.dg/vmx/st-vsx.c   -O3 -g  execution test
    ptestresult.glibc-user.dirent/list
    ptestresult.glibc-user.elf/tst-env-setuid-tunables
    ptestresult.gcc-user.gcc.dg/vect/slp-perm-12.c scan-tree-dump-times vect "vectorizing stmts using SLP" 1
    ptestresult.glibc-user.nptl/tst-cond25
    ptestresult.gcc-user.gcc.dg/torture/stackalign/builtin-apply-4.c   -O2 -fpic execution test
    ptestresult.glibc-user.rt/tst-mqueue7
    ptestresult.binutils-gas.POWER9 tests
    ptestresult.gcc-user.gcc.dg/tree-prof/time-profiler-2.c scan-ipa-dump-times profile "Read tp_first_run: 2" 1
    ptestresult.gcc-user.gcc.dg/vmx/st-vsx.c   -Os  execution test
    ptestresult.gcc-user.gcc.dg/vmx/ldl-vsx.c   -O3 -fomit-frame-pointer -funroll-loops -fpeel-loops -ftracer -finline-functions  execution test
    ptestresult.gcc-user.gcc.dg/vmx/3a-03m.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  execution test
    ptestresult.gcc-libstdc++-v3-user.27_io/objects/char/7.cc execution test
    ptestresult.glibc-user.nptl/tst-robust7
    ptestresult.glibc-user.nptl/tst-stackguard1
    ptestresult.gcc-user.gcc.dg/vmx/3c-01.c   -O3 -g  execution test
    ptestresult.gcc-user.gcc.dg/vmx/stl-vsx.c   -Os  execution test
    ptestresult.gcc-libstdc++-v3-user.27_io/basic_filebuf/close/char/9964.cc execution test
    ptestresult.glibc-user.malloc/tst-dynarray-at-fail
    ptestresult.glibc-user.math/test-float-fma
    ptestresult.gcc-user.gcc.dg/sms-1.c scan-rtl-dump-times sms "SMS succeeded" 1
    ptestresult.glibc-user.elf/tst-global1
    ptestresult.glibc-user.misc/test-errno-linux
    ptestresult.gcc-user.gcc.dg/vmx/merge-vsx.c   -O0  execution test
    ptestresult.glibc-user.posix/tst-spawn
    ptestresult.gcc-user.gcc.dg/vmx/3a-03.c   -O3 -g  execution test
    ptestresult.gcc-user.gcc.target/powerpc/ppu-intrinsics.c (test for excess errors)
    ptestresult.glibc-user.elf/circleload1
    ptestresult.glibc-user.nptl/tst-exec4
    ptestresult.glibc-user.nptl/tst-robust1
    ptestresult.gcc-user.gcc.dg/vmx/3c-01.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  execution test
    ptestresult.gcc-user.gcc.dg/vmx/ldl-vsx.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  execution test
    ptestresult.gcc-user.gcc.dg/vmx/ld-vsx.c   -O0  execution test
    ptestresult.glibc-user.elf/lateglobal
    ptestresult.gcc-user.gcc.dg/vect/pr85586.c scan-tree-dump-times vect "LOOP VECTORIZED" 1
    ptestresult.glibc-user.misc/bug18240
    ptestresult.gcc-user.gcc.dg/vect/pr46032.c scan-tree-dump-times vect "vectorized 1 loop" 1
    ptestresult.glibc-user.nptl/test-rwlock-printers
    ptestresult.glibc-user.elf/tst-protected1b
    ptestresult.glibc-user.elf/tst-ptrguard1-static
    ptestresult.binutils-ld.pr25355.o
    ptestresult.gcc-user.gcc.dg/torture/stackalign/builtin-apply-4.c   -Os  execution test
    ptestresult.glibc-user.nptl/tst-cond24
    ptestresult.glibc-user.malloc/tst-malloc-usable-tunables
    ptestresult.gcc-user.gcc.dg/vmx/splat-vsx.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  execution test
    ptestresult.gcc-user.gcc.dg/vmx/st-vsx.c   -O1  execution test
    ptestresult.glibc-user.libio/tst-vtables
    ptestresult.gcc-user.gcc.dg/torture/stackalign/builtin-apply-4.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none -fpic execution test
    ptestresult.gcc-user.gcc.dg/vmx/splat-vsx.c   -O0  execution test
    ptestresult.glibc-user.rt/tst-mqueue6
    ptestresult.glibc-user.elf/resolvfail
    ptestresult.gcc-user.gcc.dg/vect/bb-slp-over-widen-2.c scan-tree-dump-times slp2 "basic block vectorized" 2
    ptestresult.glibc-user.malloc/tst-dynarray-fail
    ptestresult.gcc-user.gcc.dg/vmx/stl-vsx.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  execution test
    ptestresult.gcc-libstdc++-v3-user.27_io/objects/wchar_t/9661-1.cc execution test
    ptestresult.glibc-user.misc/tst-sigcontext-get_pc
    ptestresult.gcc-user.gcc.dg/lto/20110201-1 c_lto_20110201-1_0.o-c_lto_20110201-1_0.o link,  -O0 -flto -fno-math-errno
    ptestresult.glibc-user.elf/dblload
    ptestresult.glibc-user.misc/tst-memfd_create
    ptestresult.gcc-user.gcc.dg/torture/stackalign/builtin-apply-4.c   -O1 -fpic execution test
    ptestresult.gcc-user.gcc.dg/vmx/st-vsx.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  execution test
    ptestresult.glibc-user.stdlib/tst-setcontext2
    ptestresult.gcc-user.gcc.dg/vmx/stl-vsx.c   -O3 -fomit-frame-pointer -funroll-loops -fpeel-loops -ftracer -finline-functions  execution test
    ptestresult.gcc-user.gcc.dg/vmx/3a-03.c   -O1  execution test
    ptestresult.gcc-user.gcc.dg/vect/vect-50.c scan-tree-dump-times vect "Vectorizing an unaligned access" 3
    ptestresult.glibc-user.dirent/tst-scandir
    ptestresult.gcc-user.gcc.dg/vmx/3c-01.c   -O1  execution test
    ptestresult.gcc-user.gcc.dg/vmx/merge-vsx.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  execution test
    ptestresult.gcc-user.gcc.dg/vect/no-vfa-vect-depend-3.c scan-tree-dump-times vect "vectorized 1 loops" 4
    ptestresult.glibc-user.math/test-float32-fma
    ptestresult.glibc-user.posix/test-errno
    ptestresult.glibc-user.elf/tst-stackguard1
    ptestresult.glibc-user.gmon/tst-gmon-gprof
    ptestresult.gcc-user.gcc.dg/vmx/splat-vsx.c   -O3 -g  execution test
    ptestresult.gcc-user.gcc.dg/builtin-apply4.c execution test
    ptestresult.glibc-user.nptl/tst-align-clone
    ptestresult.glibc-user.nptl/tst-cancelx7
    ptestresult.gcc-user.gcc.dg/vmx/stl-vsx.c   -O0  execution test
    ptestresult.glibc-user.nptl/tst-robust8
    ptestresult.gcc-user.gcc.dg/vmx/splat-vsx.c   -O2  execution test
    ptestresult.gcc-user.gcc.dg/vect/slp-43.c -flto -ffat-lto-objects  scan-tree-dump-times vect "vectorized 1 loops" 2
    ptestresult.gcc-user.gcc.dg/tree-prof/time-profiler-2.c scan-ipa-dump-times profile "Read tp_first_run: 3" 1
    ptestresult.gcc-user.gcc.dg/vmx/ld-vsx.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  execution test
    ptestresult.gcc-user.gcc.dg/vmx/ldl-vsx.c   -O1  execution test
    ptestresult.gcc-user.gcc.dg/vect/vect-50.c -flto -ffat-lto-objects  scan-tree-dump-times vect "Vectorizing an unaligned access" 3
    ptestresult.gcc-user.gcc.dg/torture/stackalign/builtin-apply-4.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  execution test
    ptestresult.glibc-user.nptl/tst-stackguard1-static
    ptestresult.gcc-user.gcc.dg/vmx/3c-01.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  execution test
    ptestresult.gcc-user.gcc.dg/vmx/3a-03m.c   -O1  execution test
    ptestresult.gcc-user.gcc.dg/vmx/ldl-vsx.c   -O0  execution test
    ptestresult.glibc-user.timezone/tst-tzset
    ptestresult.gcc-libstdc++-v3-user.27_io/basic_filebuf/underflow/char/10097.cc execution test
    ptestresult.gcc-user.gcc.dg/vmx/3a-03.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  execution test
    ptestresult.glibc-user.elf/tst-env-setuid
    ptestresult.glibc-user.elf/tst-protected1a
    ptestresult.glibc-user.elf/tst-debug1
    ptestresult.gcc-user.gcc.dg/vmx/st-vsx.c   -O0  execution test
    ptestresult.gcc-user.gcc.dg/vmx/3a-03m.c   -O3 -g  execution test
    ptestresult.gcc-user.gcc.dg/vect/vect-strided-a-u8-i2-gap.c -flto -ffat-lto-objects  scan-tree-dump-times vect "vectorized 1 loops" 1
    ptestresult.gcc-user.gcc.dg/vmx/3c-01.c   -Os  execution test
    ptestresult.gcc-user.gcc.dg/tree-prof/time-profiler-2.c scan-ipa-dump-times profile "Read tp_first_run: 0" 2
    ptestresult.glibc-user.rt/tst-mqueue3
    ptestresult.gcc-user.gcc.dg/torture/pr52451.c   -O1  execution test
    ptestresult.glibc-user.nptl/test-mutexattr-printers
    ptestresult.glibc-user.math/test-ifloat-fma
    ptestresult.gcc-user.gcc.dg/vmx/ld-vsx.c   -O2  execution test
    ptestresult.gcc-libstdc++-v3-user.libstdc++-abi/abi_check
    ptestresult.glibc-user.nptl/test-condattr-printers
    ptestresult.gcc-user.gcc.dg/vect/bb-slp-over-widen-2.c -flto -ffat-lto-objects  scan-tree-dump-times slp2 "basic block vectorized" 2
    ptestresult.glibc-user.nptl/tst-robust-fork
    ptestresult.gcc-user.gcc.dg/gimplefe-28.c (test for excess errors)
    ptestresult.gcc-user.gcc.dg/vmx/st-vsx.c   -O3 -fomit-frame-pointer -funroll-loops -fpeel-loops -ftracer -finline-functions  execution test
    ptestresult.gcc-user.gcc.dg/torture/stackalign/builtin-apply-4.c   -O2  execution test
    ptestresult.gcc-user.gcc.dg/torture/pr52451.c   -Os  execution test
    ptestresult.gcc-user.gcc.dg/vmx/splat-vsx.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  execution test
    ptestresult.glibc-user.posix/tst-spawn-static
    ptestresult.gcc-user.gcc.dg/vmx/ld-vsx.c   -O3 -g  execution test
    ptestresult.gcc-user.gcc.dg/vmx/extract-vsx.c   -O0  execution test
    ptestresult.gcc-user.gcc.dg/vmx/3a-03m.c   -O0  execution test
    ptestresult.glibc-user.sysvipc/test-sysvsem
    ptestresult.gcc-user.gcc.dg/vmx/splat-vsx.c   -Os  execution test
    ptestresult.gcc-user.gcc.dg/vmx/stl-vsx.c   -O2  execution test
    ptestresult.gcc-user.gcc.dg/torture/pr52451.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  execution test
    ptestresult.gcc-user.gcc.dg/vect/vect-31.c scan-tree-dump-times vect "vectorized 4 loops" 1
    ptestresult.gcc-user.gcc.dg/vect/no-tree-sra-bb-slp-pr50730.c scan-tree-dump-times slp2 "basic block vectorized" 1
    ptestresult.glibc-user.elf/reldep6
    ptestresult.gcc-user.gcc.dg/vect/pr46032.c -flto -ffat-lto-objects  scan-tree-dump-times vect "vectorized 1 loop" 1
    ptestresult.gcc-user.gcc.dg/vmx/ld-vsx.c   -Os  execution test
    ptestresult.gcc-user.gcc.dg/vmx/splat-vsx.c   -O1  execution test
    ptestresult.gcc-user.gcc.dg/vmx/ldl-vsx.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  execution test
    ptestresult.glibc-user.elf/tst-stackguard1-static
    ptestresult.gcc-user.gcc.dg/gimplefe-28.c (internal compiler error)
    ptestresult.gcc-user.gcc.dg/vmx/merge-vsx.c   -O3 -g  execution test
    ptestresult.gcc-user.gcc.dg/vect/vect-44.c scan-tree-dump-times vect "Vectorizing an unaligned access" 3
    ptestresult.gcc-user.gcc.dg/torture/stackalign/builtin-apply-4.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -fpic execution test
    ptestresult.gcc-libstdc++-v3-user.27_io/basic_filebuf/close/char/4879.cc execution test
    ptestresult.glibc-user.nptl/tst-setuid3
    ptestresult.glibc-user.malloc/tst-mallocfork2
    ptestresult.gcc-user.gcc.dg/torture/pr52451.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  execution test
    ptestresult.gcc-user.gcc.dg/torture/stackalign/builtin-apply-4.c   -O0 -fpic execution test
    ptestresult.glibc-user.malloc/tst-malloc-thread-fail-mcheck
    ptestresult.gcc-user.gcc.dg/vect/pr85586.c -flto -ffat-lto-objects  scan-tree-dump-times vect "LOOP VECTORIZED" 1
    ptestresult.glibc-user.nptl/tst-stack4
    ptestresult.glibc-user.stdlib/tst-setcontext4
    ptestresult.glibc-user.nptl/tst-mutex10
    ptestresult.gcc-user.gcc.dg/vmx/3a-03m.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  execution test
    ptestresult.glibc-user.nptl/tst-robust9
    ptestresult.gcc-user.gcc.dg/vect/vect-over-widen-17.c scan-tree-dump-not vect "vector[^\\n]*char"
    ptestresult.gcc-libstdc++-v3-user.27_io/objects/wchar_t/7.cc execution test
    ptestresult.gcc-user.gcc.dg/torture/stackalign/builtin-apply-4.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  execution test
    ptestresult.glibc-user.rt/tst-mqueue5
    ptestresult.gcc-user.gcc.dg/pow-sqrt-synth-1.c scan-tree-dump-times sincos "synthesizing" 7
    ptestresult.glibc-user.nptl/test-cond-printers
    ptestresult.gcc-user.gcc.dg/vmx/merge-vsx.c   -O1  execution test
    ptestresult.gcc-user.gcc.dg/gomp/pr82374.c scan-tree-dump-times vect "vectorized 1 loops" 2
    ptestresult.glibc-user.io/tst-fts-lfs
    ptestresult.gcc-user.gcc.dg/torture/stackalign/builtin-apply-4.c   -O3 -g -fpic execution test
    ptestresult.glibc-user.nptl/tst-robust6
    ptestresult.glibc-user.misc/tst-clone3
    ptestresult.glibc-user.support/tst-support_capture_subprocess
    ptestresult.gcc-user.gcc.dg/vmx/ld-vsx.c   -O1  execution test
    ptestresult.gcc-user.gcc.dg/vmx/3a-03m.c   -Os  execution test
    ptestresult.glibc-user.io/tst-fts
    ptestresult.gcc-libstdc++-v3-user.27_io/objects/char/9661-1.cc execution test
    ptestresult.gcc-user.gcc.dg/torture/stackalign/builtin-apply-4.c   -Os -fpic execution test
    ptestresult.gcc-user.gcc.dg/vect/vect-over-widen-17.c -flto -ffat-lto-objects  scan-tree-dump-not vect "vector[^\\n]*char"
    ptestresult.binutils./home/pokybuild/yocto-worker/qemuppc/build/build-st-46550/tmp/work/ppc7400-poky-linux/binutils-cross-testsuite/2.34-r0/git/build.powerpc-poky-linux.powerpc-poky-linux/binutils/testsuite/gentestdlls does not exist
    ptestresult.glibc-user.posix/tst-spawn4
    ptestresult.glibc-user.misc/tst-clone2
    ptestresult.gcc-user.gcc.dg/vect/no-vfa-vect-depend-2.c scan-tree-dump-times vect "vectorized 1 loops" 1
    ptestresult.glibc-user.elf/tst-unused-dep
    ptestresult.gcc-user.gcc.dg/vmx/3a-03.c   -Os  execution test
    ptestresult.gcc-user.gcc.dg/vmx/3a-03.c   -O0  execution test
    ptestresult.glibc-user.nptl/tst-robust4
    ptestresult.gcc-user.gcc.dg/vmx/stl-vsx.c   -O3 -g  execution test
    ptestresult.gcc-user.gcc.dg/vmx/3c-01.c   -O2  execution test
    ptestresult.glibc-user.nptl/tst-cancel7
    ptestresult.glibc-user.iconv/tst-iconv_prog
    ptestresult.glibc-user.nptl/test-mutex-printers
    ptestresult.gcc-user.gcc.dg/vmx/st-vsx.c   -O2  execution test
    ptestresult.glibc-user.nptl/tst-getpid1
    ptestresult.glibc-user.elf/constload1
    ptestresult.glibc-user.stdlib/tst-secure-getenv
    ptestresult.gcc-user.gcc.dg/vmx/ldl-vsx.c   -O3 -g  execution test
    ptestresult.glibc-user.posix/tst-posix_spawn-setsid
    ptestresult.gcc-user.gcc.dg/torture/stackalign/builtin-apply-4.c   -O0  execution test
    ptestresult.glibc-user.nptl/tst-oddstacklimit
    ptestresult.glibc-user.malloc/tst-mxfast
    ptestresult.gcc-user.gcc.dg/vect/slp-43.c scan-tree-dump-times vect "vectorized 1 loops" 2
    ptestresult.glibc-user.misc/test-gettimebasefreq-static
    ptestresult.glibc-user.nptl/test-rwlockattr-printers
    ptestresult.glibc-user.nptl/tst-create-detached
    ptestresult.gcc-user.gcc.dg/vmx/ldl-vsx.c   -Os  execution test
    ptestresult.glibc-user.posix/tst-execvpe5
    ptestresult.gcc-user.gcc.dg/vmx/stl-vsx.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  execution test
    ptestresult.glibc-user.nptl/tst-robust3
    ptestresult.glibc-user.debug/backtrace-tst
    ptestresult.gcc-user.gcc.dg/vmx/3a-03m.c   -O2  execution test
    ptestresult.gcc-user.gcc.dg/vmx/ld-vsx.c   -O3 -fomit-frame-pointer -funroll-loops -fpeel-loops -ftracer -finline-functions  execution test
    ptestresult.glibc-user.malloc/tst-mallocfork2-mcheck
    ptestresult.gcc-user.gcc.dg/vect/slp-perm-12.c -flto -ffat-lto-objects  scan-tree-dump-times vect "vectorizing stmts using SLP" 1
    ptestresult.gcc-user.gcc.dg/vmx/merge-vsx.c   -Os  execution test
    ptestresult.glibc-user.malloc/tst-malloc-thread-fail
    ptestresult.glibc-user.nptl/tst-eintr2
    ptestresult.glibc-user.nptl/tst-robust2
    ptestresult.gcc-user.gcc.dg/vmx/ld-vsx.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  execution test
    ptestresult.gcc-user.gcc.dg/vect/vect-44.c -flto -ffat-lto-objects  scan-tree-dump-times vect "Vectorizing an unaligned access" 3
    ptestresult.glibc-user.misc/test-gettimebasefreq
    ptestresult.binutils.dotnet-assemblies (ordinary x86 DLL)
    ptestresult.gcc-libgomp-user.libgomp.oacc-c/../libgomp.oacc-c-c++-common/atomic_update-1.c -DACC_DEVICE_TYPE_host=1 -DACC_MEM_SHARED=1 -foffload=disable  -O2  execution test
    ptestresult.gcc-user.gcc.dg/torture/pr52451.c   -O2  execution test
    ptestresult.gcc-libgomp-user.libgomp.oacc-c++/../libgomp.oacc-c-c++-common/atomic_update-1.c -DACC_DEVICE_TYPE_host=1 -DACC_MEM_SHARED=1 -foffload=disable  -O2  execution test
    ptestresult.glibc-user.elf/tst-ifunc-fault-lazy
    ptestresult.gcc-user.gcc.dg/vmx/3a-03.c   -O2  execution test
    ptestresult.glibc-user.elf/tst-ifunc-fault-bindnow
    ptestresult.gcc-user.gcc.dg/torture/stackalign/builtin-apply-4.c   -O1  execution test
    ptestresult.glibc-user.elf/dblunload
    ptestresult.glibc-user.malloc/tst-malloc-tcache-leak
    ptestresult.gcc-user.gcc.dg/vect/vect-93.c scan-tree-dump-times vect "vectorized 2 loops" 2
    ptestresult.gcc-user.gcc.dg/torture/pr52451.c   -O0  execution test
    ptestresult.gcc-user.gcc.dg/vect/vect-strided-a-u8-i2-gap.c scan-tree-dump-times vect "vectorized 1 loops" 1
    ptestresult.gcc-user.gcc.dg/vmx/3a-03.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  execution test
    ptestresult.gcc-user.gcc.dg/vect/vect-93.c -flto -ffat-lto-objects  scan-tree-dump-times vect "vectorized 2 loops" 2
    ptestresult.gcc-user.gcc.dg/torture/stackalign/builtin-apply-4.c   -O3 -g  execution test
    ptestresult.gcc-user.gcc.dg/vect/vect-31.c -flto -ffat-lto-objects  scan-tree-dump-times vect "vectorized 4 loops" 1
    ptestresult.gcc-user.gcc.dg/vect/section-anchors-vect-69.c scan-tree-dump-times vect "vectorized 4 loops" 1
    ptestresult.gcc-user.gcc.target/powerpc/pr17381.c scan-assembler-times fmr 1
    ptestresult.glibc-user.posix/tst-exec
    ptestresult.gcc-libstdc++-v3-user.27_io/basic_filebuf/seekoff/char/26777.cc execution test
    ptestresult.glibc-user.gmon/tst-gmon-static-gprof
    ptestresult.glibc-user.elf/tst-ptrguard1
    ptestresult.glibc-user.nptl/tst-robust5
    ptestresult.gcc-user.gcc.dg/vmx/ldl-vsx.c   -O2  execution test
    ptestresult.gcc-user.gcc.dg/vmx/merge-vsx.c   -O2  execution test
    ptestresult.glibc-user.posix/tst-spawn2
    ptestresult.glibc-user.elf/tst-unused-dep-cmp
    ptestresult.gcc-user.gcc.dg/vmx/insert-vsx.c   -O0  execution test
    ptestresult.gcc-user.gcc.dg/vmx/merge-vsx.c   -O2 -flto -fno-use-linker-plugin -flto-partition=none  execution test
    ptestresult.gcc-user.gcc.dg/vmx/stl-vsx.c   -O1  execution test
    ptestresult.gcc-user.gcc.dg/torture/pr52451.c   -O3 -g  execution test
    ptestresult.glibc-user.math/test-ifloat32-fma
    ptestresult.gcc-user.gcc.dg/vmx/st-vsx.c   -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects  execution test
testseries | result_id : qemux86-64-ltp | runtime_core-image-sato_qemux86-64_20210413163407
    ltpposixresult.TPS.sched_getscheduler
    ltpresult.containers.netns_comm_ip_ipv4_netlink
    ltpposixresult.THR.pthread_rwlock_rdlock
    ltpresult.controllers.cgroup
    ltpposixresult.THR.pthread_rwlock_unlock
    ltpposixresult.AIO.aio_read
    ltpresult.syscalls.settimeofday02
    ltpresult.containers.netns_sysfs
    ltpresult.controllers.memcg_max_usage_in_bytes
    ltpposixresult.AIO.aio_write
    ltpresult.containers.netns_comm_ip_ipv4_ioctl
    ltpresult.containers.netns_breakns_ip_ipv4_netlink
    ltpresult.syscalls.kill11
    ltpresult.containers.netns_breakns_ip_ipv4_ioctl
    ltpposixresult.MEM.shm_unlink
    ltpposixresult.AIO.aio_error
    ltpposixresult.TPS.sched_setscheduler
    ltpresult.containers.netns_breakns_ip_ipv6_netlink
    ltpresult.containers.netns_comm_ip_ipv6_netlink
    ltpresult.containers.netns_comm_ns_exec_ipv6_ioctl
    ltpposixresult.TPS.sched_get_priority_min
    ltpposixresult.TPS.sched_setparam
    ltpposixresult.MEM.shm_open
    ltpresult.containers.netns_netlink
    ltpresult.containers.netns_comm_ip_ipv6_ioctl
    ltpposixresult.SEM.sem_init
    ltpposixresult.MEM.mmap
    ltpresult.containers.netns_comm_ns_exec_ipv6_netlink
    ltpresult.controllers.memcg_usage_in_bytes
    ltpresult.containers.netns_comm_ns_exec_ipv4_netlink
    ltpresult.containers.netns_breakns_ns_exec_ipv6_netlink
    ltpresult.commands.unshare01_sh
    ltpresult.containers.netns_breakns_ns_exec_ipv6_ioctl
    ltpresult.containers.netns_comm_ns_exec_ipv4_ioctl
    ltpresult.syscalls.settimeofday01
    ltpresult.mm.mtest06
    ltpresult.controllers.memcg_stat
    ltpresult.controllers.memcg_subgroup_charge
    ltpposixresult.TMR.clock_getcpuclockid
    ltpresult.mm.vma05
    ltpresult.containers.netns_breakns_ns_exec_ipv4_netlink
    ltpposixresult.TPS.sched_getparam
    ltpposixresult.AIO.aio_return
    ltpresult.fs_bind.BindMounts
    ltpresult.containers.netns_breakns_ip_ipv6_ioctl
    ltpresult.syscalls.abort01
    ltpresult.net.ipv6_lib.getaddrinfo_01
    ltpresult.containers.netns_breakns_ns_exec_ipv4_ioctl
    ltpposixresult.THR.pthread_barrier_destroy
    ltpposixresult.AIO.aio_suspend
    ltpposixresult.TPS.sched_get_priority_max
    ltpresult.syscalls.msgstress03
testseries | result_id : qemux86-64 | oeselftest_debian-10_qemux86-64_20210413164859
    ptestresult.glibc.elf/reldep6
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.2880 on ssh
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25472 on target
    ptestresult.glibc.elf/dblload
    ptestresult.gcc.gcc.target/i386/cet-sjlj-6b.c scan-assembler-times subq\tbuf\\+16 1
    ptestresult.gcc-libitm.Couldn't create remote directory /tmp/runtest.51840 on ssh
    ptestresult.glibc.stdio-common/bug22
    ptestresult.glibc.malloc/tst-malloc-thread-fail
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25478 on ssh
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.2876 on ssh
    ptestresult.binutils./home/pokybuild/yocto-worker/qemux86-64/build/build-st-50078/tmp/work/core2-64-poky-linux/binutils-cross-testsuite/2.34-r0/git/build.x86_64-poky-linux.x86_64-poky-linux/binutils/testsuite/gentestdlls does not exist
    ptestresult.gcc-g++.g++.dg/vect/simd-clone-5.cc  -std=c++98 (test for excess errors)
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.17009 on ssh
    ptestresult.glibc.elf/tst-ldconfig-ld_so_conf-update
    ptestresult.gcc-g++.g++.dg/vect/simd-clone-3.cc  -std=c++98 (test for excess errors)
    ptestresult.gcc-libatomic.Couldn't create remote directory /tmp/runtest.40127 on ssh
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25451 on ssh
    ptestresult.glibc.posix/wordexp-tst
    ptestresult.glibc.elf/tst-ldconfig-bad-aux-cache
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25453 on ssh
    ptestresult.glibc.libio/tst-wfile-sync
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25478 on target
    ptestresult.binutils-ld.pr25355.o
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.2873 on ssh
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25460 on ssh
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25454 on target
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25472 on ssh
    ptestresult.glibc.nss/tst-nss-db-endpwent
    ptestresult.glibc.nptl/tst-cleanup0-cmp
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.16959 on ssh
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25459 on ssh
    ptestresult.glibc.elf/tst-platform-1
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25474 on target
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.2997 on ssh
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25462 on ssh
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.2909 on ssh
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25458 on target
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25458 on ssh
    ptestresult.glibc.nptl/test-condattr-printers
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.2896 on ssh
    ptestresult.glibc.resolv/mtrace-tst-resolv-res_ninit
    ptestresult.glibc.stdio-common/tst-unbputc
    ptestresult.glibc.nptl/test-rwlockattr-printers
    ptestresult.gcc.gcc.target/i386/pr90178.c scan-assembler-times xorl[\\t ]*\\%eax,[\\t ]*%eax 1
    ptestresult.glibc.elf/tst-dlopen-tlsmodid-container
    ptestresult.glibc.nptl/test-rwlock-printers
    ptestresult.gcc.gcc.dg/vect/vect-simd-clone-12.c (test for excess errors)
    ptestresult.gcc.gcc.target/i386/pr24414.c (test for excess errors)
    ptestresult.glibc.malloc/tst-malloc-thread-fail-mcheck
    ptestresult.glibc.iconv/tst-iconv_prog
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.16942 on ssh
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.2847 on ssh
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.16958 on ssh
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.17002 on ssh
    ptestresult.glibc.elf/resolvfail
    ptestresult.gcc.gcc.target/i386/cet-sjlj-6b.c scan-assembler-times movq\t.*buf\\+16 1
    ptestresult.glibc.elf/tst-global1
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25474 on ssh
    ptestresult.glibc.gmon/tst-gmon-gprof
    ptestresult.gcc-g++.g++.dg/vect/simd-clone-5.cc  -std=c++14 (test for excess errors)
    ptestresult.glibc.timezone/tst-tzset
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.16930 on ssh
    ptestresult.glibc.elf/ifuncmain6pie
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25466 on target
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25463 on target
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25453 on target
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25449 on ssh
    ptestresult.glibc.nss/tst-nss-files-hosts-long
    ptestresult.gcc.gcc.target/i386/cet-sjlj-6a.c scan-assembler-times subq\tbuf\\+8 1
    ptestresult.glibc.nss/tst-nss-test3
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25485 on ssh
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.2889 on ssh
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.16960 on ssh
    ptestresult.glibc.nptl/test-mutex-printers
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25459 on target
    ptestresult.glibc.stdlib/tst-fmtmsg
    ptestresult.glibc.nss/tst-nss-db-endgrent
    ptestresult.glibc.elf/circleload1
    ptestresult.gcc.gcc.target/i386/pr57193.c scan-assembler-times movdqa 2
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25460 on target
    ptestresult.glibc.elf/tst-protected1b
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25481 on target
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.2838 on ssh
    ptestresult.gcc-g++.g++.dg/vect/pr68762-1.cc  -std=c++17 (test for excess errors)
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25464 on ssh
    ptestresult.glibc.elf/tst-pldd
    ptestresult.glibc.locale/tst-locale-locpath
    ptestresult.glibc.localedata/tst-fmon
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.16936 on ssh
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25454 on ssh
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.2950 on ssh
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.2894 on ssh
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.16998 on ssh
    ptestresult.glibc.gmon/tst-gmon-pie-gprof
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.16944 on ssh
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.17014 on ssh
    ptestresult.gcc.gcc.dg/vect/vect-simd-clone-10.c -flto -ffat-lto-objects (test for excess errors)
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25481 on ssh
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25485 on target
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.17022 on ssh
    ptestresult.gcc-libgomp.Couldn't create remote directory /tmp/runtest.48948 on ssh
    ptestresult.glibc.gmon/tst-gmon-static-gprof
    ptestresult.glibc.io/ftwtest
    ptestresult.glibc.malloc/tst-malloc_info
    ptestresult.glibc.resolv/tst-resolv-res_ninit
    ptestresult.glibc.nptl/test-mutexattr-printers
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25462 on target
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.3021 on ssh
    ptestresult.glibc.nptl/test-cond-printers
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25451 on target
    ptestresult.gcc-g++.g++.dg/vect/simd-clone-3.cc  -std=c++14 (test for excess errors)
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25464 on target
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.16945 on ssh
    ptestresult.gcc-g++.g++.dg/vect/simd-clone-5.cc  -std=c++17 (test for excess errors)
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.17003 on ssh
    ptestresult.glibc.elf/tst-dlopen-self-container
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.2936 on ssh
    ptestresult.binutils.dotnet-assemblies (ordinary x86 DLL)
    ptestresult.glibc.posix/globtest
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25466 on ssh
    ptestresult.glibc.localedata/sort-test
    ptestresult.glibc.stdio-common/test-vfprintf
    ptestresult.glibc.iconvdata/iconv-test
    ptestresult.glibc.elf/lateglobal
    ptestresult.gcc.gcc.dg/vect/vect-simd-clone-10.c (test for excess errors)
    ptestresult.glibc.elf/dblunload
    ptestresult.glibc.malloc/tst-malloc_info-mcheck
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.2821 on ssh
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.17024 on ssh
    ptestresult.glibc.stdlib/tst-system
    ptestresult.glibc.elf/tst-protected1a
    ptestresult.gcc.gcc.dg/vect/vect-simd-clone-12.c -flto -ffat-lto-objects (test for excess errors)
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25449 on target
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.25463 on ssh
    ptestresult.gcc-g++.g++.dg/vect/simd-clone-3.cc  -std=c++17 (test for excess errors)
    ptestresult.gcc.gcc.target/i386/cet-sjlj-6a.c scan-assembler-times movq\t.*buf\\+8 1
    ptestresult.gcc.compiler driver --help=warnings option(s): "^ +-.*[^:.]$" absent from output: "  -Wpoison-system-directories Warn for -I and -L options using system directories if cross compiling"
    ptestresult.gcc-g++.g++.dg/vect/pr68762-1.cc  -std=c++14 (test for excess errors)
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.2891 on ssh
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.17027 on ssh
    ptestresult.glibc.elf/constload1
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.2839 on ssh
    ptestresult.glibc.nptl/tst-stack4
    ptestresult.glibc.stdio-common/tst-setvbuf1-cmp
    ptestresult.gcc.gcc.target/i386/fentryname3.c scan-assembler 0x0f, 0x1f, 0x44, 0x00, 0x00
testseries | result_id : qemux86 | oeselftest_debian-10_qemux86_20210413171448
    ptestresult.gcc-g++.g++.dg/pr71694.C  -std=gnu++17  scan-assembler-not movl
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.33882 on ssh
    ptestresult.glibc.elf/reldep6
    ptestresult.glibc.elf/dblload
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.48385 on ssh
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.48467 on ssh
    ptestresult.gcc.gcc.dg/sibcall-11.c scan-assembler jmp
    ptestresult.gcc-g++.g++.dg/pr71694.C  -std=gnu++98  scan-assembler-not movl
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40831 on target
    ptestresult.gcc-g++.g++.dg/abi/anon4.C  -std=c++14  scan-assembler-not comdat
    ptestresult.glibc.elf/lateglobal
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.33966 on ssh
    ptestresult.gcc.gcc.target/i386/interrupt-13.c scan-assembler-times movl[\\t ]*-4\\(%ebp\\),[\\t ]*%eax 1
    ptestresult.gcc-g++.g++.dg/vect/simd-clone-5.cc  -std=c++98 (test for excess errors)
    ptestresult.gcc-g++.g++.dg/abi/anon1.C  -std=c++17  scan-assembler-not globl
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40838 on target
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40830 on target
    ptestresult.glibc.elf/tst-ldconfig-ld_so_conf-update
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.33802 on ssh
    ptestresult.gcc-g++.g++.dg/vect/simd-clone-3.cc  -std=c++98 (test for excess errors)
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.48487 on ssh
    ptestresult.gcc.gcc.target/i386/interrupt-12.c scan-assembler-times movl[\\t ]*-4\\(%ebp\\),[\\t ]*%eax 1
    ptestresult.gcc.gcc.target/i386/avx512bw-vpmovswb-1.c scan-assembler-times vpmovswb[ \\t]+[^{\n]*%xmm[0-9]+[^\n]*res1[^\n]*{%k[1-7]}(?:\n|[ \\t]+#) 1
    ptestresult.glibc.posix/wordexp-tst
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.33784 on ssh
    ptestresult.gcc.gcc.target/i386/interrupt-15.c scan-assembler-not (push|pop)(l|q)[\\t ]*%(r|e)(b|c|d)x
    ptestresult.gcc.gcc.target/i386/pr85620-2.c scan-assembler-times \\mendbr 1
    ptestresult.glibc.elf/tst-ldconfig-bad-aux-cache
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.33974 on ssh
    ptestresult.glibc.libio/tst-wfile-sync
    ptestresult.gcc-libgomp.Couldn't create remote directory /tmp/runtest.55274 on ssh
    ptestresult.gcc-g++.g++.dg/pr80481.C  -std=gnu++17  scan-assembler-not vmovaps
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40828 on target
    ptestresult.gcc.gcc.target/i386/avx512bw-vpmovwb-1.c scan-assembler-times vpmovwb[ \\t]+[^{\n]*%xmm[0-9]+[^\n]*res1[^\n]*{%k[1-7]}(?:\n|[ \\t]+#) 1
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40829 on ssh
    ptestresult.gcc.gcc.target/i386/avx512bw-vpmovuswb-1.c scan-assembler-times vpmovuswb[ \\t]+[^{\n]*%ymm[0-9]+[^\n]*res2[^\n]*{%k[1-7]}(?:\n|[ \\t]+#) 1
    ptestresult.binutils-ld.pr25355.o
    ptestresult.gcc-libitm.Couldn't create remote directory /tmp/runtest.42547 on ssh
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.33822 on ssh
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40823 on target
    ptestresult.gcc-g++.g++.dg/pr80481.C  -std=gnu++98  scan-assembler-not vmovaps
    ptestresult.glibc.nss/tst-nss-db-endpwent
    ptestresult.glibc.nptl/tst-cleanup0-cmp
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40836 on target
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40832 on target
    ptestresult.gcc.gcc.target/i386/stack-check-12.c scan-assembler popl\t%esi
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.48406 on ssh
    ptestresult.gcc-g++.g++.dg/stackprotectexplicit2.C  -std=gnu++17  scan-assembler-times stack_chk_fail 2
    ptestresult.glibc.elf/tst-initfinilazyfail
    ptestresult.gcc.gcc.target/i386/avx512bw-vpmovuswb-1.c scan-assembler-times vpmovuswb[ \\t]+[^{\n]*%zmm[0-9]+[^\n]*res3[^\n]*{%k[1-7]}(?:\n|[ \\t]+#) 1
    ptestresult.gcc.gcc.target/i386/avx512bw-vpmovwb-1.c scan-assembler-times vpmovwb[ \\t]+[^{\n]*%ymm[0-9]+[^\n]*res2[^\n]*{%k[1-7]}(?:\n|[ \\t]+#) 1
    ptestresult.glibc.nptl/test-condattr-printers
    ptestresult.glibc.resolv/mtrace-tst-resolv-res_ninit
    ptestresult.glibc.stdio-common/tst-unbputc
    ptestresult.glibc.nptl/test-rwlockattr-printers
    ptestresult.gcc.gcc.target/i386/pr90178.c scan-assembler-times xorl[\\t ]*\\%eax,[\\t ]*%eax 1
    ptestresult.glibc.elf/tst-dlopen-tlsmodid-container
    ptestresult.glibc.nptl/test-rwlock-printers
    ptestresult.gcc.gcc.dg/vect/vect-simd-clone-12.c (test for excess errors)
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40820 on ssh
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.33811 on ssh
    ptestresult.glibc.iconv/tst-iconv_prog
    ptestresult.binutils./home/pokybuild/yocto-worker/qemux86/build/build-st-49359/tmp/work/core2-32-poky-linux/binutils-cross-testsuite/2.34-r0/git/build.i686-poky-linux.i686-poky-linux/binutils/testsuite/gentestdlls does not exist
    ptestresult.gcc.gcc.target/i386/pr71245-2.c scan-assembler-not movlps
    ptestresult.gcc.gcc.target/i386/pr85667-6.c scan-assembler-times movl[^\n\r]*, %eax 1
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.33864 on ssh
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.33886 on ssh
    ptestresult.gcc.gcc.target/i386/gfni-4.c (test for excess errors)
    ptestresult.glibc.elf/resolvfail
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40834 on ssh
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.33809 on ssh
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40826 on target
    ptestresult.gcc.gcc.target/i386/avx512bw-vpmovwb-1.c scan-assembler-times vpmovwb[ \\t]+[^{\n]*%zmm[0-9]+[^\n]*res3[^\n]*{%k[1-7]}(?:\n|[ \\t]+#) 1
    ptestresult.glibc.elf/tst-global1
    ptestresult.gcc.gcc.target/i386/interrupt-15.c scan-assembler-times movl[\\t ]*-4\\(%ebp\\),[\\t ]*%eax 2
    ptestresult.glibc.gmon/tst-gmon-gprof
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.48447 on ssh
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40829 on target
    ptestresult.glibc.elf/constload1
    ptestresult.gcc-g++.g++.dg/abi/anon4.C  -std=c++98  scan-assembler-not comdat
    ptestresult.glibc.malloc/tst-dynarray-fail-mem
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40838 on ssh
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.48461 on ssh
    ptestresult.gcc-g++.g++.dg/vect/simd-clone-5.cc  -std=c++14 (test for excess errors)
    ptestresult.glibc.timezone/tst-tzset
    ptestresult.gcc-g++.g++.dg/abi/anon1.C  -std=c++14  scan-assembler-not globl
    ptestresult.gcc-g++.g++.dg/stackprotectexplicit2.C  -std=gnu++14  scan-assembler-times stack_chk_fail 2
    ptestresult.glibc.elf/ifuncmain6pie
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40826 on ssh
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40827 on ssh
    ptestresult.gcc.gcc.target/i386/interrupt-12.c scan-assembler-not (push|pop)(l|q)[\\t ]*%(r|e)(b|c|d)x
    ptestresult.gcc-g++.g++.dg/abi/anon4.C  -std=c++17  scan-assembler-not comdat
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.33764 on ssh
    ptestresult.gcc.gcc.target/i386/avx512bw-vpmovswb-1.c scan-assembler-times vpmovswb[ \\t]+[^{\n]*%ymm[0-9]+[^\n]*res2[^\n]*{%k[1-7]}(?:\n|[ \\t]+#) 1
    ptestresult.glibc.malloc/tst-dynarray-fail
    ptestresult.gcc.gcc.target/i386/avx512bw-vpmovswb-1.c scan-assembler-times vpmovswb[ \\t]+[^{\n]*%zmm[0-9]+[^\n]*res3[^\n]*{%k[1-7]}(?:\n|[ \\t]+#) 1
    ptestresult.gcc.gcc.target/i386/pr81736-5.c scan-assembler-not %[re]bp
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40820 on target
    ptestresult.glibc.nss/tst-nss-files-hosts-long
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.33839 on ssh
    ptestresult.glibc.nss/tst-nss-test3
    ptestresult.gcc.gcc.target/i386/mvc10.c (test for excess errors)
    ptestresult.glibc.nptl/test-mutex-printers
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40823 on ssh
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.48507 on ssh
    ptestresult.gcc.gcc.target/i386/interrupt-11.c scan-assembler-not pushl[\\t ]*%ebx
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.33862 on ssh
    ptestresult.glibc.stdlib/tst-fmtmsg
    ptestresult.glibc.nss/tst-nss-db-endgrent
    ptestresult.glibc.elf/circleload1
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.33854 on ssh
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40822 on ssh
    ptestresult.gcc.gcc.target/i386/pr49095.c scan-assembler-not \\(%eax\\), %
    ptestresult.gcc.gcc.target/i386/pr57193.c scan-assembler-times movdqa 2
    ptestresult.glibc.elf/tst-protected1b
    ptestresult.gcc.gcc.target/i386/pr15184-1.c scan-assembler-times movb[ \\t]+%al 4
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40825 on target
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40822 on target
    ptestresult.gcc-g++.g++.dg/vect/pr68762-1.cc  -std=c++17 (test for excess errors)
    ptestresult.gcc.gcc.target/i386/pr70263-2.c scan-rtl-dump ira "Adding REG_EQUIV to insn [0-9]+ for source of insn [0-9]+"
    ptestresult.gcc-g++.g++.dg/pr71694.C  -std=gnu++14  scan-assembler-not movl
    ptestresult.glibc.elf/tst-pldd
    ptestresult.glibc.locale/tst-locale-locpath
    ptestresult.glibc.localedata/tst-fmon
    ptestresult.gcc.gcc.target/i386/pr81563.c scan-assembler-not movl[ \\t]+[0-9]*\\(%esp\\)
    ptestresult.gcc-g++.g++.dg/abi/anon1.C  -std=c++98  scan-assembler-not globl
    ptestresult.glibc.gmon/tst-gmon-pie-gprof
    ptestresult.gcc.gcc.target/i386/pr15184-2.c scan-assembler-times movb[ \\t]+%al 2
    ptestresult.gcc.gcc.target/i386/sseregparm-3.c scan-assembler fldl
    ptestresult.gcc-libatomic.Couldn't create remote directory /tmp/runtest.4481 on ssh
    ptestresult.gcc.gcc.dg/vect/vect-simd-clone-10.c -flto -ffat-lto-objects (test for excess errors)
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.48509 on ssh
    ptestresult.gcc.gcc.target/i386/pr84278.c scan-assembler-not \\(%.sp\\)
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40836 on ssh
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40831 on ssh
    ptestresult.glibc.gmon/tst-gmon-static-gprof
    ptestresult.gcc.gcc.dg/torture/builtin-self.c   -O0   scan-assembler-not \tcall
    ptestresult.gcc-g++.g++.dg/stackprotectexplicit2.C  -std=gnu++98  scan-assembler-times stack_chk_fail 2
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40833 on ssh
    ptestresult.glibc.io/ftwtest
    ptestresult.gcc.gcc.target/i386/stack-check-12.c scan-assembler pushl\t%esi
    ptestresult.glibc.resolv/tst-resolv-res_ninit
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40835 on ssh
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.48475 on ssh
    ptestresult.glibc.nptl/test-mutexattr-printers
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.48361 on ssh
    ptestresult.gcc.gcc.target/i386/interrupt-17.c scan-assembler-not (push|pop)(l|q)[\\t ]*%(r|e)(a|b|c|d)x
    ptestresult.glibc.nptl/test-cond-printers
    ptestresult.gcc-g++.g++.dg/vect/simd-clone-3.cc  -std=c++14 (test for excess errors)
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40825 on ssh
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.48383 on ssh
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.48386 on ssh
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.48480 on ssh
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40828 on ssh
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40827 on target
    ptestresult.gcc-g++.g++.dg/vect/simd-clone-5.cc  -std=c++17 (test for excess errors)
    ptestresult.gcc.gcc.target/i386/pad-10.c scan-assembler-not nop
    ptestresult.glibc.elf/tst-latepthread
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.48376 on ssh
    ptestresult.glibc.elf/tst-dlopen-self-container
    ptestresult.gcc-g++.g++.dg/pr80481.C  -std=gnu++14  scan-assembler-not vmovaps
    ptestresult.binutils.dotnet-assemblies (ordinary x86 DLL)
    ptestresult.glibc.posix/globtest
    ptestresult.glibc.stdio-common/bug22
    ptestresult.gcc.gcc.target/i386/avx512bw-vpmovuswb-1.c scan-assembler-times vpmovuswb[ \\t]+[^{\n]*%xmm[0-9]+[^\n]*res1[^\n]*{%k[1-7]}(?:\n|[ \\t]+#) 1
    ptestresult.gcc.gcc.target/i386/pr22076.c scan-assembler-times movq 3
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40834 on target
    ptestresult.glibc.localedata/sort-test
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40833 on target
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40835 on target
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40830 on ssh
    ptestresult.glibc.stdio-common/test-vfprintf
    ptestresult.glibc.iconvdata/iconv-test
    ptestresult.gcc.gcc.dg/vect/vect-simd-clone-10.c (test for excess errors)
    ptestresult.gcc.gcc.target/i386/interrupt-16.c scan-assembler-not (push|pop)(l|q)[\\t ]*%(r|e)(a|b|c|d)x
    ptestresult.glibc.elf/dblunload
    ptestresult.gcc-libstdc++-v3.Couldn't create remote directory /tmp/runtest.40832 on ssh
    ptestresult.gcc.gcc.target/i386/stack-check-17.c scan-assembler-times push[ql] 4
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.48403 on ssh
    ptestresult.glibc.stdlib/tst-system
    ptestresult.glibc.elf/tst-protected1a
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.33728 on ssh
    ptestresult.gcc.gcc.dg/vect/vect-simd-clone-12.c -flto -ffat-lto-objects (test for excess errors)
    ptestresult.gcc.gcc.target/i386/pr71245-1.c scan-assembler-not (fistp|fild)
    ptestresult.gcc-g++.g++.dg/vect/simd-clone-3.cc  -std=c++17 (test for excess errors)
    ptestresult.gcc.gcc.target/i386/stack-prot-sym.c scan-assembler gs:my_guard
    ptestresult.gcc.compiler driver --help=warnings option(s): "^ +-.*[^:.]$" absent from output: "  -Wpoison-system-directories Warn for -I and -L options using system directories if cross compiling"
    ptestresult.gcc-g++.g++.dg/vect/pr68762-1.cc  -std=c++14 (test for excess errors)
    ptestresult.gcc.gcc.target/i386/pr81736-7.c scan-assembler-not %[re]bp
    ptestresult.gcc.gcc.target/i386/interrupt-13.c scan-assembler-not (push|pop)(l|q)[\\t ]*%(r|e)(b|c|d)x
    ptestresult.glibc.nptl/tst-stack4
    ptestresult.gcc.gcc.target/i386/interrupt-8.c scan-assembler-not pushl[\\t ]*%ebx
    ptestresult.glibc.stdio-common/tst-setvbuf1-cmp
    ptestresult.gcc.Couldn't create remote directory /tmp/runtest.33818 on ssh
    ptestresult.gcc-g++.Couldn't create remote directory /tmp/runtest.48409 on ssh
    ptestresult.gcc.gcc.target/i386/pr78035.c scan-assembler-times cmp 2
testseries | result_id : skylake | runtime_core-image-sato-sdk_genericx86-64_20210414051555
    parselogs.ParseLogsTest.test_parselogs
--------------------------------------------------------------------------------------------------------------