summaryrefslogtreecommitdiffstats
path: root/oeselftest/testresults.json
blob: 395114f75c24f717fb1f147aa8dad3109a15e2e1 (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
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
{
    "oeselftest_centos-7_qemux86-64_20190722210505": {
        "configuration": {
            "HOST_DISTRO": "centos-7",
            "HOST_NAME": "centos7-ty-3",
            "LAYERS": {
                "meta": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-poky": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-selftest": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-yocto-bsp": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                }
            },
            "MACHINE": "qemux86-64",
            "STARTTIME": "20190722210505",
            "TESTSERIES": "oe-selftest-centos",
            "TEST_TYPE": "oeselftest"
        },
        "result": {
            "archiver.Archiver.test_archiver_allows_to_filter_on_recipe_name": {
                "status": "PASSED"
            },
            "archiver.Archiver.test_archiver_filters_by_type": {
                "status": "PASSED"
            },
            "archiver.Archiver.test_archiver_filters_by_type_and_name": {
                "status": "PASSED"
            },
            "archiver.Archiver.test_archiver_srpm_mode": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_add_remove": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_createlayer": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_flatten": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_showappends": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_showcrossdepends": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_showlayers": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_showoverlayed": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_showrecipes": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_bbappend_order": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_bitbake_g": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_bitbake_invalid_recipe": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_bitbake_invalid_target": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_checkuri": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_continue": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_dry_run": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_environment": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_event_handler": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_force_task_1": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_force_task_2": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_image_manifest": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_invalid_patch": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_invalid_recipe_src_uri": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_just_parse": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_local_sstate": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_non_gplv3": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_postfile": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_prefile": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_rename_downloaded_file": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_run_bitbake_from_dir_1": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_run_bitbake_from_dir_2": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_run_bitbake_from_dir_3": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_setscene_only": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_skip_setscene": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_version": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_warnings_errors": {
                "status": "PASSED"
            },
            "buildoptions.ArchiverTest.test_arch_work_dir_and_export_source": {
                "status": "PASSED"
            },
            "buildoptions.BuildhistoryTests.test_buildhistory_basic": {
                "status": "PASSED"
            },
            "buildoptions.BuildhistoryTests.test_buildhistory_buildtime_pr_backwards": {
                "status": "PASSED"
            },
            "buildoptions.DiskMonTest.test_stoptask_behavior": {
                "status": "PASSED"
            },
            "buildoptions.ImageOptionsTests.test_ccache_tool": {
                "status": "PASSED"
            },
            "buildoptions.ImageOptionsTests.test_incremental_image_generation": {
                "status": "PASSED"
            },
            "buildoptions.ImageOptionsTests.test_read_only_image": {
                "status": "PASSED"
            },
            "buildoptions.SanityOptionsTest.test_layer_without_git_dir": {
                "status": "PASSED"
            },
            "buildoptions.SanityOptionsTest.test_options_warnqa_errorqa_switch": {
                "status": "PASSED"
            },
            "buildoptions.SourceMirroring.test_yocto_source_mirror": {
                "log": "Skip by the command line argument \"buildoptions.SourceMirroring.test_yocto_source_mirror\"\n",
                "status": "SKIPPED"
            },
            "buildoptions.ToolchainOptions.test_toolchain_fortran": {
                "status": "PASSED"
            },
            "containerimage.ContainerImageTests.test_expected_files": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add_fetch": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add_fetch_git": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add_fetch_simple": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add_git_local": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add_library": {
                "status": "PASSED"
            },
            "devtool.DevtoolExtractTests.test_devtool_build_image": {
                "status": "PASSED"
            },
            "devtool.DevtoolExtractTests.test_devtool_deploy_target": {
                "status": "PASSED"
            },
            "devtool.DevtoolExtractTests.test_devtool_extract": {
                "status": "PASSED"
            },
            "devtool.DevtoolExtractTests.test_devtool_extract_virtual": {
                "status": "PASSED"
            },
            "devtool.DevtoolExtractTests.test_devtool_reset_all": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_buildclean": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify_git": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify_invalid": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify_localfiles": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify_native": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify_virtual": {
                "status": "PASSED"
            },
            "devtool.DevtoolTests.test_create_workspace": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_append": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_append_git": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_git": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_local_files": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_local_files_2": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_local_files_3": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_local_files_subdir": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_local_patch_gz": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_finish_modify_origlayer": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_finish_modify_otherlayer": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_finish_upgrade_origlayer": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_finish_upgrade_otherlayer": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_layer_plugins": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_load_plugin": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_rename": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_upgrade": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_upgrade_git": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_virtual_kernel_modify": {
                "status": "PASSED"
            },
            "distrodata.Distrodata.test_checkpkg": {
                "log": "Skip by the command line argument \"distrodata.Distrodata.test_checkpkg\"\n",
                "status": "SKIPPED"
            },
            "distrodata.Distrodata.test_maintainers": {
                "status": "PASSED"
            },
            "eSDK.oeSDKExtSelfTest.test_image_generation_binary_feeds": {
                "status": "PASSED"
            },
            "eSDK.oeSDKExtSelfTest.test_install_libraries_headers": {
                "status": "PASSED"
            },
            "efibootpartition.GenericEFITest.test_boot_efi": {
                "status": "PASSED"
            },
            "fetch.Fetch.test_git_mirrors": {
                "status": "PASSED"
            },
            "gotoolchain.oeGoToolchainSelfTest.test_go_dep_build": {
                "status": "PASSED"
            },
            "image_typedep.ImageTypeDepTests.test_conversion_typedep_added": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_all_users_can_connect_via_ssh_without_password": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_bmap": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_clutter_image_can_be_built": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_hypervisor_fmts": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_image_fstypes": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_long_chain_conversion": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_no_busybox_base_utils": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_non_root_user_can_connect_via_ssh_without_password": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_useradd_static": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_wayland_support_in_image": {
                "status": "PASSED"
            },
            "incompatible_lic.IncompatibleLicenseTests.test_incompatible_alias_spdx_license": {
                "status": "PASSED"
            },
            "incompatible_lic.IncompatibleLicenseTests.test_incompatible_alias_spdx_license_alias": {
                "status": "PASSED"
            },
            "incompatible_lic.IncompatibleLicenseTests.test_incompatible_nonspdx_license": {
                "status": "PASSED"
            },
            "incompatible_lic.IncompatibleLicenseTests.test_incompatible_spdx_license": {
                "status": "PASSED"
            },
            "incompatible_lic.IncompatibleLicenseTests.test_incompatible_spdx_license_alias": {
                "status": "PASSED"
            },
            "layerappend.LayerAppendTests.test_layer_appends": {
                "status": "PASSED"
            },
            "liboe.LibOE.test_copy_hardlink_tree_count": {
                "status": "PASSED"
            },
            "liboe.LibOE.test_copy_tree_special": {
                "status": "PASSED"
            },
            "liboe.LibOE.test_copy_tree_xattr": {
                "status": "PASSED"
            },
            "lic_checksum.LicenseTests.test_nonmatching_checksum": {
                "status": "PASSED"
            },
            "manifest.VerifyManifest.test_SDK_manifest_entries": {
                "status": "PASSED"
            },
            "manifest.VerifyManifest.test_image_manifest_entries": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_can_build_cpio_project": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_can_compile_c_program": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_had_installed_meta_ide_support": {
                "status": "PASSED"
            },
            "multiconfig.MultiConfig.test_multiconfig": {
                "status": "PASSED"
            },
            "oelib.buildhistory.TestBlobParsing.test_blob_to_dict": {
                "status": "PASSED"
            },
            "oelib.buildhistory.TestBlobParsing.test_compare_dict_blobs": {
                "status": "PASSED"
            },
            "oelib.buildhistory.TestBlobParsing.test_compare_dict_blobs_default": {
                "status": "PASSED"
            },
            "oelib.elf.TestElf.test_machine_name": {
                "status": "PASSED"
            },
            "oelib.license.TestComplexCombinations.test_tests": {
                "status": "PASSED"
            },
            "oelib.license.TestIsIncluded.test_tests": {
                "status": "PASSED"
            },
            "oelib.license.TestSimpleCombinations.test_tests": {
                "status": "PASSED"
            },
            "oelib.license.TestSingleLicense.test_invalid_licenses": {
                "status": "PASSED"
            },
            "oelib.license.TestSingleLicense.test_single_licenses": {
                "status": "PASSED"
            },
            "oelib.path.TestRealPath.test_loop": {
                "status": "PASSED"
            },
            "oelib.path.TestRealPath.test_norm": {
                "status": "PASSED"
            },
            "oelib.path.TestRealPath.test_phys": {
                "status": "PASSED"
            },
            "oelib.types.TestBooleanType.test_bool_equality": {
                "status": "PASSED"
            },
            "oelib.types.TestBooleanType.test_false": {
                "status": "PASSED"
            },
            "oelib.types.TestBooleanType.test_invalid": {
                "status": "PASSED"
            },
            "oelib.types.TestBooleanType.test_true": {
                "status": "PASSED"
            },
            "oelib.types.TestList.test_list_nosep": {
                "status": "PASSED"
            },
            "oelib.types.TestList.test_list_usersep": {
                "status": "PASSED"
            },
            "oelib.utils.TestMultiprocessLaunch.test_multiprocesslaunch": {
                "status": "PASSED"
            },
            "oelib.utils.TestPackagesFilterOutSystem.test_filter": {
                "status": "PASSED"
            },
            "oelib.utils.TestTrimVersion.test_num_exception": {
                "status": "PASSED"
            },
            "oelib.utils.TestTrimVersion.test_valid": {
                "status": "PASSED"
            },
            "oelib.utils.TestTrimVersion.test_version_exception": {
                "status": "PASSED"
            },
            "oescripts.BuildhistoryDiffTests.test_buildhistory_diff": {
                "status": "PASSED"
            },
            "oescripts.OEPybootchartguyTests.test_pybootchartguy_help": {
                "status": "PASSED"
            },
            "oescripts.OEPybootchartguyTests.test_pybootchartguy_to_generate_build_pdf_output": {
                "status": "PASSED"
            },
            "oescripts.OEPybootchartguyTests.test_pybootchartguy_to_generate_build_png_output": {
                "status": "PASSED"
            },
            "oescripts.OEPybootchartguyTests.test_pybootchartguy_to_generate_build_svg_output": {
                "status": "PASSED"
            },
            "package.PackageTests.test_gdb_hardlink_debug": {
                "status": "PASSED"
            },
            "package.PackageTests.test_preserve_sparse_hardlinks": {
                "status": "PASSED"
            },
            "package.VersionOrdering.test_dpkg": {
                "status": "PASSED"
            },
            "package.VersionOrdering.test_opkg": {
                "status": "PASSED"
            },
            "package.VersionOrdering.test_rpm": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_find_path": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_glob": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_list_pkg_files": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_list_pkgs": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_lookup_pkg": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_lookup_recipe": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_read_value": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_specify_pkgdatadir": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_import_export_override_db": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_import_export_replace_db": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_deb_arch_dep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_deb_arch_indep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_ipk_arch_dep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_ipk_arch_indep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_rpm_arch_dep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_rpm_arch_indep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_stopping_prservice_message": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_basic": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_basic_wildcard": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_existing_in_src_uri": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_existing_in_src_uri_diff_params": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_replace_file_srcdir": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_srcdir_basic": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_subdir_basic": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_subdir_basic_dirdest": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfiles_basic": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfiles_basic_subdir": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_add": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_add_bindir": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_add_machine": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_alternatives": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_basic": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_binary": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_extlayer": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_inst_func": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_inst_glob": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_inst_todir_glob": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_invalid": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_orig": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_patch": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_postinstall": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_renamed": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_script": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_src_glob": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_subdir": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_todir": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_wildcard": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_cmake": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_git": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_git_http": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_github": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_github_tarball": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_python3_distutils": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_python3_setuptools": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_simple": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_load_plugin": {
                "status": "PASSED"
            },
            "recipeutils.RecipeUtilsTests.test_patch_recipe_appends": {
                "status": "PASSED"
            },
            "recipeutils.RecipeUtilsTests.test_patch_recipe_singleappend": {
                "status": "PASSED"
            },
            "recipeutils.RecipeUtilsTests.test_patch_recipe_varflag": {
                "status": "PASSED"
            },
            "recipeutils.RecipeUtilsTests.test_split_var_value": {
                "status": "PASSED"
            },
            "recipeutils.RecipeUtilsTests.test_validate_pn": {
                "status": "PASSED"
            },
            "reproducible.ReproducibleTests.test_reproducible_builds": {
                "log": "Reproducible builds do not yet pass\n",
                "status": "SKIPPED"
            },
            "resulttooltests.ResultToolTests.test_merge_can_merged_results": {
                "status": "PASSED"
            },
            "resulttooltests.ResultToolTests.test_regression_can_get_regression_base_target_pair": {
                "status": "PASSED"
            },
            "resulttooltests.ResultToolTests.test_regrresion_can_get_regression_result": {
                "status": "PASSED"
            },
            "resulttooltests.ResultToolTests.test_report_can_aggregate_test_result": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_list_not_found": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_list_okay": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_log": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_log_split": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_no_shell": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_output": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_output_split": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_result_assertion": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_result_exception": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_result_false": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_result_okay": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_shell": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_stdin": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_stdin_timeout": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_timeout": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_timeout_split": {
                "status": "PASSED"
            },
            "runqemu.QemuTest.test_qemu_can_shutdown": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy_hddimg": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_ext4": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_iso": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp_qcow2": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 114, in test_boot_machine_slirp_qcow2\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib64/python3.6/contextlib.py\", line 81, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22859/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22859/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723010755:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22859/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723010755\nINFO: SSH log file: /home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22859/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723010755\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:58539\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:42016\nDEBUG: launchcmd=runqemu nographic kvm slirp wic.qcow2 qemux86-64 tcpserial=58539:42016 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_22859\"\nDEBUG: runqemu started, pid is 59359\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 01:07:57)\nDEBUG: qemu started in 2.002930164337158 seconds - qemu procces pid is 60478 (07/23/19 01:07:59)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running MACHINE=qemux86-64 bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Port forward: hostfwd=tcp::2222-:22 hostfwd=tcp::2323-:23\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22859/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:35:02 -netdev user,id=net0,hostfwd=tcp::2222-:22,hostfwd=tcp::2323-:23,tftp=/home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22859/tmp/deploy/images/qemux86-64 -drive file=/home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22859/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64-20190723005704.rootfs.wic.qcow2,if=virtio,format=qcow2 -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:58539 -serial tcp:127.0.0.1:42016  -pidfile pidfile_22859 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 01:07:59)\nDEBUG: Connection from 127.0.0.1:46666\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 01:24:40)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J[0mk\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22859/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723010755\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22859/tmp/log/runtime-hostdump/201907230124_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_qemu_boot": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vdi": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 85, in test_boot_recipe_image_vdi\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib64/python3.6/contextlib.py\", line 81, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22859/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22859/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723012542:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22859/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723012542\nINFO: SSH log file: /home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22859/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723012542\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:40232\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:56108\nDEBUG: launchcmd=runqemu nographic kvm core-image-minimal wic.vdi tcpserial=40232:56108 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_22859\"\nDEBUG: runqemu started, pid is 131791\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 01:25:46)\nDEBUG: qemu started in 3.504274845123291 seconds - qemu procces pid is 132606 (07/23/19 01:25:50)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Using preconfigured tap device tap0\nrunqemu - INFO - If this is not intended, touch /tmp/qemu-tap-locks/tap0.skip to make runqemu skip tap0.\nrunqemu - INFO - Network configuration: 192.168.7.2::192.168.7.1:255.255.255.0\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22859/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:34:02 -netdev tap,id=net0,ifname=tap0,script=no,downscript=no -drive file=/home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22859/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.wic.vdi,if=virtio,format=vdi -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:40232 -serial tcp:127.0.0.1:56108  -pidfile pidfile_22859 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 01:25:50)\nDEBUG: Connection from 127.0.0.1:45238\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 01:42:31)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J[0mk\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22859/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723012542\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22859/tmp/log/runtime-hostdump/201907230142_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vmdk": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 78, in test_boot_recipe_image_vmdk\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib64/python3.6/contextlib.py\", line 81, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22859/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22859/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723014235:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22859/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723014235\nINFO: SSH log file: /home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22859/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723014235\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:52830\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:41413\nDEBUG: launchcmd=runqemu nographic kvm core-image-minimal wic.vmdk tcpserial=52830:41413 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_22859\"\nDEBUG: runqemu started, pid is 122852\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 01:42:37)\nDEBUG: qemu started in 2.0034477710723877 seconds - qemu procces pid is 122924 (07/23/19 01:42:39)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Using preconfigured tap device tap0\nrunqemu - INFO - If this is not intended, touch /tmp/qemu-tap-locks/tap0.skip to make runqemu skip tap0.\nrunqemu - INFO - Network configuration: 192.168.7.2::192.168.7.1:255.255.255.0\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22859/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:34:02 -netdev tap,id=net0,ifname=tap0,script=no,downscript=no -drive file=/home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22859/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.wic.vmdk,if=virtio,format=vmdk -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:52830 -serial tcp:127.0.0.1:41413  -pidfile pidfile_22859 \n\n\nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 01:42:39)\nDEBUG: Connection from 127.0.0.1:49662\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 01:59:20)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\n\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22859/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723014235\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22859/tmp/log/runtime-hostdump/201907230159_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_rootfs": {
                "status": "PASSED"
            },
            "runtime_test.Postinst.test_failing_postinst": {
                "status": "PASSED"
            },
            "runtime_test.Postinst.test_postinst_rootfs_and_boot": {
                "status": "PASSED"
            },
            "runtime_test.TestExport.test_testexport_basic": {
                "status": "PASSED"
            },
            "runtime_test.TestExport.test_testexport_sdk": {
                "status": "PASSED"
            },
            "runtime_test.TestImage.test_testimage_dnf": {
                "status": "PASSED"
            },
            "runtime_test.TestImage.test_testimage_install": {
                "status": "PASSED"
            },
            "runtime_test.TestImage.test_testimage_virgl_gtk": {
                "status": "PASSED"
            },
            "runtime_test.TestImage.test_testimage_virgl_headless": {
                "log": "No render nodes found in /dev/dri: ['card0']\n",
                "status": "SKIPPED"
            },
            "selftest.ExternalLayer.test_list_imported": {
                "status": "PASSED"
            },
            "signing.LockedSignatures.test_locked_signatures": {
                "status": "PASSED"
            },
            "signing.Signing.test_signing_packages": {
                "status": "PASSED"
            },
            "signing.Signing.test_signing_sstate_archive": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_autorev_sstate_works": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_cleansstate_task_distro_nonspecific": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_cleansstate_task_distro_specific": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_cleansstate_task_distro_specific_nonspecific": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_rebuild_distro_specific_sstate_cross_native_targets": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_rebuild_distro_specific_sstate_cross_target": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_rebuild_distro_specific_sstate_native_target": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_32_64_same_hash": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_allarch_samesigs": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_cache_management_script_using_machine": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_cache_management_script_using_pr_1": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_cache_management_script_using_pr_2": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_cache_management_script_using_pr_3": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_creation_distro_nonspecific_fail": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_creation_distro_nonspecific_pass": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_creation_distro_specific_fail": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_creation_distro_specific_pass": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_nativelsbstring_same_hash": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_nativesdk_samesigs_multilib": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_noop_samesigs": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_sametune_samesigs": {
                "status": "PASSED"
            },
            "systemd_boot.Systemdboot.test_efi_systemdboot_images_can_be_built": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_datastore_operations": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_expand": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_getvar": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_getvar_bb_origenv": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_list_recipes": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_parse_recipe": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_parse_recipe_copy_expand": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_parse_recipe_initial_datastore": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_setvariable_clean": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_variable_history": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_wait_event": {
                "status": "PASSED"
            },
            "wic.Wic.test_bootloader_config": {
                "status": "PASSED"
            },
            "wic.Wic.test_build_artifacts": {
                "status": "PASSED"
            },
            "wic.Wic.test_build_image_name": {
                "status": "PASSED"
            },
            "wic.Wic.test_build_rootfs_long": {
                "status": "PASSED"
            },
            "wic.Wic.test_build_rootfs_short": {
                "status": "PASSED"
            },
            "wic.Wic.test_compress_bzip2": {
                "status": "PASSED"
            },
            "wic.Wic.test_compress_gzip": {
                "status": "PASSED"
            },
            "wic.Wic.test_compress_xz": {
                "status": "PASSED"
            },
            "wic.Wic.test_createhelp": {
                "status": "PASSED"
            },
            "wic.Wic.test_debug_long": {
                "status": "PASSED"
            },
            "wic.Wic.test_debug_short": {
                "status": "PASSED"
            },
            "wic.Wic.test_default_output_dir": {
                "status": "PASSED"
            },
            "wic.Wic.test_exclude_path": {
                "status": "PASSED"
            },
            "wic.Wic.test_exclude_path_errors": {
                "status": "PASSED"
            },
            "wic.Wic.test_gpt_image": {
                "status": "PASSED"
            },
            "wic.Wic.test_help": {
                "status": "PASSED"
            },
            "wic.Wic.test_help_create": {
                "status": "PASSED"
            },
            "wic.Wic.test_help_kickstart": {
                "status": "PASSED"
            },
            "wic.Wic.test_help_list": {
                "status": "PASSED"
            },
            "wic.Wic.test_help_overview": {
                "status": "PASSED"
            },
            "wic.Wic.test_help_plugins": {
                "status": "PASSED"
            },
            "wic.Wic.test_iso_image": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/lib/oeqa/selftest/cases/wic.py\", line 42, in wrapped_f\n    return func(*args, **kwargs)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/lib/oeqa/selftest/cases/wic.py\", line 170, in test_iso_image\n    bitbake('core-image-minimal core-image-minimal-initramfs')\n  File \"/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/lib/oeqa/utils/commands.py\", line 218, in bitbake\n    return runCmd(cmd, ignore_status, timeout, output_log=output_log, **options)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/lib/oeqa/utils/commands.py\", line 196, in runCmd\n    raise AssertionError(\"Command '%s' returned non-zero exit status %d:\\n%s\" % (command, result.status, exc_output))\nAssertionError: Command 'bitbake  core-image-minimal core-image-minimal-initramfs' returned non-zero exit status 1:\nParsing recipes...done.\nParsing of 823 .bb files complete (0 cached, 823 parsed). 1355 targets, 48 skipped, 0 masked, 0 errors.\nNOTE: Resolving any missing task queue dependencies\n\nBuild Configuration:\nBB_VERSION           = \"1.43.0\"\nBUILD_SYS            = \"x86_64-linux\"\nNATIVELSBSTRING      = \"universal-4.8\"\nTARGET_SYS           = \"x86_64-poky-linux\"\nMACHINE              = \"qemux86-64\"\nDISTRO               = \"poky\"\nDISTRO_VERSION       = \"2.7+snapshot-20190723\"\nTUNE_FEATURES        = \"m64 core2\"\nTARGET_FPU           = \"\"\nmeta                 \nmeta-poky            \nmeta-yocto-bsp       = \"master-next:96c3c88f021fed2bc017db2a9486b06ce609b140\"\nmeta-selftest        = \"master:6c96fcbbd951b41fd55ee4543b52ee3bb06038ba\"\n\nInitialising tasks...done.\nSstate summary: Wanted 158 Found 143 Missed 15 Current 783 (90% match, 98% complete)\nNOTE: Executing Tasks\nNOTE: Running setscene task 792 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/images/core-image-minimal-initramfs.bb:do_populate_lic_setscene)\nNOTE: Running setscene task 796 of 945 (virtual:native:/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-extended/cpio/cpio_2.12.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 797 of 945 (virtual:native:/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-extended/cpio/cpio_2.12.bb:do_populate_lic_setscene)\nNOTE: Running setscene task 805 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 806 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb:do_package_qa_setscene)\nNOTE: Running setscene task 807 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb:do_package_write_rpm_setscene)\nNOTE: Running setscene task 808 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb:do_populate_lic_setscene)\nNOTE: Running setscene task 809 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 810 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb:do_package_qa_setscene)\nNOTE: Running setscene task 811 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb:do_package_write_rpm_setscene)\nNOTE: Running setscene task 812 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb:do_populate_lic_setscene)\nNOTE: Running setscene task 813 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 814 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb:do_package_qa_setscene)\nNOTE: Running setscene task 815 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb:do_package_write_rpm_setscene)\nNOTE: Running setscene task 816 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb:do_populate_lic_setscene)\nNOTE: Running setscene task 817 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb:do_populate_sysroot_setscene)\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_package_qa_setscene: Started\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_package_write_rpm_setscene: Started\nNOTE: recipe initramfs-module-install-1.0-r1: task do_package_qa_setscene: Started\nNOTE: recipe initramfs-framework-1.0-r4: task do_package_qa_setscene: Started\nNOTE: recipe initramfs-framework-1.0-r4: task do_package_write_rpm_setscene: Started\nNOTE: recipe initramfs-framework-1.0-r4: task do_populate_lic_setscene: Started\nNOTE: recipe initramfs-module-install-1.0-r1: task do_package_write_rpm_setscene: Started\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_populate_lic_setscene: Started\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_populate_sysroot_setscene: Started\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_populate_sysroot_setscene: Started\nNOTE: recipe initramfs-framework-1.0-r4: task do_populate_sysroot_setscene: Started\nNOTE: recipe initramfs-module-install-1.0-r1: task do_populate_lic_setscene: Started\nNOTE: recipe initramfs-module-install-1.0-r1: task do_populate_sysroot_setscene: Started\nNOTE: recipe cpio-native-2.12-r0: task do_populate_sysroot_setscene: Started\nNOTE: recipe cpio-native-2.12-r0: task do_populate_lic_setscene: Started\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_package_qa_setscene: Succeeded\nNOTE: Running setscene task 818 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb:do_package_qa_setscene)\nNOTE: recipe initramfs-module-install-1.0-r1: task do_package_qa_setscene: Succeeded\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_populate_lic_setscene: Started\nNOTE: Running setscene task 819 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb:do_package_write_rpm_setscene)\nNOTE: recipe initramfs-module-install-1.0-r1: task do_package_write_rpm_setscene: Succeeded\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_populate_lic_setscene: Succeeded\nNOTE: Running setscene task 820 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb:do_packagedata_setscene)\nNOTE: recipe initramfs-framework-1.0-r4: task do_package_qa_setscene: Succeeded\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_package_write_rpm_setscene: Succeeded\nNOTE: Running setscene task 821 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb:do_populate_lic_setscene)\nNOTE: recipe initramfs-framework-1.0-r4: task do_populate_lic_setscene: Succeeded\nNOTE: Running setscene task 828 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb:do_packagedata_setscene)\nNOTE: recipe initramfs-framework-1.0-r4: task do_package_write_rpm_setscene: Succeeded\nNOTE: Running setscene task 839 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-bsp/grub/grub-efi_2.02.bb:do_package_qa_setscene)\nNOTE: Running setscene task 840 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-bsp/grub/grub-efi_2.02.bb:do_populate_lic_setscene)\nNOTE: Running setscene task 847 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/udev/udev-extraconf_1.1.bb:do_populate_sysroot_setscene)\nNOTE: recipe initramfs-framework-1.0-r4: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_populate_sysroot_setscene: Succeeded\nNOTE: Running setscene task 848 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/udev/udev-extraconf_1.1.bb:do_package_qa_setscene)\nNOTE: recipe initramfs-module-install-1.0-r1: task do_populate_lic_setscene: Succeeded\nNOTE: Running setscene task 849 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/udev/udev-extraconf_1.1.bb:do_package_write_rpm_setscene)\nNOTE: Running setscene task 850 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/udev/udev-extraconf_1.1.bb:do_populate_lic_setscene)\nNOTE: Running setscene task 851 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-bsp/grub/grub_2.02.bb:do_populate_sysroot_setscene)\nNOTE: recipe cpio-native-2.12-r0: task do_populate_lic_setscene: Succeeded\nNOTE: Running setscene task 852 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-bsp/grub/grub_2.02.bb:do_package_qa_setscene)\nNOTE: recipe initramfs-module-install-1.0-r1: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_package_qa_setscene: Started\nNOTE: Running setscene task 853 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-bsp/grub/grub_2.02.bb:do_populate_lic_setscene)\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_populate_lic_setscene: Started\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_package_write_rpm_setscene: Started\nNOTE: recipe initramfs-module-install-1.0-r1: task do_packagedata_setscene: Started\nNOTE: recipe cpio-native-2.12-r0: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_packagedata_setscene: Started\nNOTE: Running setscene task 854 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-extended/parted/parted_3.2.bb:do_populate_sysroot_setscene)\nNOTE: recipe udev-extraconf-1.1-r0: task do_populate_sysroot_setscene: Started\nNOTE: recipe udev-extraconf-1.1-r0: task do_package_qa_setscene: Started\nNOTE: recipe udev-extraconf-1.1-r0: task do_populate_lic_setscene: Started\nNOTE: recipe udev-extraconf-1.1-r0: task do_package_write_rpm_setscene: Started\nNOTE: recipe parted-3.2-r1: task do_populate_sysroot_setscene: Started\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_populate_lic_setscene: Succeeded\nNOTE: Running setscene task 855 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-extended/parted/parted_3.2.bb:do_package_qa_setscene)\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_package_qa_setscene: Succeeded\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_package_write_rpm_setscene: Succeeded\nNOTE: Running setscene task 856 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-extended/parted/parted_3.2.bb:do_package_write_rpm_setscene)\nNOTE: Running setscene task 857 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb:do_packagedata_setscene)\nNOTE: recipe udev-extraconf-1.1-r0: task do_package_qa_setscene: Succeeded\nNOTE: Running setscene task 858 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb:do_packagedata_setscene)\nNOTE: recipe udev-extraconf-1.1-r0: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_populate_lic_setscene: Succeeded\nNOTE: Running setscene task 859 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-extended/parted/parted_3.2.bb:do_populate_lic_setscene)\nNOTE: Running setscene task 860 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_populate_sysroot_setscene)\nNOTE: recipe initramfs-framework-1.0-r4: task do_packagedata_setscene: Started\nNOTE: recipe parted-3.2-r1: task do_package_qa_setscene: Started\nNOTE: recipe parted-3.2-r1: task do_populate_sysroot_setscene: Succeeded\nNOTE: Running setscene task 861 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_package_qa_setscene)\nNOTE: recipe udev-extraconf-1.1-r0: task do_package_write_rpm_setscene: Succeeded\nNOTE: recipe udev-extraconf-1.1-r0: task do_populate_lic_setscene: Succeeded\nNOTE: Running setscene task 862 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_package_write_rpm_setscene)\nNOTE: Running setscene task 863 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/udev/udev-extraconf_1.1.bb:do_packagedata_setscene)\nNOTE: recipe parted-3.2-r1: task do_package_write_rpm_setscene: Started\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_packagedata_setscene: Started\nNOTE: recipe dosfstools-4.1-r0: task do_populate_sysroot_setscene: Started\nNOTE: recipe parted-3.2-r1: task do_populate_lic_setscene: Started\nNOTE: recipe dosfstools-4.1-r0: task do_package_qa_setscene: Started\nNOTE: recipe parted-3.2-r1: task do_package_qa_setscene: Succeeded\nNOTE: Running setscene task 864 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_populate_lic_setscene)\nNOTE: recipe udev-extraconf-1.1-r0: task do_packagedata_setscene: Started\nNOTE: recipe dosfstools-4.1-r0: task do_package_write_rpm_setscene: Started\nNOTE: recipe parted-3.2-r1: task do_package_write_rpm_setscene: Succeeded\nNOTE: Running setscene task 865 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-extended/parted/parted_3.2.bb:do_packagedata_setscene)\nNOTE: recipe dosfstools-4.1-r0: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe dosfstools-4.1-r0: task do_populate_lic_setscene: Started\nNOTE: recipe dosfstools-4.1-r0: task do_package_qa_setscene: Succeeded\nNOTE: recipe grub-efi-2.02-r0: task do_package_qa_setscene: Started\nNOTE: recipe grub-efi-2.02-r0: task do_populate_lic_setscene: Started\nNOTE: Running setscene task 894 of 945 (virtual:native:/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-bsp/grub/grub-efi_2.02.bb:do_populate_lic_setscene)\nNOTE: recipe parted-3.2-r1: task do_populate_lic_setscene: Succeeded\nNOTE: Running setscene task 912 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-bsp/grub/grub-bootconf_1.00.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 913 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-bsp/grub/grub-bootconf_1.00.bb:do_package_qa_setscene)\nNOTE: recipe parted-3.2-r1: task do_packagedata_setscene: Started\nNOTE: recipe dosfstools-4.1-r0: task do_package_write_rpm_setscene: Succeeded\nNOTE: recipe grub-2.02-r0: task do_populate_lic_setscene: Started\nNOTE: Running setscene task 914 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_packagedata_setscene)\nNOTE: recipe grub-2.02-r0: task do_package_qa_setscene: Started\nNOTE: recipe grub-2.02-r0: task do_populate_sysroot_setscene: Started\nNOTE: recipe dosfstools-4.1-r0: task do_populate_lic_setscene: Succeeded\nNOTE: recipe grub-efi-2.02-r0: task do_populate_lic_setscene: Succeeded\nNOTE: Running setscene task 915 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-bsp/grub/grub-bootconf_1.00.bb:do_populate_lic_setscene)\nNOTE: Running setscene task 916 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-graphics/freetype/freetype_2.10.1.bb:do_package_qa_setscene)\nNOTE: recipe dosfstools-4.1-r0: task do_packagedata_setscene: Started\nNOTE: recipe grub-efi-2.02-r0: task do_package_qa_setscene: Succeeded\nNOTE: Running setscene task 918 of 945 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-graphics/freetype/freetype_2.10.1.bb:do_populate_lic_setscene)\nNOTE: recipe grub-2.02-r0: task do_package_qa_setscene: Succeeded\nNOTE: recipe grub-2.02-r0: task do_populate_sysroot_setscene: Succeeded\nNOTE: Running task 676 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_fetch)\nNOTE: recipe grub-2.02-r0: task do_populate_lic_setscene: Succeeded\nNOTE: Running task 1916 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/packagegroups/packagegroup-core-boot.bb:do_package)\nNOTE: Running noexec task 1989 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/images/core-image-minimal-initramfs.bb:do_fetch)\nNOTE: Running task 2389 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/images/core-image-minimal-initramfs.bb:do_prepare_recipe_sysroot)\nNOTE: recipe grub-efi-native-2.02-r0: task do_populate_lic_setscene: Started\nNOTE: recipe freetype-2.10.1-r0: task do_package_qa_setscene: Started\nNOTE: recipe freetype-2.10.1-r0: task do_populate_lic_setscene: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_fetch: Started\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_prepare_recipe_sysroot: Started\nNOTE: recipe grub-bootconf-1.00-r0: task do_package_qa_setscene: Started\nNOTE: recipe grub-bootconf-1.00-r0: task do_populate_lic_setscene: Started\nNOTE: recipe grub-bootconf-1.00-r0: task do_populate_sysroot_setscene: Started\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_package: Started\nNOTE: recipe grub-bootconf-1.00-r0: task do_package_qa_setscene: Succeeded\nNOTE: recipe freetype-2.10.1-r0: task do_package_qa_setscene: Succeeded\nNOTE: recipe grub-efi-native-2.02-r0: task do_populate_lic_setscene: Succeeded\nNOTE: recipe grub-bootconf-1.00-r0: task do_populate_lic_setscene: Succeeded\nNOTE: recipe freetype-2.10.1-r0: task do_populate_lic_setscene: Succeeded\nNOTE: Running noexec task 2589 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-graphics/freetype/freetype_2.10.1.bb:do_build)\nNOTE: recipe initramfs-framework-1.0-r4: task do_packagedata_setscene: Succeeded\nNOTE: recipe initramfs-module-install-1.0-r1: task do_packagedata_setscene: Succeeded\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_packagedata_setscene: Succeeded\nNOTE: recipe udev-extraconf-1.1-r0: task do_packagedata_setscene: Succeeded\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_packagedata_setscene: Succeeded\nNOTE: recipe dosfstools-4.1-r0: task do_packagedata_setscene: Succeeded\nNOTE: recipe grub-bootconf-1.00-r0: task do_populate_sysroot_setscene: Succeeded\nNOTE: Running noexec task 2833 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-bsp/grub/grub-bootconf_1.00.bb:do_build)\nNOTE: Running noexec task 2834 of 2988 (virtual:native:/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-bsp/grub/grub-efi_2.02.bb:do_build)\nNOTE: Running noexec task 2836 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_build)\nNOTE: Running noexec task 2842 of 2988 (virtual:native:/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-extended/cpio/cpio_2.12.bb:do_build)\nNOTE: recipe parted-3.2-r1: task do_packagedata_setscene: Succeeded\nNOTE: Setscene tasks completed\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_fetch: Succeeded\nNOTE: Running task 2863 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_unpack)\nNOTE: Running task 2864 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_prepare_recipe_sysroot)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_prepare_recipe_sysroot: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_unpack: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_prepare_recipe_sysroot: Succeeded\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_prepare_recipe_sysroot: Succeeded\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_package: Succeeded\nNOTE: Running task 2870 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/packagegroups/packagegroup-core-boot.bb:do_packagedata)\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_packagedata: Started\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_packagedata: Succeeded\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_unpack: Succeeded\nNOTE: Running task 2871 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_kernel_checkout)\nNOTE: Running task 2872 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_symlink_kernsrc)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_kernel_checkout: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_symlink_kernsrc: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_symlink_kernsrc: Succeeded\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_kernel_checkout: Succeeded\nNOTE: Running task 2873 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_validate_branches)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_validate_branches: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_validate_branches: Succeeded\nNOTE: Running task 2874 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_kernel_metadata)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_kernel_metadata: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_kernel_metadata: Succeeded\nNOTE: Running task 2875 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_patch)\nNOTE: Running task 2876 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_kernel_version_sanity_check)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_patch: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_kernel_version_sanity_check: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_patch: Succeeded\nNOTE: Running task 2877 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_kernel_configme)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_kernel_version_sanity_check: Succeeded\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_kernel_configme: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_kernel_configme: Succeeded\nNOTE: Running task 2879 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_configure)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_configure: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_configure: Succeeded\nNOTE: Running task 2880 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_kernel_configcheck)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_kernel_configcheck: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_kernel_configcheck: Succeeded\nNOTE: Running task 2881 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_compile)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_compile: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_compile: Succeeded\nNOTE: Running task 2882 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_shared_workdir)\nNOTE: Running task 2883 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_kernel_link_images)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_kernel_link_images: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_shared_workdir: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_kernel_link_images: Succeeded\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_shared_workdir: Succeeded\nNOTE: Running task 2884 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_compile_kernelmodules)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_compile_kernelmodules: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_compile_kernelmodules: Succeeded\nNOTE: Running task 2885 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_strip)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_strip: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_strip: Succeeded\nNOTE: Running task 2886 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_sizecheck)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_sizecheck: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_sizecheck: Succeeded\nNOTE: Running task 2887 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_install)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_install: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_install: Succeeded\nNOTE: Running task 2888 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_package)\nNOTE: Running task 2889 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_populate_sysroot)\nNOTE: Running task 2890 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_bundle_initramfs)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_bundle_initramfs: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_populate_sysroot: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_package: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_bundle_initramfs: Succeeded\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_populate_sysroot: Succeeded\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_package: Succeeded\nNOTE: Running task 2896 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_packagedata)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_packagedata: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_packagedata: Succeeded\nNOTE: Running task 2898 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_package_write_rpm)\nNOTE: Running task 2903 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_deploy)\nNOTE: Running task 2909 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_package_qa)\nNOTE: Running task 2912 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/packagegroups/packagegroup-core-boot.bb:do_package_write_rpm)\nNOTE: Running task 2913 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/packagegroups/packagegroup-core-boot.bb:do_package_qa)\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_package_qa: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_package_write_rpm: Started\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_package_write_rpm: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_deploy: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_package_qa: Started\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_package_qa: Succeeded\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_package_write_rpm: Succeeded\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_deploy: Succeeded\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_package_qa: Succeeded\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_package_write_rpm: Succeeded\nNOTE: Running task 2914 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/images/core-image-minimal.bb:do_rootfs)\nNOTE: Running task 2915 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/images/core-image-minimal-initramfs.bb:do_rootfs)\nNOTE: Running noexec task 2916 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-support/gnome-desktop-testing/gnome-desktop-testing_2018.1.bb:do_build)\nNOTE: Running noexec task 2917 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-support/shared-mime-info/shared-mime-info_1.10.bb:do_build)\nNOTE: Running noexec task 2918 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-devtools/libtool/libtool_2.4.6.bb:do_build)\nNOTE: Running noexec task 2919 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/libxml/libxml2_2.9.9.bb:do_build)\nNOTE: Running noexec task 2920 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/glib-2.0/glib-2.0_2.60.5.bb:do_build)\nNOTE: Running noexec task 2921 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-extended/gawk/gawk_5.0.1.bb:do_build)\nNOTE: Running noexec task 2922 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-support/ca-certificates/ca-certificates_20190110.bb:do_build)\nNOTE: Running noexec task 2923 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-extended/unzip/unzip_6.0.bb:do_build)\nNOTE: Running noexec task 2924 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/dbus/dbus-test_1.12.16.bb:do_build)\nNOTE: Running noexec task 2925 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-support/libpcre/libpcre_8.43.bb:do_build)\nNOTE: Running noexec task 2926 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-connectivity/openssl/openssl_1.1.1c.bb:do_build)\nNOTE: Running noexec task 2928 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-devtools/elfutils/elfutils_0.176.bb:do_build)\nNOTE: Running noexec task 2929 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-support/libcheck/libcheck_0.12.0.bb:do_build)\nNOTE: Running noexec task 2930 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/readline/readline_8.0.bb:do_build)\nNOTE: Running noexec task 2931 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-devtools/python/python3_3.7.4.bb:do_build)\nNOTE: Running noexec task 2932 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-extended/grep/grep_3.3.bb:do_build)\nNOTE: Running noexec task 2933 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-extended/bc/bc_1.07.1.bb:do_build)\nNOTE: Running noexec task 2934 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-connectivity/socat/socat_1.7.3.3.bb:do_build)\nNOTE: Running noexec task 2935 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.1.1.bb:do_build)\nNOTE: Running noexec task 2937 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-connectivity/iproute2/iproute2_5.2.0.bb:do_build)\nNOTE: Running noexec task 2938 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-extended/which/which_2.21.bb:do_build)\nNOTE: Running noexec task 2939 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-extended/procps/procps_3.3.15.bb:do_build)\nNOTE: Running noexec task 2940 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-extended/bzip2/bzip2_1.0.8.bb:do_build)\nNOTE: Running noexec task 2941 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-extended/diffutils/diffutils_3.7.bb:do_build)\nNOTE: Running noexec task 2942 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/coreutils/coreutils_8.31.bb:do_build)\nNOTE: Running noexec task 2943 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-extended/sed/sed_4.2.2.bb:do_build)\nNOTE: Running noexec task 2944 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/dbus/dbus_1.12.16.bb:do_build)\nNOTE: Running noexec task 2945 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/systemd/systemd-compat-units.bb:do_build)\nNOTE: Running noexec task 2946 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-extended/bash/bash_5.0.bb:do_build)\nNOTE: Running noexec task 2947 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/kbd/kbd_2.0.4.bb:do_build)\nNOTE: Running noexec task 2948 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-bsp/grub/grub_2.02.bb:do_build)\nNOTE: Running noexec task 2949 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-support/attr/attr_2.4.47.bb:do_build)\nNOTE: Running noexec task 2950 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-support/gdbm/gdbm_1.18.1.bb:do_build)\nNOTE: Running noexec task 2951 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-extended/shadow/shadow_4.6.bb:do_build)\nNOTE: Running noexec task 2952 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-support/bash-completion/bash-completion_2.9.bb:do_build)\nNOTE: Running noexec task 2953 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-support/attr/acl_2.2.52.bb:do_build)\nNOTE: Running noexec task 2954 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-extended/xz/xz_5.2.4.bb:do_build)\nNOTE: Running noexec task 2955 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/kmod/kmod_git.bb:do_build)\nNOTE: Running noexec task 2956 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-devtools/opkg-utils/opkg-utils_0.4.1.bb:do_build)\nNOTE: Running noexec task 2957 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/ncurses/ncurses_6.1+20181013.bb:do_build)\nNOTE: Running noexec task 2959 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.44.5.bb:do_build)\nNOTE: Running noexec task 2960 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-devtools/perl/perl_5.30.0.bb:do_build)\nNOTE: Running noexec task 2962 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/busybox/busybox_1.31.0.bb:do_build)\nNOTE: Running noexec task 2963 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_build)\nNOTE: Running noexec task 2964 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-extended/parted/parted_3.2.bb:do_build)\nNOTE: Running noexec task 2965 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/udev/udev-extraconf_1.1.bb:do_build)\nNOTE: Running noexec task 2967 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-bsp/grub/grub-efi_2.02.bb:do_build)\nNOTE: Running noexec task 2968 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb:do_build)\nNOTE: Running noexec task 2969 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb:do_build)\nNOTE: Running noexec task 2970 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb:do_build)\nNOTE: Running noexec task 2971 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb:do_build)\nNOTE: Running noexec task 2972 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/packagegroups/packagegroup-core-boot.bb:do_build)\nNOTE: Running noexec task 2973 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-devtools/syslinux/syslinux_6.04-pre2.bb:do_build)\nNOTE: recipe core-image-minimal-1.0-r0: task do_rootfs: Started\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_rootfs: Started\nERROR: core-image-minimal-1.0-r0 do_rootfs: The postinstall intercept hook 'update_udev_hwdb' failed, details in /home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22828/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/temp/log.do_rootfs\nERROR: core-image-minimal-1.0-r0 do_rootfs: \nERROR: core-image-minimal-1.0-r0 do_rootfs: Function failed: do_rootfs\nERROR: Logfile of failure stored in: /home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22828/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/temp/log.do_rootfs.4590\nNOTE: recipe core-image-minimal-1.0-r0: task do_rootfs: Failed\nERROR: Task (/home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/images/core-image-minimal.bb:do_rootfs) failed with exit code '1'\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_rootfs: Succeeded\nNOTE: Tasks Summary: Attempted 2973 tasks of which 2881 didn't need to be rerun and 1 failed.\nNOTE: The errors for this build are stored in /home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22828/tmp/log/error-report/error_report_20190723002205.txt\nYou can send the errors to a reports server by running:\n  send-error-report /home/pokybuild/yocto-worker/oe-selftest-centos/build/build-st-22828/tmp/log/error-report/error_report_20190723002205.txt [-s server]\nNOTE: The contents of these logs will be posted in public if you use the above command with the default server. Please ensure you remove any identifying or proprietary information when prompted before sending.\n\nSummary: 1 task failed:\n  /home/pokybuild/yocto-worker/oe-selftest-centos/build/meta/recipes-core/images/core-image-minimal.bb:do_rootfs\nSummary: There were 3 ERROR messages shown, returning a non-zero exit code.\n\n",
                "status": "FAILED"
            },
            "wic.Wic.test_list_images": {
                "status": "PASSED"
            },
            "wic.Wic.test_list_source_plugins": {
                "status": "PASSED"
            },
            "wic.Wic.test_listed_images_help": {
                "status": "PASSED"
            },
            "wic.Wic.test_listhelp": {
                "status": "PASSED"
            },
            "wic.Wic.test_mkefidisk": {
                "status": "PASSED"
            },
            "wic.Wic.test_no_command": {
                "status": "PASSED"
            },
            "wic.Wic.test_qemux86_directdisk": {
                "status": "PASSED"
            },
            "wic.Wic.test_rootfs_artifacts": {
                "status": "PASSED"
            },
            "wic.Wic.test_rootfs_indirect_recipes": {
                "status": "PASSED"
            },
            "wic.Wic.test_sdimage_bootpart": {
                "status": "PASSED"
            },
            "wic.Wic.test_skip_build_check_long": {
                "status": "PASSED"
            },
            "wic.Wic.test_skip_build_check_short": {
                "status": "PASSED"
            },
            "wic.Wic.test_systemd_bootdisk": {
                "status": "PASSED"
            },
            "wic.Wic.test_unsupported_subcommand": {
                "status": "PASSED"
            },
            "wic.Wic.test_version": {
                "status": "PASSED"
            },
            "wic.Wic.test_wrong_compressor": {
                "status": "PASSED"
            },
            "wic.Wic2.test_biosplusefi_plugin": {
                "status": "PASSED"
            },
            "wic.Wic2.test_biosplusefi_plugin_qemu": {
                "status": "PASSED"
            },
            "wic.Wic2.test_bmap_long": {
                "status": "PASSED"
            },
            "wic.Wic2.test_bmap_short": {
                "status": "PASSED"
            },
            "wic.Wic2.test_expand_mbr_image": {
                "status": "PASSED"
            },
            "wic.Wic2.test_fixed_size": {
                "status": "PASSED"
            },
            "wic.Wic2.test_fixed_size_error": {
                "status": "PASSED"
            },
            "wic.Wic2.test_fs_types": {
                "status": "PASSED"
            },
            "wic.Wic2.test_image_bootpart_globbed": {
                "status": "PASSED"
            },
            "wic.Wic2.test_image_env": {
                "status": "PASSED"
            },
            "wic.Wic2.test_image_vars_dir_long": {
                "status": "PASSED"
            },
            "wic.Wic2.test_image_vars_dir_short": {
                "status": "PASSED"
            },
            "wic.Wic2.test_kickstart_parser": {
                "status": "PASSED"
            },
            "wic.Wic2.test_mkfs_extraopts": {
                "status": "PASSED"
            },
            "wic.Wic2.test_qemu": {
                "status": "PASSED"
            },
            "wic.Wic2.test_qemu_efi": {
                "status": "PASSED"
            },
            "wic.Wic2.test_rawcopy_plugin": {
                "status": "PASSED"
            },
            "wic.Wic2.test_rawcopy_plugin_qemu": {
                "status": "PASSED"
            },
            "wic.Wic2.test_sparse_copy": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_cp": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_cp_ext": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_image_type": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_ls": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_ls_ext": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_rm": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_rm_ext": {
                "status": "PASSED"
            }
        }
    },
    "oeselftest_centos-7_qemux86_20190722205728": {
        "configuration": {
            "HOST_DISTRO": "centos-7",
            "HOST_NAME": "centos7-ty-3",
            "LAYERS": {
                "meta": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-poky": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-selftest": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-yocto-bsp": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                }
            },
            "MACHINE": "qemux86",
            "STARTTIME": "20190722205728",
            "TESTSERIES": "a-full",
            "TEST_TYPE": "oeselftest"
        },
        "result": {
            "buildoptions.SourceMirroring.test_yocto_source_mirror": {
                "log": "Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/a-full/build/meta/lib/oeqa/selftest/cases/buildoptions.py\", line 197, in test_yocto_source_mirror\n    bitbake(\"world --runall fetch\")\n  File \"/home/pokybuild/yocto-worker/a-full/build/meta/lib/oeqa/utils/commands.py\", line 218, in bitbake\n    return runCmd(cmd, ignore_status, timeout, output_log=output_log, **options)\n  File \"/home/pokybuild/yocto-worker/a-full/build/meta/lib/oeqa/utils/commands.py\", line 196, in runCmd\n    raise AssertionError(\"Command '%s' returned non-zero exit status %d:\\n%s\" % (command, result.status, exc_output))\nAssertionError: Command 'bitbake  world --runall fetch' returned non-zero exit status 1:\nParsing recipes...done.\nParsing of 823 .bb files complete (0 cached, 823 parsed). 1355 targets, 48 skipped, 0 masked, 0 errors.\nNOTE: Resolving any missing task queue dependencies\n\nBuild Configuration:\nBB_VERSION           = \"1.43.0\"\nBUILD_SYS            = \"x86_64-linux\"\nNATIVELSBSTRING      = \"universal-4.8\"\nTARGET_SYS           = \"i686-poky-linux\"\nMACHINE              = \"qemux86\"\nDISTRO               = \"poky\"\nDISTRO_VERSION       = \"2.7+snapshot-20190722\"\nTUNE_FEATURES        = \"m32 core2\"\nTARGET_FPU           = \"\"\nmeta                 \nmeta-poky            \nmeta-yocto-bsp       \nmeta-selftest        = \"master-next:96c3c88f021fed2bc017db2a9486b06ce609b140\"\n\nInitialising tasks...NOTE: No setscene tasks\nNOTE: Executing Tasks\nNOTE: Running task 1 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/xorg-lib/libxtst_1.2.3.bb:do_fetch)\nNOTE: Running task 2 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/xorg-lib/libice_1.0.10.bb:do_fetch)\nNOTE: Running task 3 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/xorg-proto/xcb-proto_1.13.bb:do_fetch)\nNOTE: Running task 4 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/xorg-lib/libxdmcp_1.1.3.bb:do_fetch)\nNOTE: Running task 5 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/xorg-lib/libpthread-stubs_0.4.bb:do_fetch)\nNOTE: Running task 6 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/xorg-lib/libxau_1.0.9.bb:do_fetch)\nNOTE: Running task 7 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/harfbuzz/harfbuzz_2.4.0.bb:do_fetch)\nNOTE: Running task 8 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/xorg-lib/libxft_2.3.3.bb:do_fetch)\nNOTE: Running task 9 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/fribidi/fribidi_1.0.5.bb:do_fetch)\nNOTE: Running task 10 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/atk/at-spi2-core_2.32.1.bb:do_fetch)\nNOTE: Running task 11 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/xorg-lib/libsm_1.2.3.bb:do_fetch)\nNOTE: Running task 12 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/xorg-lib/libxcb_1.13.1.bb:do_fetch)\nNOTE: Running task 13 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/xorg-lib/xtrans_1.4.0.bb:do_fetch)\nNOTE: Running task 14 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/libcroco/libcroco_0.6.13.bb:do_fetch)\nNOTE: Running task 15 of 827 (/home/pokybuild/yocto-worker/a-full/build/meta/recipes-core/glibc/cross-localedef-native_2.29.bb:do_fetch)\nNOTE: Running task 16 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/xorg-lib/libxdamage_1.1.5.bb:do_fetch)\nNOTE: recipe cross-localedef-native-2.29-r0: task do_fetch: Started\nNOTE: recipe libpthread-stubs-native-0.4-r0: task do_fetch: Started\nNOTE: recipe libxtst-native-1_1.2.3-r0: task do_fetch: Started\nNOTE: recipe xcb-proto-native-1.13-r0: task do_fetch: Started\nNOTE: recipe fribidi-native-1.0.5-r0: task do_fetch: Started\nNOTE: recipe libxft-native-1_2.3.3-r0: task do_fetch: Started\nNOTE: recipe libxau-native-1_1.0.9-r0: task do_fetch: Started\nNOTE: recipe libsm-native-1_1.2.3-r0: task do_fetch: Started\nNOTE: recipe harfbuzz-native-2.4.0-r0: task do_fetch: Started\nNOTE: recipe libxcb-native-1.13.1-r0: task do_fetch: Started\nNOTE: recipe xtrans-native-1_1.4.0-r0: task do_fetch: Started\nNOTE: recipe at-spi2-core-native-2.32.1-r0: task do_fetch: Started\nNOTE: recipe libxdamage-native-1_1.1.5-r0: task do_fetch: Started\nNOTE: recipe libxdmcp-native-1_1.1.3-r0: task do_fetch: Started\nNOTE: recipe libice-native-1_1.0.10-r0: task do_fetch: Started\nNOTE: recipe libcroco-native-0.6.13-r0: task do_fetch: Started\nNOTE: recipe libpthread-stubs-native-0.4-r0: task do_fetch: Succeeded\nNOTE: Running task 17 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/pango/pango_1.42.4.bb:do_fetch)\nNOTE: recipe at-spi2-core-native-2.32.1-r0: task do_fetch: Succeeded\nNOTE: recipe libxtst-native-1_1.2.3-r0: task do_fetch: Succeeded\nNOTE: Running task 18 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/xorg-lib/libxcomposite_0.4.5.bb:do_fetch)\nNOTE: recipe xcb-proto-native-1.13-r0: task do_fetch: Succeeded\nNOTE: Running task 19 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/xorg-lib/libxrender_0.9.10.bb:do_fetch)\nNOTE: Running task 20 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/xorg-lib/libxfixes_5.0.3.bb:do_fetch)\nNOTE: recipe libsm-native-1_1.2.3-r0: task do_fetch: Succeeded\nNOTE: recipe libxdamage-native-1_1.1.5-r0: task do_fetch: Succeeded\nNOTE: recipe libxau-native-1_1.0.9-r0: task do_fetch: Succeeded\nNOTE: Running task 21 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/fontconfig/fontconfig_2.13.1.bb:do_fetch)\nNOTE: Running task 22 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/xorg-lib/libxrandr_1.5.2.bb:do_fetch)\nNOTE: recipe libxdmcp-native-1_1.1.3-r0: task do_fetch: Succeeded\nNOTE: Running task 23 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/xorg-lib/libxi_1.7.10.bb:do_fetch)\nNOTE: recipe libxft-native-1_2.3.3-r0: task do_fetch: Succeeded\nNOTE: recipe xtrans-native-1_1.4.0-r0: task do_fetch: Succeeded\nNOTE: Running task 24 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/xorg-lib/libxext_1.3.4.bb:do_fetch)\nNOTE: Running task 25 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/xorg-lib/libxcursor_1.2.0.bb:do_fetch)\nNOTE: Running task 26 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/atk/atk_2.32.0.bb:do_fetch)\nNOTE: recipe libcroco-native-0.6.13-r0: task do_fetch: Succeeded\nNOTE: recipe libice-native-1_1.0.10-r0: task do_fetch: Succeeded\nNOTE: Running task 27 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/atk/at-spi2-atk_2.32.0.bb:do_fetch)\nNOTE: recipe libxcb-native-1.13.1-r0: task do_fetch: Succeeded\nNOTE: Running task 28 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/cairo/cairo_1.16.0.bb:do_fetch)\nNOTE: Running task 29 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/libyaml/libyaml_0.2.2.bb:do_fetch)\nNOTE: recipe fribidi-native-1.0.5-r0: task do_fetch: Succeeded\nNOTE: Running task 30 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/nspr/nspr_4.21.bb:do_fetch)\nNOTE: recipe libxcomposite-native-1_0.4.5-r0: task do_fetch: Started\nNOTE: recipe pango-native-1.42.4-r0: task do_fetch: Started\nNOTE: recipe libxrender-native-1_0.9.10-r0: task do_fetch: Started\nNOTE: recipe libxi-native-1_1.7.10-r0: task do_fetch: Started\nNOTE: recipe libxext-native-1_1.3.4-r0: task do_fetch: Started\nNOTE: recipe fontconfig-native-2.13.1-r0: task do_fetch: Started\nNOTE: recipe libxfixes-native-1_5.0.3-r0: task do_fetch: Started\nNOTE: recipe libxcomposite-native-1_0.4.5-r0: task do_fetch: Succeeded\nNOTE: recipe at-spi2-atk-native-2.32.0-r0: task do_fetch: Started\nNOTE: recipe libxrandr-native-1_1.5.2-r0: task do_fetch: Started\nNOTE: Running task 31 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/lzop/lzop_1.04.bb:do_fetch)\nNOTE: recipe libxcursor-native-1_1.2.0-r0: task do_fetch: Started\nNOTE: recipe libxrender-native-1_0.9.10-r0: task do_fetch: Succeeded\nNOTE: recipe pango-native-1.42.4-r0: task do_fetch: Succeeded\nNOTE: Running task 32 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/attr/acl_2.2.52.bb:do_fetch)\nNOTE: Running task 33 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/libcap-ng/libcap-ng_0.7.9.bb:do_fetch)\nNOTE: recipe atk-native-2.32.0-r0: task do_fetch: Started\nNOTE: recipe libyaml-native-0.2.2-r0: task do_fetch: Started\nNOTE: recipe libxi-native-1_1.7.10-r0: task do_fetch: Succeeded\nNOTE: Running task 34 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/lz4/lz4_1.9.1.bb:do_fetch)\nNOTE: recipe libxfixes-native-1_5.0.3-r0: task do_fetch: Succeeded\nNOTE: recipe libxext-native-1_1.3.4-r0: task do_fetch: Succeeded\nNOTE: recipe at-spi2-atk-native-2.32.0-r0: task do_fetch: Succeeded\nNOTE: Running task 35 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/lzo/lzo_2.10.bb:do_fetch)\nNOTE: Running task 36 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/xorg-util/makedepend_1.0.6.bb:do_fetch)\nNOTE: Running task 37 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/jpeg/libjpeg-turbo_2.0.2.bb:do_fetch)\nNOTE: recipe nspr-native-4.21-r0: task do_fetch: Started\nNOTE: recipe libxcursor-native-1_1.2.0-r0: task do_fetch: Succeeded\nNOTE: recipe cairo-native-1.16.0-r0: task do_fetch: Started\nNOTE: recipe libxrandr-native-1_1.5.2-r0: task do_fetch: Succeeded\nNOTE: recipe atk-native-2.32.0-r0: task do_fetch: Succeeded\nNOTE: Running task 38 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-multimedia/libpng/libpng_1.6.37.bb:do_fetch)\nNOTE: recipe libyaml-native-0.2.2-r0: task do_fetch: Succeeded\nNOTE: Running task 39 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-devtools/binutils/binutils_2.32.bb:do_fetch)\nNOTE: Running task 40 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-devtools/autoconf-archive/autoconf-archive_2019.01.06.bb:do_fetch)\nNOTE: Running task 41 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/libpcre/libpcre_8.43.bb:do_fetch)\nNOTE: recipe fontconfig-native-2.13.1-r0: task do_fetch: Succeeded\nNOTE: recipe harfbuzz-native-2.4.0-r0: task do_fetch: Succeeded\nNOTE: Running task 42 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-extended/acpica/acpica_20190509.bb:do_fetch)\nNOTE: Running task 43 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-kernel/dtc/dtc_1.5.0.bb:do_fetch)\nNOTE: recipe nspr-native-4.21-r0: task do_fetch: Succeeded\nNOTE: Running task 44 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/libsdl2/libsdl2_2.0.9.bb:do_fetch)\nNOTE: recipe lzop-native-1.04-r0: task do_fetch: Started\nNOTE: recipe lz4-native-1_1.9.1-r0: task do_fetch: Started\nNOTE: recipe libcap-ng-native-0.7.9-r0: task do_fetch: Started\nNOTE: recipe acl-native-2.2.52-r0: task do_fetch: Started\nNOTE: recipe makedepend-native-1_1.0.6-r0: task do_fetch: Started\nNOTE: recipe libpng-native-1.6.37-r0: task do_fetch: Started\nNOTE: recipe lzop-native-1.04-r0: task do_fetch: Succeeded\nNOTE: Running task 45 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/xorg-lib/pixman_0.38.4.bb:do_fetch)\nNOTE: recipe lzo-native-2.10-r0: task do_fetch: Started\nNOTE: recipe binutils-native-2.32.0-r0: task do_fetch: Started\nNOTE: recipe libpcre-native-8.43-r0: task do_fetch: Started\nNOTE: recipe autoconf-archive-native-2019.01.06-r0: task do_fetch: Started\nNOTE: recipe dtc-native-1.5.0-r0: task do_fetch: Started\nNOTE: recipe acpica-native-20190509-r0: task do_fetch: Started\nNOTE: recipe libcap-ng-native-0.7.9-r0: task do_fetch: Succeeded\nNOTE: Running task 46 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-multimedia/alsa/alsa-lib_1.1.9.bb:do_fetch)\nNOTE: recipe libjpeg-turbo-native-1_2.0.2-r0: task do_fetch: Started\nNOTE: recipe libsdl2-native-2.0.9-r0: task do_fetch: Started\nNOTE: recipe acl-native-2.2.52-r0: task do_fetch: Succeeded\nNOTE: Running task 47 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/xorg-lib/libfontenc_1.1.4.bb:do_fetch)\nNOTE: recipe makedepend-native-1_1.0.6-r0: task do_fetch: Succeeded\nNOTE: Running task 48 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/freetype/freetype_2.10.1.bb:do_fetch)\nNOTE: recipe libpcre-native-8.43-r0: task do_fetch: Succeeded\nNOTE: Running task 49 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/xorg-lib/libx11_1.6.7.bb:do_fetch)\nNOTE: recipe autoconf-archive-native-2019.01.06-r0: task do_fetch: Succeeded\nNOTE: Running task 50 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/gdbm/gdbm_1.18.1.bb:do_fetch)\nNOTE: recipe pixman-native-1_0.38.4-r0: task do_fetch: Started\nNOTE: recipe lzo-native-2.10-r0: task do_fetch: Succeeded\nNOTE: Running task 51 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/libffi/libffi_3.2.1.bb:do_fetch)\nNOTE: recipe alsa-lib-native-1.1.9-r0: task do_fetch: Started\nNOTE: recipe libpng-native-1.6.37-r0: task do_fetch: Succeeded\nNOTE: Running task 52 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-extended/libtirpc/libtirpc_1.1.4.bb:do_fetch)\nNOTE: recipe acpica-native-20190509-r0: task do_fetch: Succeeded\nNOTE: Running task 53 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-core/readline/readline_8.0.bb:do_fetch)\nNOTE: recipe pixman-native-1_0.38.4-r0: task do_fetch: Succeeded\nNOTE: Running task 54 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-extended/libnsl/libnsl2_git.bb:do_fetch)\nNOTE: recipe libjpeg-turbo-native-1_2.0.2-r0: task do_fetch: Succeeded\nNOTE: Running noexec task 55 of 827 (/home/pokybuild/yocto-worker/a-full/build/meta/recipes-devtools/gcc/libgcc-initial_9.1.bb:do_fetch)\nNOTE: Running task 56 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-devtools/make/make_4.2.1.bb:do_fetch)\nNOTE: recipe alsa-lib-native-1.1.9-r0: task do_fetch: Succeeded\nNOTE: Running task 57 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/gmp/gmp_6.1.2.bb:do_fetch)\nNOTE: recipe dtc-native-1.5.0-r0: task do_fetch: Succeeded\nNOTE: recipe libsdl2-native-2.0.9-r0: task do_fetch: Succeeded\nNOTE: Running task 58 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/libmpc/libmpc_1.1.0.bb:do_fetch)\nNOTE: Running task 59 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/mpfr/mpfr_4.0.2.bb:do_fetch)\nNOTE: recipe libfontenc-native-1_1.1.4-r0: task do_fetch: Started\nNOTE: recipe freetype-native-2.10.1-r0: task do_fetch: Started\nNOTE: recipe libfontenc-native-1_1.1.4-r0: task do_fetch: Succeeded\nNOTE: Running task 60 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-graphics/xorg-proto/xorgproto_2018.4.bb:do_fetch)\nNOTE: recipe gdbm-native-1.18.1-r0: task do_fetch: Started\nNOTE: recipe libx11-native-1_1.6.7-r0: task do_fetch: Started\nNOTE: recipe lz4-native-1_1.9.1-r0: task do_fetch: Succeeded\nNOTE: Running task 61 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/popt/popt_1.16.bb:do_fetch)\nNOTE: recipe libffi-native-3.2.1-r0: task do_fetch: Started\nNOTE: recipe libtirpc-native-1.1.4-r0: task do_fetch: Started\nNOTE: recipe readline-native-8.0-r0: task do_fetch: Started\nNOTE: recipe libnsl2-native-1.2.0+gitAUTOINC+37c5ffe303-r0: task do_fetch: Started\nNOTE: recipe gdbm-native-1.18.1-r0: task do_fetch: Succeeded\nNOTE: recipe make-native-4.2.1-r0: task do_fetch: Started\nNOTE: Running task 62 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-core/dbus/dbus_1.12.16.bb:do_fetch)\nNOTE: recipe mpfr-native-4.0.2-r0: task do_fetch: Started\nNOTE: recipe libmpc-native-1.1.0-r0: task do_fetch: Started\nNOTE: recipe libffi-native-3.2.1-r0: task do_fetch: Succeeded\nNOTE: Running task 63 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/db/db_5.3.28.bb:do_fetch)\nNOTE: recipe libtirpc-native-1.1.4-r0: task do_fetch: Succeeded\nNOTE: recipe libx11-native-1_1.6.7-r0: task do_fetch: Succeeded\nNOTE: Running task 64 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-extended/libarchive/libarchive_3.3.3.bb:do_fetch)\nNOTE: recipe gmp-native-6.1.2-r0: task do_fetch: Started\nNOTE: recipe freetype-native-2.10.1-r0: task do_fetch: Succeeded\nNOTE: Running task 65 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-devtools/elfutils/elfutils_0.176.bb:do_fetch)\nNOTE: Running task 66 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/curl/curl_7.65.2.bb:do_fetch)\nNOTE: recipe xorgproto-native-2018.4-r0: task do_fetch: Started\nNOTE: recipe readline-native-8.0-r0: task do_fetch: Succeeded\nNOTE: recipe make-native-4.2.1-r0: task do_fetch: Succeeded\nNOTE: Running task 67 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-core/expat/expat_2.2.7.bb:do_fetch)\nNOTE: Running task 68 of 827 (/home/pokybuild/yocto-worker/a-full/build/meta/recipes-core/gettext/gettext-minimal-native_0.19.8.1.bb:do_fetch)\nNOTE: recipe libnsl2-native-1.2.0+gitAUTOINC+37c5ffe303-r0: task do_fetch: Succeeded\nNOTE: Running task 69 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/sqlite/sqlite3_3.29.0.bb:do_fetch)\nNOTE: recipe libmpc-native-1.1.0-r0: task do_fetch: Succeeded\nNOTE: recipe cairo-native-1.16.0-r0: task do_fetch: Succeeded\nNOTE: Running task 70 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/attr/attr_2.4.47.bb:do_fetch)\nNOTE: recipe xorgproto-native-2018.4-r0: task do_fetch: Succeeded\nNOTE: Running task 71 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-devtools/python/python3-pip_19.1.1.bb:do_fetch)\nNOTE: Running task 72 of 827 (/home/pokybuild/yocto-worker/a-full/build/meta/recipes-devtools/pseudo/pseudo_git.bb:do_fetch)\nNOTE: recipe mpfr-native-4.0.2-r0: task do_fetch: Succeeded\nNOTE: Running task 73 of 827 (/home/pokybuild/yocto-worker/a-full/build/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb:do_fetch)\nNOTE: recipe popt-native-1.16-r3: task do_fetch: Started\nNOTE: recipe gmp-native-6.1.2-r0: task do_fetch: Succeeded\nNOTE: Running task 74 of 827 (/home/pokybuild/yocto-worker/a-full/build/meta/recipes-devtools/make/make_4.2.1.bb:do_fetch)\nNOTE: recipe gettext-minimal-native-0.19.8.1-r0: task do_fetch: Started\nNOTE: recipe gettext-minimal-native-0.19.8.1-r0: task do_fetch: Succeeded\nNOTE: Running task 75 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-devtools/llvm/llvm_git.bb:do_fetch)\nNOTE: recipe dbus-native-1.12.16-r0: task do_fetch: Started\nNOTE: recipe popt-native-1.16-r3: task do_fetch: Succeeded\nNOTE: Running task 76 of 827 (/home/pokybuild/yocto-worker/a-full/build/meta/recipes-devtools/m4/m4-native_1.4.18.bb:do_fetch)\nNOTE: recipe libarchive-native-3.3.3-r0: task do_fetch: Started\nNOTE: recipe db-native-1_5.3.28-r1: task do_fetch: Started\nNOTE: recipe curl-native-7.65.2-r0: task do_fetch: Started\nNOTE: recipe pseudo-1.9.0+gitAUTOINC+3fa7c853e0-r0: task do_fetch: Started\nNOTE: recipe sqlite3-native-3_3.29.0-r0: task do_fetch: Started\nNOTE: recipe elfutils-native-0.176-r0: task do_fetch: Started\nNOTE: recipe dbus-native-1.12.16-r0: task do_fetch: Succeeded\nNOTE: Running task 77 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-extended/unzip/unzip_6.0.bb:do_fetch)\nNOTE: recipe expat-native-2.2.7-r0: task do_fetch: Started\nNOTE: recipe pkgconfig-0.29.2+gitAUTOINC+edf8e6f0ea-r0: task do_fetch: Started\nNOTE: recipe python3-pip-native-19.1.1-r0: task do_fetch: Started\nNOTE: recipe make-4.2.1-r0: task do_fetch: Started\nNOTE: recipe attr-native-2.4.47-r0: task do_fetch: Started\nNOTE: recipe make-4.2.1-r0: task do_fetch: Succeeded\nNOTE: Running task 78 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-extended/cracklib/cracklib_2.9.5.bb:do_fetch)\nNOTE: recipe m4-native-1.4.18-r0: task do_fetch: Started\nNOTE: recipe llvm-native-8.0.0-r0: task do_fetch: Started\nNOTE: recipe unzip-native-1_6.0-r5: task do_fetch: Started\nNOTE: recipe expat-native-2.2.7-r0: task do_fetch: Succeeded\nNOTE: Running task 79 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/debianutils/debianutils_4.8.6.3.bb:do_fetch)\nNOTE: recipe cracklib-native-2.9.5-r0: task do_fetch: Started\nNOTE: recipe libarchive-native-3.3.3-r0: task do_fetch: Succeeded\nNOTE: recipe unzip-native-1_6.0-r5: task do_fetch: Succeeded\nNOTE: recipe sqlite3-native-3_3.29.0-r0: task do_fetch: Succeeded\nNOTE: recipe python3-pip-native-19.1.1-r0: task do_fetch: Succeeded\nNOTE: recipe curl-native-7.65.2-r0: task do_fetch: Succeeded\nNOTE: recipe attr-native-2.4.47-r0: task do_fetch: Succeeded\nNOTE: recipe m4-native-1.4.18-r0: task do_fetch: Succeeded\nNOTE: Running task 80 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-devtools/python/python3-pbr_5.4.1.bb:do_fetch)\nNOTE: Running task 81 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-extended/rpcsvc-proto/rpcsvc-proto.bb:do_fetch)\nNOTE: Running task 82 of 827 (/home/pokybuild/yocto-worker/a-full/build/meta/recipes-devtools/gcc/gcc-source_9.1.bb:do_fetch)\nNOTE: Running task 83 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-gnome/librsvg/librsvg_2.40.20.bb:do_fetch)\nNOTE: Running task 84 of 827 (/home/pokybuild/yocto-worker/a-full/build/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb:do_fetch)\nNOTE: Running task 85 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-core/ncurses/ncurses_6.1+20181013.bb:do_fetch)\nNOTE: Running task 86 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-extended/bc/bc_1.07.1.bb:do_fetch)\nNOTE: recipe debianutils-native-4.8.6.3-r0: task do_fetch: Started\nNOTE: recipe pseudo-1.9.0+gitAUTOINC+3fa7c853e0-r0: task do_fetch: Succeeded\nNOTE: Running task 87 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-connectivity/openssl/openssl_1.1.1c.bb:do_fetch)\nNOTE: recipe pkgconfig-0.29.2+gitAUTOINC+edf8e6f0ea-r0: task do_fetch: Succeeded\nNOTE: Running task 88 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-extended/ghostscript/ghostscript_9.27.bb:do_fetch)\nNOTE: recipe kern-tools-native-0.2+gitAUTOINC+af1a779f66-r12: task do_fetch: Started\nNOTE: recipe gcc-source-9.1.0-9.1.0-r0: task do_fetch: Started\nNOTE: recipe elfutils-native-0.176-r0: task do_fetch: Succeeded\nNOTE: Running task 89 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-devtools/unifdef/unifdef_2.11.bb:do_fetch)\nNOTE: recipe debianutils-native-4.8.6.3-r0: task do_fetch: Succeeded\nNOTE: Running task 90 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/re2c/re2c_1.0.1.bb:do_fetch)\nNOTE: recipe cracklib-native-2.9.5-r0: task do_fetch: Succeeded\nNOTE: Running task 91 of 827 (/home/pokybuild/yocto-worker/a-full/build/meta/recipes-devtools/python/python3-scons-native_3.1.0.bb:do_fetch)\nNOTE: recipe python3-pbr-native-5.4.1-r0: task do_fetch: Started\nNOTE: recipe rpcsvc-proto-native-1.4+gitAUTOINC+9bc3b5b785-r0: task do_fetch: Started\nNOTE: recipe librsvg-native-2.40.20-r0: task do_fetch: Started\nNOTE: recipe ncurses-native-6.1+20181013-r0: task do_fetch: Started\nNOTE: recipe bc-native-1.07.1-r0: task do_fetch: Started\nNOTE: recipe openssl-native-1.1.1c-r0: task do_fetch: Started\nNOTE: recipe python3-scons-native-3.1.0-r0: task do_fetch: Started\nNOTE: recipe kern-tools-native-0.2+gitAUTOINC+af1a779f66-r12: task do_fetch: Succeeded\nNOTE: Running task 92 of 827 (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-support/icu/icu_64.2.bb:do_fetch)\nWARNING: python3-pbr-native-5.4.1-r0 do_fetch: Failed to fetch URL https://files.pythonhosted.org/packages/source/p/pbr/pbr-5.4.1.tar.gz, attempting MIRRORS if available\nERROR: python3-pbr-native-5.4.1-r0 do_fetch: The URL: 'https://files.pythonhosted.org/packages/source/p/pbr/pbr-5.4.1.tar.gz' is not trusted and cannot be used\nERROR: python3-pbr-native-5.4.1-r0 do_fetch: Fetcher failure for URL: 'https://files.pythonhosted.org/packages/source/p/pbr/pbr-5.4.1.tar.gz'. Unable to fetch URL from any source.\nNOTE: recipe unifdef-native-2.11-r0: task do_fetch: Started\nERROR: python3-pbr-native-5.4.1-r0 do_fetch: \nERROR: python3-pbr-native-5.4.1-r0 do_fetch: Function failed: base_do_fetch\nNOTE: recipe ghostscript-native-9.27-r0: task do_fetch: Started\nERROR: Logfile of failure stored in: /home/pokybuild/yocto-worker/a-full/build/build/tmp/work/x86_64-linux/python3-pbr-native/5.4.1-r0/temp/log.do_fetch.99358\nNOTE: recipe python3-pbr-native-5.4.1-r0: task do_fetch: Failed\nERROR: Task (virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-devtools/python/python3-pbr_5.4.1.bb:do_fetch) failed with exit code '1'\nNOTE: Running task 93 of 827 (/home/pokybuild/yocto-worker/a-full/build/meta/recipes-devtools/go/go-native_1.12.bb:do_fetch)\nNOTE: recipe re2c-native-1.0.1-r0: task do_fetch: Started\nWARNING: python3-scons-native-3.1.0-r0 do_fetch: Failed to fetch URL https://downloads.sourceforge.net/scons/scons-3.1.0.tar.gz, attempting MIRRORS if available\nNOTE: recipe librsvg-native-2.40.20-r0: task do_fetch: Succeeded\nERROR: python3-scons-native-3.1.0-r0 do_fetch: The URL: 'https://downloads.sourceforge.net/scons/scons-3.1.0.tar.gz' is not trusted and cannot be used\nERROR: python3-scons-native-3.1.0-r0 do_fetch: Fetcher failure for URL: 'https://downloads.sourceforge.net/scons/scons-3.1.0.tar.gz'. Unable to fetch URL from any source.\nERROR: python3-scons-native-3.1.0-r0 do_fetch: \nERROR: python3-scons-native-3.1.0-r0 do_fetch: Function failed: base_do_fetch\nERROR: Logfile of failure stored in: /home/pokybuild/yocto-worker/a-full/build/build/tmp/work/x86_64-linux/python3-scons-native/3.1.0-r0/temp/log.do_fetch.99389\nNOTE: recipe python3-scons-native-3.1.0-r0: task do_fetch: Failed\nERROR: Task (/home/pokybuild/yocto-worker/a-full/build/meta/recipes-devtools/python/python3-scons-native_3.1.0.bb:do_fetch) failed with exit code '1'\nNOTE: recipe rpcsvc-proto-native-1.4+gitAUTOINC+9bc3b5b785-r0: task do_fetch: Succeeded\nNOTE: recipe go-native-1.12.6-r0: task do_fetch: Started\nNOTE: recipe bc-native-1.07.1-r0: task do_fetch: Succeeded\nNOTE: recipe icu-native-64.2-r0: task do_fetch: Started\nNOTE: recipe unifdef-native-2.11-r0: task do_fetch: Succeeded\nNOTE: recipe db-native-1_5.3.28-r1: task do_fetch: Succeeded\nNOTE: recipe re2c-native-1.0.1-r0: task do_fetch: Succeeded\nNOTE: recipe ncurses-native-6.1+20181013-r0: task do_fetch: Succeeded\nNOTE: recipe icu-native-64.2-r0: task do_fetch: Succeeded\nNOTE: recipe openssl-native-1.1.1c-r0: task do_fetch: Succeeded\nNOTE: recipe ghostscript-native-9.27-r0: task do_fetch: Succeeded\nNOTE: recipe go-native-1.12.6-r0: task do_fetch: Succeeded\nNOTE: recipe gcc-source-9.1.0-9.1.0-r0: task do_fetch: Succeeded\nNOTE: recipe cross-localedef-native-2.29-r0: task do_fetch: Succeeded\nNOTE: recipe llvm-native-8.0.0-r0: task do_fetch: Succeeded\nNOTE: recipe binutils-native-2.32.0-r0: task do_fetch: Succeeded\nNOTE: Tasks Summary: Attempted 93 tasks of which 0 didn't need to be rerun and 2 failed.\nNOTE: The errors for this build are stored in /home/pokybuild/yocto-worker/a-full/build/build/tmp/log/error-report/error_report_20190722205742.txt\nYou can send the errors to a reports server by running:\n  send-error-report /home/pokybuild/yocto-worker/a-full/build/build/tmp/log/error-report/error_report_20190722205742.txt [-s server]\nNOTE: The contents of these logs will be posted in public if you use the above command with the default server. Please ensure you remove any identifying or proprietary information when prompted before sending.\n\nSummary: 2 tasks failed:\n  virtual:native:/home/pokybuild/yocto-worker/a-full/build/meta/recipes-devtools/python/python3-pbr_5.4.1.bb:do_fetch\n  /home/pokybuild/yocto-worker/a-full/build/meta/recipes-devtools/python/python3-scons-native_3.1.0.bb:do_fetch\nSummary: There were 2 WARNING messages shown.\nSummary: There were 8 ERROR messages shown, returning a non-zero exit code.\n",
                "status": "FAILED"
            }
        }
    },
    "oeselftest_debian-10_qemuarm_20190723035312": {
        "configuration": {
            "HOST_DISTRO": "debian-10",
            "HOST_NAME": "debian10-ty-3",
            "LAYERS": {
                "meta": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-poky": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-selftest": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-yocto-bsp": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                }
            },
            "MACHINE": "qemuarm",
            "STARTTIME": "20190723035312",
            "TESTSERIES": "qemuarm",
            "TEST_TYPE": "oeselftest"
        },
        "result": {
            "meta_ide.MetaIDE.test_meta_ide_can_build_cpio_project": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_can_compile_c_program": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_had_installed_meta_ide_support": {
                "status": "PASSED"
            },
            "runqemu.QemuTest.test_qemu_can_shutdown": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy_hddimg": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_ext4": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_iso": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp_qcow2": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemuarm/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/qemuarm/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemuarm/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 114, in test_boot_machine_slirp_qcow2\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib/python3.7/contextlib.py\", line 112, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/qemuarm/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/qemuarm/build/build-st-27212/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/qemuarm/build/build-st-27212/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723035754:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/qemuarm/build/build-st-27212/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723035754\nINFO: SSH log file: /home/pokybuild/yocto-worker/qemuarm/build/build-st-27212/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723035754\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:37565\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:47969\nDEBUG: launchcmd=runqemu nographic kvm slirp wic.qcow2 qemux86-64 tcpserial=37565:47969 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_27212\"\nDEBUG: runqemu started, pid is 12924\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 03:57:55)\nDEBUG: qemu started in 1.5024712085723877 seconds - qemu procces pid is 12952 (07/23/19 03:57:57)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running MACHINE=qemux86-64 bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Port forward: hostfwd=tcp::2222-:22 hostfwd=tcp::2323-:23\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/qemuarm/build/build-st-27212/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:35:02 -netdev user,id=net0,hostfwd=tcp::2222-:22,hostfwd=tcp::2323-:23,tftp=/home/pokybuild/yocto-worker/qemuarm/build/build-st-27212/tmp/deploy/images/qemux86-64 -drive file=/home/pokybuild/yocto-worker/qemuarm/build/build-st-27212/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64-20190723035337.rootfs.wic.qcow2,if=virtio,format=qcow2 -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:37565 -serial tcp:127.0.0.1:47969  -pidfile pidfile_27212 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 03:57:57)\nDEBUG: Connection from 127.0.0.1:50872\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 04:14:38)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/qemuarm/build/build-st-27212/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723035754\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/qemuarm/build/build-st-27212/tmp/log/runtime-hostdump/201907230414_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_qemu_boot": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vdi": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemuarm/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/qemuarm/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemuarm/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 85, in test_boot_recipe_image_vdi\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib/python3.7/contextlib.py\", line 112, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/qemuarm/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/qemuarm/build/build-st-27212/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/qemuarm/build/build-st-27212/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723041507:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/qemuarm/build/build-st-27212/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723041507\nINFO: SSH log file: /home/pokybuild/yocto-worker/qemuarm/build/build-st-27212/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723041507\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:49943\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:55265\nDEBUG: launchcmd=runqemu nographic kvm core-image-minimal wic.vdi tcpserial=49943:55265 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_27212\"\nDEBUG: runqemu started, pid is 38798\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 04:15:09)\nDEBUG: qemu started in 1.5023713111877441 seconds - qemu procces pid is 39618 (07/23/19 04:15:10)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Using preconfigured tap device tap0\nrunqemu - INFO - If this is not intended, touch /tmp/qemu-tap-locks/tap0.skip to make runqemu skip tap0.\nrunqemu - INFO - Network configuration: 192.168.7.2::192.168.7.1:255.255.255.0\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/qemuarm/build/build-st-27212/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:34:02 -netdev tap,id=net0,ifname=tap0,script=no,downscript=no -drive file=/home/pokybuild/yocto-worker/qemuarm/build/build-st-27212/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.wic.vdi,if=virtio,format=vdi -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:49943 -serial tcp:127.0.0.1:55265  -pidfile pidfile_27212 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 04:15:10)\nDEBUG: Connection from 127.0.0.1:43892\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 04:31:51)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/qemuarm/build/build-st-27212/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723041507\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/qemuarm/build/build-st-27212/tmp/log/runtime-hostdump/201907230431_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vmdk": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemuarm/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/qemuarm/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemuarm/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 78, in test_boot_recipe_image_vmdk\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib/python3.7/contextlib.py\", line 112, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/qemuarm/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/qemuarm/build/build-st-27212/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/qemuarm/build/build-st-27212/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723043154:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/qemuarm/build/build-st-27212/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723043154\nINFO: SSH log file: /home/pokybuild/yocto-worker/qemuarm/build/build-st-27212/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723043154\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:45319\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:40387\nDEBUG: launchcmd=runqemu nographic kvm core-image-minimal wic.vmdk tcpserial=45319:40387 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_27212\"\nDEBUG: runqemu started, pid is 17552\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 04:31:55)\nDEBUG: qemu started in 1.5024263858795166 seconds - qemu procces pid is 17575 (07/23/19 04:31:57)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Using preconfigured tap device tap0\nrunqemu - INFO - If this is not intended, touch /tmp/qemu-tap-locks/tap0.skip to make runqemu skip tap0.\nrunqemu - INFO - Network configuration: 192.168.7.2::192.168.7.1:255.255.255.0\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/qemuarm/build/build-st-27212/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:34:02 -netdev tap,id=net0,ifname=tap0,script=no,downscript=no -drive file=/home/pokybuild/yocto-worker/qemuarm/build/build-st-27212/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.wic.vmdk,if=virtio,format=vmdk -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:45319 -serial tcp:127.0.0.1:40387  -pidfile pidfile_27212 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 04:31:57)\nDEBUG: Connection from 127.0.0.1:58056\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 04:48:38)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/qemuarm/build/build-st-27212/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723043154\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/qemuarm/build/build-st-27212/tmp/log/runtime-hostdump/201907230448_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_rootfs": {
                "status": "PASSED"
            }
        }
    },
    "oeselftest_debian-10_qemuppc_20190723041605": {
        "configuration": {
            "HOST_DISTRO": "debian-10",
            "HOST_NAME": "debian10-ty-3",
            "LAYERS": {
                "meta": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-poky": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-selftest": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-yocto-bsp": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                }
            },
            "MACHINE": "qemuppc",
            "STARTTIME": "20190723041605",
            "TESTSERIES": "qemuppc",
            "TEST_TYPE": "oeselftest"
        },
        "result": {
            "meta_ide.MetaIDE.test_meta_ide_can_build_cpio_project": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_can_compile_c_program": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_had_installed_meta_ide_support": {
                "status": "PASSED"
            },
            "runqemu.QemuTest.test_qemu_can_shutdown": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy_hddimg": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_ext4": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_iso": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp_qcow2": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemuppc/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/qemuppc/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemuppc/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 114, in test_boot_machine_slirp_qcow2\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib/python3.7/contextlib.py\", line 112, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/qemuppc/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/qemuppc/build/build-st-46516/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/qemuppc/build/build-st-46516/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723042000:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/qemuppc/build/build-st-46516/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723042000\nINFO: SSH log file: /home/pokybuild/yocto-worker/qemuppc/build/build-st-46516/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723042000\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:36729\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:41601\nDEBUG: launchcmd=runqemu nographic kvm slirp wic.qcow2 qemux86-64 tcpserial=36729:41601 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_46516\"\nDEBUG: runqemu started, pid is 15654\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 04:20:02)\nDEBUG: qemu started in 1.5026257038116455 seconds - qemu procces pid is 15682 (07/23/19 04:20:03)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running MACHINE=qemux86-64 bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Port forward: hostfwd=tcp::2222-:22 hostfwd=tcp::2323-:23\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/qemuppc/build/build-st-46516/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:35:02 -netdev user,id=net0,hostfwd=tcp::2222-:22,hostfwd=tcp::2323-:23,tftp=/home/pokybuild/yocto-worker/qemuppc/build/build-st-46516/tmp/deploy/images/qemux86-64 -drive file=/home/pokybuild/yocto-worker/qemuppc/build/build-st-46516/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64-20190723041630.rootfs.wic.qcow2,if=virtio,format=qcow2 -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:36729 -serial tcp:127.0.0.1:41601  -pidfile pidfile_46516 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 04:20:03)\nDEBUG: Connection from 127.0.0.1:34690\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 04:36:44)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/qemuppc/build/build-st-46516/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723042000\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/qemuppc/build/build-st-46516/tmp/log/runtime-hostdump/201907230436_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_qemu_boot": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vdi": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemuppc/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/qemuppc/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemuppc/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 85, in test_boot_recipe_image_vdi\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib/python3.7/contextlib.py\", line 112, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/qemuppc/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/qemuppc/build/build-st-46516/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/qemuppc/build/build-st-46516/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723043714:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/qemuppc/build/build-st-46516/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723043714\nINFO: SSH log file: /home/pokybuild/yocto-worker/qemuppc/build/build-st-46516/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723043714\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:48201\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:37931\nDEBUG: launchcmd=runqemu nographic kvm core-image-minimal wic.vdi tcpserial=48201:37931 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_46516\"\nDEBUG: runqemu started, pid is 18543\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 04:37:15)\nDEBUG: qemu started in 1.5025384426116943 seconds - qemu procces pid is 18566 (07/23/19 04:37:17)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Acquiring lockfile /tmp/qemu-tap-locks/tap0.lock failed: [Errno 11] Resource temporarily unavailable\nrunqemu - INFO - Using preconfigured tap device tap1\nrunqemu - INFO - If this is not intended, touch /tmp/qemu-tap-locks/tap1.skip to make runqemu skip tap1.\nrunqemu - INFO - Network configuration: 192.168.7.4::192.168.7.3:255.255.255.0\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/qemuppc/build/build-st-46516/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:34:04 -netdev tap,id=net0,ifname=tap1,script=no,downscript=no -drive file=/home/pokybuild/yocto-worker/qemuppc/build/build-st-46516/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.wic.vdi,if=virtio,format=vdi -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:48201 -serial tcp:127.0.0.1:37931  -pidfile pidfile_46516 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 04:37:17)\nDEBUG: Connection from 127.0.0.1:38682\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 04:53:58)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/qemuppc/build/build-st-46516/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723043714\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/qemuppc/build/build-st-46516/tmp/log/runtime-hostdump/201907230453_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vmdk": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemuppc/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/qemuppc/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemuppc/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 78, in test_boot_recipe_image_vmdk\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib/python3.7/contextlib.py\", line 112, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/qemuppc/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/qemuppc/build/build-st-46516/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/qemuppc/build/build-st-46516/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723045400:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/qemuppc/build/build-st-46516/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723045400\nINFO: SSH log file: /home/pokybuild/yocto-worker/qemuppc/build/build-st-46516/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723045400\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:33741\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:45077\nDEBUG: launchcmd=runqemu nographic kvm core-image-minimal wic.vmdk tcpserial=33741:45077 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_46516\"\nDEBUG: runqemu started, pid is 21396\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 04:54:02)\nDEBUG: qemu started in 1.502488374710083 seconds - qemu procces pid is 21418 (07/23/19 04:54:03)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Using preconfigured tap device tap0\nrunqemu - INFO - If this is not intended, touch /tmp/qemu-tap-locks/tap0.skip to make runqemu skip tap0.\nrunqemu - INFO - Network configuration: 192.168.7.2::192.168.7.1:255.255.255.0\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/qemuppc/build/build-st-46516/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:34:02 -netdev tap,id=net0,ifname=tap0,script=no,downscript=no -drive file=/home/pokybuild/yocto-worker/qemuppc/build/build-st-46516/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.wic.vmdk,if=virtio,format=vmdk -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:33741 -serial tcp:127.0.0.1:45077  -pidfile pidfile_46516 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 04:54:03)\nDEBUG: Connection from 127.0.0.1:51056\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 05:10:44)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/qemuppc/build/build-st-46516/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723045400\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/qemuppc/build/build-st-46516/tmp/log/runtime-hostdump/201907230510_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_rootfs": {
                "status": "PASSED"
            }
        }
    },
    "oeselftest_debian-10_qemux86-64_20190722210606": {
        "configuration": {
            "HOST_DISTRO": "debian-10",
            "HOST_NAME": "debian10-ty-3",
            "LAYERS": {
                "meta": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-poky": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-selftest": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-yocto-bsp": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                }
            },
            "MACHINE": "qemux86-64",
            "STARTTIME": "20190722210606",
            "TESTSERIES": "oe-selftest-debian",
            "TEST_TYPE": "oeselftest"
        },
        "result": {
            "archiver.Archiver.test_archiver_allows_to_filter_on_recipe_name": {
                "status": "PASSED"
            },
            "archiver.Archiver.test_archiver_filters_by_type": {
                "status": "PASSED"
            },
            "archiver.Archiver.test_archiver_filters_by_type_and_name": {
                "status": "PASSED"
            },
            "archiver.Archiver.test_archiver_srpm_mode": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_add_remove": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_createlayer": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_flatten": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_showappends": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_showcrossdepends": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_showlayers": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_showoverlayed": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_showrecipes": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_bbappend_order": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_bitbake_g": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_bitbake_invalid_recipe": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_bitbake_invalid_target": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_checkuri": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_continue": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_dry_run": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_environment": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_event_handler": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_force_task_1": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_force_task_2": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_image_manifest": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_invalid_patch": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_invalid_recipe_src_uri": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_just_parse": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_local_sstate": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_non_gplv3": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_postfile": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_prefile": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_rename_downloaded_file": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_run_bitbake_from_dir_1": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_run_bitbake_from_dir_2": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_run_bitbake_from_dir_3": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_setscene_only": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_skip_setscene": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_version": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_warnings_errors": {
                "status": "PASSED"
            },
            "buildoptions.ArchiverTest.test_arch_work_dir_and_export_source": {
                "status": "PASSED"
            },
            "buildoptions.BuildhistoryTests.test_buildhistory_basic": {
                "status": "PASSED"
            },
            "buildoptions.BuildhistoryTests.test_buildhistory_buildtime_pr_backwards": {
                "status": "PASSED"
            },
            "buildoptions.DiskMonTest.test_stoptask_behavior": {
                "status": "PASSED"
            },
            "buildoptions.ImageOptionsTests.test_ccache_tool": {
                "status": "PASSED"
            },
            "buildoptions.ImageOptionsTests.test_incremental_image_generation": {
                "status": "PASSED"
            },
            "buildoptions.ImageOptionsTests.test_read_only_image": {
                "status": "PASSED"
            },
            "buildoptions.SanityOptionsTest.test_layer_without_git_dir": {
                "status": "PASSED"
            },
            "buildoptions.SanityOptionsTest.test_options_warnqa_errorqa_switch": {
                "status": "PASSED"
            },
            "buildoptions.SourceMirroring.test_yocto_source_mirror": {
                "log": "Skip by the command line argument \"buildoptions.SourceMirroring.test_yocto_source_mirror\"\n",
                "status": "SKIPPED"
            },
            "buildoptions.ToolchainOptions.test_toolchain_fortran": {
                "status": "PASSED"
            },
            "containerimage.ContainerImageTests.test_expected_files": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add_fetch": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add_fetch_git": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add_fetch_simple": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add_git_local": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add_library": {
                "status": "PASSED"
            },
            "devtool.DevtoolExtractTests.test_devtool_build_image": {
                "status": "PASSED"
            },
            "devtool.DevtoolExtractTests.test_devtool_deploy_target": {
                "status": "PASSED"
            },
            "devtool.DevtoolExtractTests.test_devtool_extract": {
                "status": "PASSED"
            },
            "devtool.DevtoolExtractTests.test_devtool_extract_virtual": {
                "status": "PASSED"
            },
            "devtool.DevtoolExtractTests.test_devtool_reset_all": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_buildclean": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify_git": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify_invalid": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify_localfiles": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify_native": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify_virtual": {
                "status": "PASSED"
            },
            "devtool.DevtoolTests.test_create_workspace": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_append": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_append_git": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_git": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_local_files": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_local_files_2": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_local_files_3": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_local_files_subdir": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_local_patch_gz": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_finish_modify_origlayer": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_finish_modify_otherlayer": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_finish_upgrade_origlayer": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_finish_upgrade_otherlayer": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_layer_plugins": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_load_plugin": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_rename": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_upgrade": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_upgrade_git": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_virtual_kernel_modify": {
                "status": "PASSED"
            },
            "distrodata.Distrodata.test_checkpkg": {
                "log": "Skip by the command line argument \"distrodata.Distrodata.test_checkpkg\"\n",
                "status": "SKIPPED"
            },
            "distrodata.Distrodata.test_maintainers": {
                "status": "PASSED"
            },
            "eSDK.oeSDKExtSelfTest.test_image_generation_binary_feeds": {
                "status": "PASSED"
            },
            "eSDK.oeSDKExtSelfTest.test_install_libraries_headers": {
                "status": "PASSED"
            },
            "efibootpartition.GenericEFITest.test_boot_efi": {
                "status": "PASSED"
            },
            "fetch.Fetch.test_git_mirrors": {
                "status": "PASSED"
            },
            "gotoolchain.oeGoToolchainSelfTest.test_go_dep_build": {
                "status": "PASSED"
            },
            "image_typedep.ImageTypeDepTests.test_conversion_typedep_added": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_all_users_can_connect_via_ssh_without_password": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_bmap": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_clutter_image_can_be_built": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_hypervisor_fmts": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_image_fstypes": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_long_chain_conversion": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_no_busybox_base_utils": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_non_root_user_can_connect_via_ssh_without_password": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_useradd_static": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_wayland_support_in_image": {
                "status": "PASSED"
            },
            "incompatible_lic.IncompatibleLicenseTests.test_incompatible_alias_spdx_license": {
                "status": "PASSED"
            },
            "incompatible_lic.IncompatibleLicenseTests.test_incompatible_alias_spdx_license_alias": {
                "status": "PASSED"
            },
            "incompatible_lic.IncompatibleLicenseTests.test_incompatible_nonspdx_license": {
                "status": "PASSED"
            },
            "incompatible_lic.IncompatibleLicenseTests.test_incompatible_spdx_license": {
                "status": "PASSED"
            },
            "incompatible_lic.IncompatibleLicenseTests.test_incompatible_spdx_license_alias": {
                "status": "PASSED"
            },
            "layerappend.LayerAppendTests.test_layer_appends": {
                "status": "PASSED"
            },
            "liboe.LibOE.test_copy_hardlink_tree_count": {
                "status": "PASSED"
            },
            "liboe.LibOE.test_copy_tree_special": {
                "status": "PASSED"
            },
            "liboe.LibOE.test_copy_tree_xattr": {
                "status": "PASSED"
            },
            "lic_checksum.LicenseTests.test_nonmatching_checksum": {
                "status": "PASSED"
            },
            "manifest.VerifyManifest.test_SDK_manifest_entries": {
                "status": "PASSED"
            },
            "manifest.VerifyManifest.test_image_manifest_entries": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_can_build_cpio_project": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_can_compile_c_program": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_had_installed_meta_ide_support": {
                "status": "PASSED"
            },
            "multiconfig.MultiConfig.test_multiconfig": {
                "status": "PASSED"
            },
            "oelib.buildhistory.TestBlobParsing.test_blob_to_dict": {
                "status": "PASSED"
            },
            "oelib.buildhistory.TestBlobParsing.test_compare_dict_blobs": {
                "status": "PASSED"
            },
            "oelib.buildhistory.TestBlobParsing.test_compare_dict_blobs_default": {
                "status": "PASSED"
            },
            "oelib.elf.TestElf.test_machine_name": {
                "status": "PASSED"
            },
            "oelib.license.TestComplexCombinations.test_tests": {
                "status": "PASSED"
            },
            "oelib.license.TestIsIncluded.test_tests": {
                "status": "PASSED"
            },
            "oelib.license.TestSimpleCombinations.test_tests": {
                "status": "PASSED"
            },
            "oelib.license.TestSingleLicense.test_invalid_licenses": {
                "status": "PASSED"
            },
            "oelib.license.TestSingleLicense.test_single_licenses": {
                "status": "PASSED"
            },
            "oelib.path.TestRealPath.test_loop": {
                "status": "PASSED"
            },
            "oelib.path.TestRealPath.test_norm": {
                "status": "PASSED"
            },
            "oelib.path.TestRealPath.test_phys": {
                "status": "PASSED"
            },
            "oelib.types.TestBooleanType.test_bool_equality": {
                "status": "PASSED"
            },
            "oelib.types.TestBooleanType.test_false": {
                "status": "PASSED"
            },
            "oelib.types.TestBooleanType.test_invalid": {
                "status": "PASSED"
            },
            "oelib.types.TestBooleanType.test_true": {
                "status": "PASSED"
            },
            "oelib.types.TestList.test_list_nosep": {
                "status": "PASSED"
            },
            "oelib.types.TestList.test_list_usersep": {
                "status": "PASSED"
            },
            "oelib.utils.TestMultiprocessLaunch.test_multiprocesslaunch": {
                "status": "PASSED"
            },
            "oelib.utils.TestPackagesFilterOutSystem.test_filter": {
                "status": "PASSED"
            },
            "oelib.utils.TestTrimVersion.test_num_exception": {
                "status": "PASSED"
            },
            "oelib.utils.TestTrimVersion.test_valid": {
                "status": "PASSED"
            },
            "oelib.utils.TestTrimVersion.test_version_exception": {
                "status": "PASSED"
            },
            "oescripts.BuildhistoryDiffTests.test_buildhistory_diff": {
                "status": "PASSED"
            },
            "oescripts.OEPybootchartguyTests.test_pybootchartguy_help": {
                "status": "PASSED"
            },
            "oescripts.OEPybootchartguyTests.test_pybootchartguy_to_generate_build_pdf_output": {
                "status": "PASSED"
            },
            "oescripts.OEPybootchartguyTests.test_pybootchartguy_to_generate_build_png_output": {
                "status": "PASSED"
            },
            "oescripts.OEPybootchartguyTests.test_pybootchartguy_to_generate_build_svg_output": {
                "status": "PASSED"
            },
            "package.PackageTests.test_gdb_hardlink_debug": {
                "status": "PASSED"
            },
            "package.PackageTests.test_preserve_sparse_hardlinks": {
                "status": "PASSED"
            },
            "package.VersionOrdering.test_dpkg": {
                "status": "PASSED"
            },
            "package.VersionOrdering.test_opkg": {
                "status": "PASSED"
            },
            "package.VersionOrdering.test_rpm": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_find_path": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_glob": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_list_pkg_files": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_list_pkgs": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_lookup_pkg": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_lookup_recipe": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_read_value": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_specify_pkgdatadir": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_import_export_override_db": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_import_export_replace_db": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_deb_arch_dep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_deb_arch_indep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_ipk_arch_dep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_ipk_arch_indep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_rpm_arch_dep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_rpm_arch_indep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_stopping_prservice_message": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_basic": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_basic_wildcard": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_existing_in_src_uri": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_existing_in_src_uri_diff_params": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_replace_file_srcdir": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_srcdir_basic": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_subdir_basic": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_subdir_basic_dirdest": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfiles_basic": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfiles_basic_subdir": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_add": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_add_bindir": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_add_machine": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_alternatives": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_basic": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_binary": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_extlayer": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_inst_func": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_inst_glob": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_inst_todir_glob": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_invalid": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_orig": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_patch": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_postinstall": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_renamed": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_script": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_src_glob": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_subdir": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_todir": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_wildcard": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_cmake": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_git": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_git_http": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_github": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_github_tarball": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_python3_distutils": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_python3_setuptools": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_simple": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_load_plugin": {
                "status": "PASSED"
            },
            "recipeutils.RecipeUtilsTests.test_patch_recipe_appends": {
                "status": "PASSED"
            },
            "recipeutils.RecipeUtilsTests.test_patch_recipe_singleappend": {
                "status": "PASSED"
            },
            "recipeutils.RecipeUtilsTests.test_patch_recipe_varflag": {
                "status": "PASSED"
            },
            "recipeutils.RecipeUtilsTests.test_split_var_value": {
                "status": "PASSED"
            },
            "recipeutils.RecipeUtilsTests.test_validate_pn": {
                "status": "PASSED"
            },
            "reproducible.ReproducibleTests.test_reproducible_builds": {
                "log": "Reproducible builds do not yet pass\n",
                "status": "SKIPPED"
            },
            "resulttooltests.ResultToolTests.test_merge_can_merged_results": {
                "status": "PASSED"
            },
            "resulttooltests.ResultToolTests.test_regression_can_get_regression_base_target_pair": {
                "status": "PASSED"
            },
            "resulttooltests.ResultToolTests.test_regrresion_can_get_regression_result": {
                "status": "PASSED"
            },
            "resulttooltests.ResultToolTests.test_report_can_aggregate_test_result": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_list_not_found": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_list_okay": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_log": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_log_split": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_no_shell": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_output": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_output_split": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_result_assertion": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_result_exception": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_result_false": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_result_okay": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_shell": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_stdin": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_stdin_timeout": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_timeout": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_timeout_split": {
                "status": "PASSED"
            },
            "runqemu.QemuTest.test_qemu_can_shutdown": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy_hddimg": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_ext4": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_iso": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp_qcow2": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 114, in test_boot_machine_slirp_qcow2\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib/python3.7/contextlib.py\", line 112, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22833/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22833/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723011349:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22833/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723011349\nINFO: SSH log file: /home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22833/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723011349\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:33155\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:36703\nDEBUG: launchcmd=runqemu nographic kvm slirp wic.qcow2 qemux86-64 tcpserial=33155:36703 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_22833\"\nDEBUG: runqemu started, pid is 31532\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 01:13:54)\nDEBUG: qemu started in 4.35988974571228 seconds - qemu procces pid is 34481 (07/23/19 01:13:58)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running MACHINE=qemux86-64 bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Port forward: hostfwd=tcp::2222-:22 hostfwd=tcp::2323-:23\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22833/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:35:02 -netdev user,id=net0,hostfwd=tcp::2222-:22,hostfwd=tcp::2323-:23,tftp=/home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22833/tmp/deploy/images/qemux86-64 -drive file=/home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22833/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64-20190722234031.rootfs.wic.qcow2,if=virtio,format=qcow2 -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:33155 -serial tcp:127.0.0.1:36703  -pidfile pidfile_22833 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 01:13:58)\nDEBUG: Connection from 127.0.0.1:43368\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 01:30:39)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J[0mk\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22833/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723011349\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22833/tmp/log/runtime-hostdump/201907230130_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_qemu_boot": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vdi": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 85, in test_boot_recipe_image_vdi\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib/python3.7/contextlib.py\", line 112, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22833/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22833/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723013134:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22833/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723013134\nINFO: SSH log file: /home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22833/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723013134\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:52813\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:48025\nDEBUG: launchcmd=runqemu nographic kvm core-image-minimal wic.vdi tcpserial=52813:48025 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_22833\"\nDEBUG: runqemu started, pid is 27859\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 01:31:37)\nDEBUG: qemu started in 2.753838539123535 seconds - qemu procces pid is 37008 (07/23/19 01:31:40)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Acquiring lockfile /tmp/qemu-tap-locks/tap0.lock failed: [Errno 11] Resource temporarily unavailable\nrunqemu - INFO - Using preconfigured tap device tap1\nrunqemu - INFO - If this is not intended, touch /tmp/qemu-tap-locks/tap1.skip to make runqemu skip tap1.\nrunqemu - INFO - Network configuration: 192.168.7.4::192.168.7.3:255.255.255.0\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22833/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:34:04 -netdev tap,id=net0,ifname=tap1,script=no,downscript=no -drive file=/home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22833/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.wic.vdi,if=virtio,format=vdi -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:52813 -serial tcp:127.0.0.1:48025  -pidfile pidfile_22833 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 01:31:40)\nDEBUG: Connection from 127.0.0.1:45920\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 01:48:21)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLIl\nNUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J[0mk\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22833/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723013134\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22833/tmp/log/runtime-hostdump/201907230148_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vmdk": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 78, in test_boot_recipe_image_vmdk\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib/python3.7/contextlib.py\", line 112, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22833/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22833/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723014825:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22833/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723014825\nINFO: SSH log file: /home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22833/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723014825\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:44437\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:60793\nDEBUG: launchcmd=runqemu nographic kvm core-image-minimal wic.vmdk tcpserial=44437:60793 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_22833\"\nDEBUG: runqemu started, pid is 18510\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 01:48:30)\nDEBUG: qemu started in 2.0067405700683594 seconds - qemu procces pid is 21045 (07/23/19 01:48:32)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Using preconfigured tap device tap0\nrunqemu - INFO - If this is not intended, touch /tmp/qemu-tap-locks/tap0.skip to make runqemu skip tap0.\nrunqemu - INFO - Network configuration: 192.168.7.2::192.168.7.1:255.255.255.0\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22833/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:34:02 -netdev tap,id=net0,ifname=tap0,script=no,downscript=no -drive file=/home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22833/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.wic.vmdk,if=virtio,format=vmdk -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:44437 -serial tcp:127.0.0.1:60793  -pidfile pidfile_22833 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 01:48:32)\nDEBUG: Connection from 127.0.0.1:38324\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 02:05:13)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22833/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723014825\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22833/tmp/log/runtime-hostdump/201907230205_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_rootfs": {
                "status": "PASSED"
            },
            "runtime_test.Postinst.test_failing_postinst": {
                "status": "PASSED"
            },
            "runtime_test.Postinst.test_postinst_rootfs_and_boot": {
                "status": "PASSED"
            },
            "runtime_test.TestExport.test_testexport_basic": {
                "status": "PASSED"
            },
            "runtime_test.TestExport.test_testexport_sdk": {
                "status": "PASSED"
            },
            "runtime_test.TestImage.test_testimage_dnf": {
                "status": "PASSED"
            },
            "runtime_test.TestImage.test_testimage_install": {
                "status": "PASSED"
            },
            "runtime_test.TestImage.test_testimage_virgl_gtk": {
                "status": "PASSED"
            },
            "runtime_test.TestImage.test_testimage_virgl_headless": {
                "log": "No render nodes found in /dev/dri: ['by-path', 'card0']\n",
                "status": "SKIPPED"
            },
            "selftest.ExternalLayer.test_list_imported": {
                "status": "PASSED"
            },
            "signing.LockedSignatures.test_locked_signatures": {
                "status": "PASSED"
            },
            "signing.Signing.test_signing_packages": {
                "status": "PASSED"
            },
            "signing.Signing.test_signing_sstate_archive": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_autorev_sstate_works": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_cleansstate_task_distro_nonspecific": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_cleansstate_task_distro_specific": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_cleansstate_task_distro_specific_nonspecific": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_rebuild_distro_specific_sstate_cross_native_targets": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_rebuild_distro_specific_sstate_cross_target": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_rebuild_distro_specific_sstate_native_target": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_32_64_same_hash": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_allarch_samesigs": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_cache_management_script_using_machine": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_cache_management_script_using_pr_1": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_cache_management_script_using_pr_2": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_cache_management_script_using_pr_3": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_creation_distro_nonspecific_fail": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_creation_distro_nonspecific_pass": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_creation_distro_specific_fail": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_creation_distro_specific_pass": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_nativelsbstring_same_hash": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_nativesdk_samesigs_multilib": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_noop_samesigs": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_sametune_samesigs": {
                "status": "PASSED"
            },
            "systemd_boot.Systemdboot.test_efi_systemdboot_images_can_be_built": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_datastore_operations": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_expand": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_getvar": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_getvar_bb_origenv": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_list_recipes": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_parse_recipe": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_parse_recipe_copy_expand": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_parse_recipe_initial_datastore": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_setvariable_clean": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_variable_history": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_wait_event": {
                "status": "PASSED"
            },
            "wic.Wic.test_bootloader_config": {
                "status": "PASSED"
            },
            "wic.Wic.test_build_artifacts": {
                "status": "PASSED"
            },
            "wic.Wic.test_build_image_name": {
                "status": "PASSED"
            },
            "wic.Wic.test_build_rootfs_long": {
                "status": "PASSED"
            },
            "wic.Wic.test_build_rootfs_short": {
                "status": "PASSED"
            },
            "wic.Wic.test_compress_bzip2": {
                "status": "PASSED"
            },
            "wic.Wic.test_compress_gzip": {
                "status": "PASSED"
            },
            "wic.Wic.test_compress_xz": {
                "status": "PASSED"
            },
            "wic.Wic.test_createhelp": {
                "status": "PASSED"
            },
            "wic.Wic.test_debug_long": {
                "status": "PASSED"
            },
            "wic.Wic.test_debug_short": {
                "status": "PASSED"
            },
            "wic.Wic.test_default_output_dir": {
                "status": "PASSED"
            },
            "wic.Wic.test_exclude_path": {
                "status": "PASSED"
            },
            "wic.Wic.test_exclude_path_errors": {
                "status": "PASSED"
            },
            "wic.Wic.test_gpt_image": {
                "status": "PASSED"
            },
            "wic.Wic.test_help": {
                "status": "PASSED"
            },
            "wic.Wic.test_help_create": {
                "status": "PASSED"
            },
            "wic.Wic.test_help_kickstart": {
                "status": "PASSED"
            },
            "wic.Wic.test_help_list": {
                "status": "PASSED"
            },
            "wic.Wic.test_help_overview": {
                "status": "PASSED"
            },
            "wic.Wic.test_help_plugins": {
                "status": "PASSED"
            },
            "wic.Wic.test_iso_image": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/lib/oeqa/selftest/cases/wic.py\", line 42, in wrapped_f\n    return func(*args, **kwargs)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/lib/oeqa/selftest/cases/wic.py\", line 170, in test_iso_image\n    bitbake('core-image-minimal core-image-minimal-initramfs')\n  File \"/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/lib/oeqa/utils/commands.py\", line 218, in bitbake\n    return runCmd(cmd, ignore_status, timeout, output_log=output_log, **options)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/lib/oeqa/utils/commands.py\", line 196, in runCmd\n    raise AssertionError(\"Command '%s' returned non-zero exit status %d:\\n%s\" % (command, result.status, exc_output))\nAssertionError: Command 'bitbake  core-image-minimal core-image-minimal-initramfs' returned non-zero exit status 1:\nParsing recipes...done.\nParsing of 823 .bb files complete (0 cached, 823 parsed). 1355 targets, 48 skipped, 0 masked, 0 errors.\nNOTE: Resolving any missing task queue dependencies\n\nBuild Configuration:\nBB_VERSION           = \"1.43.0\"\nBUILD_SYS            = \"x86_64-linux\"\nNATIVELSBSTRING      = \"universal\"\nTARGET_SYS           = \"x86_64-poky-linux\"\nMACHINE              = \"qemux86-64\"\nDISTRO               = \"poky\"\nDISTRO_VERSION       = \"2.7+snapshot-20190723\"\nTUNE_FEATURES        = \"m64 core2\"\nTARGET_FPU           = \"\"\nmeta                 \nmeta-poky            \nmeta-yocto-bsp       = \"master-next:96c3c88f021fed2bc017db2a9486b06ce609b140\"\nmeta-selftest        = \"master:bbd28868bb1e7771d67e2ab05065e790b61631aa\"\n\nInitialising tasks...done.\nSstate summary: Wanted 162 Found 157 Missed 5 Current 779 (96% match, 99% complete)\nNOTE: Executing Tasks\nNOTE: Running setscene task 788 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/images/core-image-minimal-initramfs.bb:do_populate_lic_setscene)\nNOTE: Running setscene task 789 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_package_qa_setscene)\nNOTE: Running setscene task 790 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_package_write_rpm_setscene)\nNOTE: Running setscene task 791 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_deploy_setscene)\nNOTE: Running setscene task 792 of 945 (virtual:native:/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-extended/cpio/cpio_2.12.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 793 of 945 (virtual:native:/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-extended/cpio/cpio_2.12.bb:do_populate_lic_setscene)\nNOTE: Running setscene task 796 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/packagegroups/packagegroup-core-boot.bb:do_package_qa_setscene)\nNOTE: Running setscene task 797 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/packagegroups/packagegroup-core-boot.bb:do_package_write_rpm_setscene)\nNOTE: Running setscene task 799 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 800 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb:do_package_qa_setscene)\nNOTE: Running setscene task 801 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb:do_package_write_rpm_setscene)\nNOTE: Running setscene task 802 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb:do_populate_lic_setscene)\nNOTE: Running setscene task 803 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 804 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb:do_package_qa_setscene)\nNOTE: Running setscene task 805 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb:do_package_write_rpm_setscene)\nNOTE: Running setscene task 806 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb:do_populate_lic_setscene)\nNOTE: recipe initramfs-framework-1.0-r4: task do_populate_sysroot_setscene: Started\nNOTE: recipe initramfs-framework-1.0-r4: task do_populate_lic_setscene: Started\nNOTE: recipe initramfs-framework-1.0-r4: task do_package_write_rpm_setscene: Started\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_package_qa_setscene: Started\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_populate_sysroot_setscene: Started\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_package_write_rpm_setscene: Started\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_populate_lic_setscene: Started\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_package_qa_setscene: Started\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_package_write_rpm_setscene: Started\nNOTE: recipe initramfs-framework-1.0-r4: task do_package_qa_setscene: Started\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_package_qa_setscene: Succeeded\nNOTE: Running setscene task 807 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb:do_populate_sysroot_setscene)\nNOTE: recipe cpio-native-2.12-r0: task do_populate_lic_setscene: Started\nNOTE: recipe initramfs-framework-1.0-r4: task do_populate_lic_setscene: Succeeded\nNOTE: recipe initramfs-framework-1.0-r4: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe initramfs-framework-1.0-r4: task do_package_write_rpm_setscene: Succeeded\nNOTE: Running setscene task 808 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb:do_package_qa_setscene)\nNOTE: Running setscene task 809 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb:do_package_write_rpm_setscene)\nNOTE: recipe cpio-native-2.12-r0: task do_populate_sysroot_setscene: Started\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_populate_sysroot_setscene: Succeeded\nNOTE: Running setscene task 810 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb:do_populate_lic_setscene)\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_package_write_rpm_setscene: Succeeded\nNOTE: Running setscene task 811 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb:do_packagedata_setscene)\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_package_qa_setscene: Succeeded\nNOTE: Running setscene task 812 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 813 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb:do_package_qa_setscene)\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_populate_lic_setscene: Succeeded\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_package_write_rpm_setscene: Succeeded\nNOTE: Running setscene task 814 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb:do_package_write_rpm_setscene)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_package_qa_setscene: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_package_write_rpm_setscene: Started\nNOTE: Running setscene task 815 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/packagegroups/packagegroup-core-boot.bb:do_packagedata_setscene)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_deploy_setscene: Started\nNOTE: recipe initramfs-framework-1.0-r4: task do_package_qa_setscene: Succeeded\nNOTE: Running setscene task 816 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb:do_populate_lic_setscene)\nNOTE: recipe cpio-native-2.12-r0: task do_populate_lic_setscene: Succeeded\nNOTE: Running setscene task 838 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-bsp/grub/grub-efi_2.02.bb:do_package_qa_setscene)\nNOTE: recipe initramfs-module-install-1.0-r1: task do_populate_sysroot_setscene: Started\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_populate_lic_setscene: Started\nNOTE: recipe initramfs-module-install-1.0-r1: task do_package_qa_setscene: Started\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_packagedata_setscene: Started\nNOTE: recipe initramfs-module-install-1.0-r1: task do_populate_lic_setscene: Started\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_populate_sysroot_setscene: Started\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_package_qa_setscene: Started\nNOTE: recipe initramfs-module-install-1.0-r1: task do_package_write_rpm_setscene: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_package_qa_setscene: Succeeded\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_packagedata_setscene: Started\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_populate_lic_setscene: Started\nNOTE: Running setscene task 839 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-bsp/grub/grub-efi_2.02.bb:do_populate_lic_setscene)\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_package_write_rpm_setscene: Started\nNOTE: recipe initramfs-module-install-1.0-r1: task do_package_qa_setscene: Succeeded\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_package_qa_setscene: Succeeded\nNOTE: Running setscene task 840 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/udev/udev-extraconf_1.1.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 841 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/udev/udev-extraconf_1.1.bb:do_package_qa_setscene)\nNOTE: recipe initramfs-module-install-1.0-r1: task do_populate_sysroot_setscene: Succeeded\nNOTE: Running setscene task 842 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/udev/udev-extraconf_1.1.bb:do_package_write_rpm_setscene)\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_packagedata_setscene: Succeeded\nNOTE: recipe initramfs-module-install-1.0-r1: task do_populate_lic_setscene: Succeeded\nNOTE: recipe initramfs-module-install-1.0-r1: task do_package_write_rpm_setscene: Succeeded\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_deploy_setscene: Succeeded\nNOTE: Running setscene task 843 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/udev/udev-extraconf_1.1.bb:do_populate_lic_setscene)\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_populate_lic_setscene: Succeeded\nNOTE: recipe cpio-native-2.12-r0: task do_populate_sysroot_setscene: Succeeded\nNOTE: Running setscene task 844 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 846 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb:do_packagedata_setscene)\nNOTE: Running setscene task 847 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-bsp/grub/grub_2.02.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 848 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-bsp/grub/grub_2.02.bb:do_package_qa_setscene)\nNOTE: Running setscene task 849 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-bsp/grub/grub_2.02.bb:do_populate_lic_setscene)\nNOTE: Running setscene task 850 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-extended/parted/parted_3.2.bb:do_populate_sysroot_setscene)\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_populate_lic_setscene: Succeeded\nNOTE: Running setscene task 851 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-extended/parted/parted_3.2.bb:do_package_qa_setscene)\nNOTE: recipe grub-efi-2.02-r0: task do_package_qa_setscene: Started\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_package_write_rpm_setscene: Succeeded\nNOTE: Running setscene task 852 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb:do_packagedata_setscene)\nNOTE: recipe grub-efi-2.02-r0: task do_populate_lic_setscene: Started\nNOTE: recipe grub-efi-2.02-r0: task do_package_qa_setscene: Succeeded\nNOTE: Running setscene task 853 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb:do_packagedata_setscene)\nNOTE: recipe udev-extraconf-1.1-r0: task do_package_qa_setscene: Started\nNOTE: recipe udev-extraconf-1.1-r0: task do_package_write_rpm_setscene: Started\nNOTE: recipe udev-extraconf-1.1-r0: task do_populate_lic_setscene: Started\nNOTE: recipe udev-extraconf-1.1-r0: task do_populate_sysroot_setscene: Started\nNOTE: recipe initramfs-module-install-1.0-r1: task do_packagedata_setscene: Started\nNOTE: recipe initramfs-framework-1.0-r4: task do_packagedata_setscene: Started\nNOTE: recipe grub-efi-2.02-r0: task do_populate_lic_setscene: Succeeded\nNOTE: Running setscene task 855 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-extended/parted/parted_3.2.bb:do_package_write_rpm_setscene)\nNOTE: recipe udev-extraconf-1.1-r0: task do_package_qa_setscene: Succeeded\nNOTE: Running setscene task 856 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-extended/parted/parted_3.2.bb:do_populate_lic_setscene)\nNOTE: recipe parted-3.2-r1: task do_package_qa_setscene: Started\nNOTE: recipe parted-3.2-r1: task do_populate_sysroot_setscene: Started\nNOTE: recipe udev-extraconf-1.1-r0: task do_package_write_rpm_setscene: Succeeded\nNOTE: Running setscene task 857 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/udev/udev-extraconf_1.1.bb:do_packagedata_setscene)\nNOTE: recipe udev-extraconf-1.1-r0: task do_populate_lic_setscene: Succeeded\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_populate_sysroot_setscene: Started\nNOTE: Running setscene task 858 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_populate_sysroot_setscene)\nNOTE: recipe grub-2.02-r0: task do_populate_sysroot_setscene: Started\nNOTE: recipe grub-2.02-r0: task do_package_qa_setscene: Started\nNOTE: recipe grub-2.02-r0: task do_populate_lic_setscene: Started\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_packagedata_setscene: Started\nNOTE: recipe udev-extraconf-1.1-r0: task do_populate_sysroot_setscene: Succeeded\nNOTE: Running setscene task 859 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_package_qa_setscene)\nNOTE: recipe parted-3.2-r1: task do_package_qa_setscene: Succeeded\nNOTE: Running setscene task 860 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_package_write_rpm_setscene)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_package_write_rpm_setscene: Succeeded\nNOTE: Running setscene task 861 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_packagedata_setscene)\nNOTE: recipe initramfs-module-install-1.0-r1: task do_packagedata_setscene: Succeeded\nNOTE: Running setscene task 863 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_populate_lic_setscene)\nNOTE: recipe grub-2.02-r0: task do_package_qa_setscene: Succeeded\nNOTE: recipe parted-3.2-r1: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe grub-2.02-r0: task do_populate_lic_setscene: Succeeded\nNOTE: Running setscene task 894 of 945 (virtual:native:/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-bsp/grub/grub-efi_2.02.bb:do_populate_lic_setscene)\nNOTE: recipe parted-3.2-r1: task do_package_write_rpm_setscene: Started\nNOTE: recipe udev-extraconf-1.1-r0: task do_packagedata_setscene: Started\nNOTE: Running setscene task 912 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-graphics/freetype/freetype_2.10.1.bb:do_package_qa_setscene)\nNOTE: Running setscene task 913 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-graphics/freetype/freetype_2.10.1.bb:do_populate_lic_setscene)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe parted-3.2-r1: task do_populate_lic_setscene: Started\nNOTE: Running setscene task 914 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-bsp/grub/grub-bootconf_1.00.bb:do_populate_sysroot_setscene)\nNOTE: recipe dosfstools-4.1-r0: task do_populate_sysroot_setscene: Started\nNOTE: recipe initramfs-framework-1.0-r4: task do_packagedata_setscene: Succeeded\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_packagedata_setscene: Succeeded\nNOTE: Running setscene task 917 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-bsp/grub/grub-bootconf_1.00.bb:do_package_qa_setscene)\nNOTE: Running setscene task 918 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-bsp/grub/grub-bootconf_1.00.bb:do_populate_lic_setscene)\nNOTE: recipe dosfstools-4.1-r0: task do_package_qa_setscene: Started\nNOTE: recipe dosfstools-4.1-r0: task do_package_write_rpm_setscene: Started\nNOTE: recipe grub-2.02-r0: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe udev-extraconf-1.1-r0: task do_packagedata_setscene: Succeeded\nNOTE: recipe parted-3.2-r1: task do_package_write_rpm_setscene: Succeeded\nNOTE: recipe dosfstools-4.1-r0: task do_populate_lic_setscene: Started\nNOTE: recipe parted-3.2-r1: task do_populate_lic_setscene: Succeeded\nNOTE: Running setscene task 936 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-extended/parted/parted_3.2.bb:do_packagedata_setscene)\nNOTE: recipe dosfstools-4.1-r0: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe dosfstools-4.1-r0: task do_package_qa_setscene: Succeeded\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_packagedata_setscene: Succeeded\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_packagedata_setscene: Started\nNOTE: recipe dosfstools-4.1-r0: task do_package_write_rpm_setscene: Succeeded\nNOTE: recipe grub-bootconf-1.00-r0: task do_populate_sysroot_setscene: Started\nNOTE: recipe grub-bootconf-1.00-r0: task do_package_qa_setscene: Started\nNOTE: recipe dosfstools-4.1-r0: task do_populate_lic_setscene: Succeeded\nNOTE: recipe freetype-2.10.1-r0: task do_populate_lic_setscene: Started\nNOTE: recipe grub-bootconf-1.00-r0: task do_populate_lic_setscene: Started\nNOTE: recipe freetype-2.10.1-r0: task do_package_qa_setscene: Started\nNOTE: recipe grub-efi-native-2.02-r0: task do_populate_lic_setscene: Started\nNOTE: recipe grub-bootconf-1.00-r0: task do_package_qa_setscene: Succeeded\nNOTE: Running setscene task 939 of 945 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_packagedata_setscene)\nNOTE: recipe grub-bootconf-1.00-r0: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe parted-3.2-r1: task do_packagedata_setscene: Started\nNOTE: recipe freetype-2.10.1-r0: task do_package_qa_setscene: Succeeded\nNOTE: recipe grub-efi-native-2.02-r0: task do_populate_lic_setscene: Succeeded\nNOTE: recipe grub-bootconf-1.00-r0: task do_populate_lic_setscene: Succeeded\nNOTE: recipe freetype-2.10.1-r0: task do_populate_lic_setscene: Succeeded\nNOTE: recipe dosfstools-4.1-r0: task do_packagedata_setscene: Started\nNOTE: recipe parted-3.2-r1: task do_packagedata_setscene: Succeeded\nNOTE: recipe dosfstools-4.1-r0: task do_packagedata_setscene: Succeeded\nNOTE: Running noexec task 2086 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/images/core-image-minimal-initramfs.bb:do_fetch)\nNOTE: Running task 2494 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/images/core-image-minimal-initramfs.bb:do_prepare_recipe_sysroot)\nNOTE: Running noexec task 2690 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-graphics/freetype/freetype_2.10.1.bb:do_build)\nNOTE: Running noexec task 2853 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-bsp/grub/grub-bootconf_1.00.bb:do_build)\nNOTE: Running noexec task 2854 of 2988 (virtual:native:/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-bsp/grub/grub-efi_2.02.bb:do_build)\nNOTE: Running noexec task 2856 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_build)\nNOTE: Running noexec task 2862 of 2988 (virtual:native:/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-extended/cpio/cpio_2.12.bb:do_build)\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_prepare_recipe_sysroot: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_packagedata_setscene: Succeeded\nNOTE: Setscene tasks completed\nNOTE: Running task 2908 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/images/core-image-minimal.bb:do_rootfs)\nNOTE: Running noexec task 2909 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-support/shared-mime-info/shared-mime-info_1.10.bb:do_build)\nNOTE: Running noexec task 2910 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-support/gnome-desktop-testing/gnome-desktop-testing_2018.1.bb:do_build)\nNOTE: Running noexec task 2911 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-devtools/libtool/libtool_2.4.6.bb:do_build)\nNOTE: Running noexec task 2912 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/glib-2.0/glib-2.0_2.60.5.bb:do_build)\nNOTE: Running noexec task 2913 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/libxml/libxml2_2.9.9.bb:do_build)\nNOTE: Running noexec task 2914 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-extended/gawk/gawk_5.0.1.bb:do_build)\nNOTE: Running noexec task 2915 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-support/ca-certificates/ca-certificates_20190110.bb:do_build)\nNOTE: Running noexec task 2916 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-extended/unzip/unzip_6.0.bb:do_build)\nNOTE: Running noexec task 2917 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/dbus/dbus-test_1.12.16.bb:do_build)\nNOTE: Running noexec task 2918 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-support/libpcre/libpcre_8.43.bb:do_build)\nNOTE: Running noexec task 2919 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-connectivity/openssl/openssl_1.1.1c.bb:do_build)\nNOTE: Running noexec task 2920 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-devtools/elfutils/elfutils_0.176.bb:do_build)\nNOTE: Running noexec task 2922 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-support/libcheck/libcheck_0.12.0.bb:do_build)\nNOTE: Running noexec task 2923 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/readline/readline_8.0.bb:do_build)\nNOTE: Running noexec task 2924 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-devtools/python/python3_3.7.4.bb:do_build)\nNOTE: Running noexec task 2926 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-extended/grep/grep_3.3.bb:do_build)\nNOTE: Running noexec task 2927 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.1.1.bb:do_build)\nNOTE: Running noexec task 2928 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-extended/which/which_2.21.bb:do_build)\nNOTE: Running noexec task 2929 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-connectivity/socat/socat_1.7.3.3.bb:do_build)\nNOTE: Running noexec task 2930 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-connectivity/iproute2/iproute2_5.2.0.bb:do_build)\nNOTE: Running noexec task 2931 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-extended/bc/bc_1.07.1.bb:do_build)\nNOTE: Running noexec task 2932 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-extended/procps/procps_3.3.15.bb:do_build)\nNOTE: Running noexec task 2933 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/coreutils/coreutils_8.31.bb:do_build)\nNOTE: Running noexec task 2934 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-extended/diffutils/diffutils_3.7.bb:do_build)\nNOTE: Running noexec task 2935 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-extended/bzip2/bzip2_1.0.8.bb:do_build)\nNOTE: Running noexec task 2936 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-extended/sed/sed_4.2.2.bb:do_build)\nNOTE: Running noexec task 2937 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/systemd/systemd-compat-units.bb:do_build)\nNOTE: Running noexec task 2938 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/dbus/dbus_1.12.16.bb:do_build)\nNOTE: Running noexec task 2939 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/kbd/kbd_2.0.4.bb:do_build)\nNOTE: Running noexec task 2940 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-extended/bash/bash_5.0.bb:do_build)\nNOTE: Running noexec task 2941 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-bsp/grub/grub_2.02.bb:do_build)\nNOTE: Running noexec task 2942 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-support/attr/attr_2.4.47.bb:do_build)\nNOTE: Running noexec task 2943 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-support/gdbm/gdbm_1.18.1.bb:do_build)\nNOTE: Running noexec task 2944 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-extended/xz/xz_5.2.4.bb:do_build)\nNOTE: Running noexec task 2945 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-kernel/kmod/kmod_git.bb:do_build)\nNOTE: Running noexec task 2946 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-support/bash-completion/bash-completion_2.9.bb:do_build)\nNOTE: Running noexec task 2947 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-extended/shadow/shadow_4.6.bb:do_build)\nNOTE: Running noexec task 2948 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-support/attr/acl_2.2.52.bb:do_build)\nNOTE: Running noexec task 2949 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-devtools/opkg-utils/opkg-utils_0.4.1.bb:do_build)\nNOTE: Running noexec task 2950 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/ncurses/ncurses_6.1+20181013.bb:do_build)\nNOTE: Running noexec task 2952 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.44.5.bb:do_build)\nNOTE: Running noexec task 2953 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-devtools/perl/perl_5.30.0.bb:do_build)\nNOTE: Running noexec task 2955 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/busybox/busybox_1.31.0.bb:do_build)\nNOTE: Running noexec task 2956 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_build)\nNOTE: Running noexec task 2958 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-extended/parted/parted_3.2.bb:do_build)\nNOTE: Running noexec task 2959 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/udev/udev-extraconf_1.1.bb:do_build)\nNOTE: Running noexec task 2960 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-bsp/grub/grub-efi_2.02.bb:do_build)\nNOTE: Running noexec task 2962 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb:do_build)\nNOTE: Running noexec task 2963 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb:do_build)\nNOTE: Running noexec task 2964 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb:do_build)\nNOTE: Running noexec task 2965 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb:do_build)\nNOTE: Running noexec task 2966 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/packagegroups/packagegroup-core-boot.bb:do_build)\nNOTE: Running noexec task 2967 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-devtools/syslinux/syslinux_6.04-pre2.bb:do_build)\nNOTE: recipe core-image-minimal-1.0-r0: task do_rootfs: Started\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_prepare_recipe_sysroot: Succeeded\nNOTE: Running task 2973 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/images/core-image-minimal-initramfs.bb:do_rootfs)\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_rootfs: Started\nERROR: core-image-minimal-1.0-r0 do_rootfs: The postinstall intercept hook 'update_udev_hwdb' failed, details in /home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22780/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/temp/log.do_rootfs\nERROR: core-image-minimal-1.0-r0 do_rootfs: \nERROR: core-image-minimal-1.0-r0 do_rootfs: Function failed: do_rootfs\nERROR: Logfile of failure stored in: /home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22780/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/temp/log.do_rootfs.16860\nNOTE: recipe core-image-minimal-1.0-r0: task do_rootfs: Failed\nERROR: Task (/home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/images/core-image-minimal.bb:do_rootfs) failed with exit code '1'\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_rootfs: Succeeded\nNOTE: Tasks Summary: Attempted 2973 tasks of which 2911 didn't need to be rerun and 1 failed.\nNOTE: The errors for this build are stored in /home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22780/tmp/log/error-report/error_report_20190723021400.txt\nYou can send the errors to a reports server by running:\n  send-error-report /home/pokybuild/yocto-worker/oe-selftest-debian/build/build-st-22780/tmp/log/error-report/error_report_20190723021400.txt [-s server]\nNOTE: The contents of these logs will be posted in public if you use the above command with the default server. Please ensure you remove any identifying or proprietary information when prompted before sending.\n\nSummary: 1 task failed:\n  /home/pokybuild/yocto-worker/oe-selftest-debian/build/meta/recipes-core/images/core-image-minimal.bb:do_rootfs\nSummary: There were 3 ERROR messages shown, returning a non-zero exit code.\n\n",
                "status": "FAILED"
            },
            "wic.Wic.test_list_images": {
                "status": "PASSED"
            },
            "wic.Wic.test_list_source_plugins": {
                "status": "PASSED"
            },
            "wic.Wic.test_listed_images_help": {
                "status": "PASSED"
            },
            "wic.Wic.test_listhelp": {
                "status": "PASSED"
            },
            "wic.Wic.test_mkefidisk": {
                "status": "PASSED"
            },
            "wic.Wic.test_no_command": {
                "status": "PASSED"
            },
            "wic.Wic.test_qemux86_directdisk": {
                "status": "PASSED"
            },
            "wic.Wic.test_rootfs_artifacts": {
                "status": "PASSED"
            },
            "wic.Wic.test_rootfs_indirect_recipes": {
                "status": "PASSED"
            },
            "wic.Wic.test_sdimage_bootpart": {
                "status": "PASSED"
            },
            "wic.Wic.test_skip_build_check_long": {
                "status": "PASSED"
            },
            "wic.Wic.test_skip_build_check_short": {
                "status": "PASSED"
            },
            "wic.Wic.test_systemd_bootdisk": {
                "status": "PASSED"
            },
            "wic.Wic.test_unsupported_subcommand": {
                "status": "PASSED"
            },
            "wic.Wic.test_version": {
                "status": "PASSED"
            },
            "wic.Wic.test_wrong_compressor": {
                "status": "PASSED"
            },
            "wic.Wic2.test_biosplusefi_plugin": {
                "status": "PASSED"
            },
            "wic.Wic2.test_biosplusefi_plugin_qemu": {
                "status": "PASSED"
            },
            "wic.Wic2.test_bmap_long": {
                "status": "PASSED"
            },
            "wic.Wic2.test_bmap_short": {
                "status": "PASSED"
            },
            "wic.Wic2.test_expand_mbr_image": {
                "status": "PASSED"
            },
            "wic.Wic2.test_fixed_size": {
                "status": "PASSED"
            },
            "wic.Wic2.test_fixed_size_error": {
                "status": "PASSED"
            },
            "wic.Wic2.test_fs_types": {
                "status": "PASSED"
            },
            "wic.Wic2.test_image_bootpart_globbed": {
                "status": "PASSED"
            },
            "wic.Wic2.test_image_env": {
                "status": "PASSED"
            },
            "wic.Wic2.test_image_vars_dir_long": {
                "status": "PASSED"
            },
            "wic.Wic2.test_image_vars_dir_short": {
                "status": "PASSED"
            },
            "wic.Wic2.test_kickstart_parser": {
                "status": "PASSED"
            },
            "wic.Wic2.test_mkfs_extraopts": {
                "status": "PASSED"
            },
            "wic.Wic2.test_qemu": {
                "status": "PASSED"
            },
            "wic.Wic2.test_qemu_efi": {
                "status": "PASSED"
            },
            "wic.Wic2.test_rawcopy_plugin": {
                "status": "PASSED"
            },
            "wic.Wic2.test_rawcopy_plugin_qemu": {
                "status": "PASSED"
            },
            "wic.Wic2.test_sparse_copy": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_cp": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_cp_ext": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_image_type": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_ls": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_ls_ext": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_rm": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_rm_ext": {
                "status": "PASSED"
            }
        }
    },
    "oeselftest_fedora-29_qemux86-64_20190722210502": {
        "configuration": {
            "HOST_DISTRO": "fedora-29",
            "HOST_NAME": "fedora29-ty-1.yocto.io",
            "LAYERS": {
                "meta": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-poky": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-selftest": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-yocto-bsp": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                }
            },
            "MACHINE": "qemux86-64",
            "STARTTIME": "20190722210502",
            "TESTSERIES": "oe-selftest-fedora",
            "TEST_TYPE": "oeselftest"
        },
        "result": {
            "archiver.Archiver.test_archiver_allows_to_filter_on_recipe_name": {
                "status": "PASSED"
            },
            "archiver.Archiver.test_archiver_filters_by_type": {
                "status": "PASSED"
            },
            "archiver.Archiver.test_archiver_filters_by_type_and_name": {
                "status": "PASSED"
            },
            "archiver.Archiver.test_archiver_srpm_mode": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_add_remove": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_createlayer": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_flatten": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_showappends": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_showcrossdepends": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_showlayers": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_showoverlayed": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_showrecipes": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_bbappend_order": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_bitbake_g": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_bitbake_invalid_recipe": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_bitbake_invalid_target": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_checkuri": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_continue": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_dry_run": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_environment": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_event_handler": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_force_task_1": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_force_task_2": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_image_manifest": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_invalid_patch": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_invalid_recipe_src_uri": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_just_parse": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_local_sstate": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_non_gplv3": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_postfile": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_prefile": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_rename_downloaded_file": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_run_bitbake_from_dir_1": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_run_bitbake_from_dir_2": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_run_bitbake_from_dir_3": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_setscene_only": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_skip_setscene": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_version": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_warnings_errors": {
                "status": "PASSED"
            },
            "buildoptions.ArchiverTest.test_arch_work_dir_and_export_source": {
                "status": "PASSED"
            },
            "buildoptions.BuildhistoryTests.test_buildhistory_basic": {
                "status": "PASSED"
            },
            "buildoptions.BuildhistoryTests.test_buildhistory_buildtime_pr_backwards": {
                "status": "PASSED"
            },
            "buildoptions.DiskMonTest.test_stoptask_behavior": {
                "status": "PASSED"
            },
            "buildoptions.ImageOptionsTests.test_ccache_tool": {
                "status": "PASSED"
            },
            "buildoptions.ImageOptionsTests.test_incremental_image_generation": {
                "status": "PASSED"
            },
            "buildoptions.ImageOptionsTests.test_read_only_image": {
                "status": "PASSED"
            },
            "buildoptions.SanityOptionsTest.test_layer_without_git_dir": {
                "status": "PASSED"
            },
            "buildoptions.SanityOptionsTest.test_options_warnqa_errorqa_switch": {
                "status": "PASSED"
            },
            "buildoptions.SourceMirroring.test_yocto_source_mirror": {
                "log": "Skip by the command line argument \"buildoptions.SourceMirroring.test_yocto_source_mirror\"\n",
                "status": "SKIPPED"
            },
            "buildoptions.ToolchainOptions.test_toolchain_fortran": {
                "status": "PASSED"
            },
            "containerimage.ContainerImageTests.test_expected_files": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add_fetch": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add_fetch_git": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add_fetch_simple": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add_git_local": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add_library": {
                "status": "PASSED"
            },
            "devtool.DevtoolExtractTests.test_devtool_build_image": {
                "status": "PASSED"
            },
            "devtool.DevtoolExtractTests.test_devtool_deploy_target": {
                "status": "PASSED"
            },
            "devtool.DevtoolExtractTests.test_devtool_extract": {
                "status": "PASSED"
            },
            "devtool.DevtoolExtractTests.test_devtool_extract_virtual": {
                "status": "PASSED"
            },
            "devtool.DevtoolExtractTests.test_devtool_reset_all": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_buildclean": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify_git": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify_invalid": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify_localfiles": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify_native": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify_virtual": {
                "status": "PASSED"
            },
            "devtool.DevtoolTests.test_create_workspace": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_append": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_append_git": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_git": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_local_files": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_local_files_2": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_local_files_3": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_local_files_subdir": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_local_patch_gz": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_finish_modify_origlayer": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_finish_modify_otherlayer": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_finish_upgrade_origlayer": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_finish_upgrade_otherlayer": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_layer_plugins": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_load_plugin": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_rename": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_upgrade": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_upgrade_git": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_virtual_kernel_modify": {
                "status": "PASSED"
            },
            "distrodata.Distrodata.test_checkpkg": {
                "log": "Skip by the command line argument \"distrodata.Distrodata.test_checkpkg\"\n",
                "status": "SKIPPED"
            },
            "distrodata.Distrodata.test_maintainers": {
                "status": "PASSED"
            },
            "eSDK.oeSDKExtSelfTest.test_image_generation_binary_feeds": {
                "status": "PASSED"
            },
            "eSDK.oeSDKExtSelfTest.test_install_libraries_headers": {
                "status": "PASSED"
            },
            "efibootpartition.GenericEFITest.test_boot_efi": {
                "status": "PASSED"
            },
            "fetch.Fetch.test_git_mirrors": {
                "status": "PASSED"
            },
            "gotoolchain.oeGoToolchainSelfTest.test_go_dep_build": {
                "status": "PASSED"
            },
            "image_typedep.ImageTypeDepTests.test_conversion_typedep_added": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_all_users_can_connect_via_ssh_without_password": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_bmap": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_clutter_image_can_be_built": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_hypervisor_fmts": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_image_fstypes": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_long_chain_conversion": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_no_busybox_base_utils": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_non_root_user_can_connect_via_ssh_without_password": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_useradd_static": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_wayland_support_in_image": {
                "status": "PASSED"
            },
            "incompatible_lic.IncompatibleLicenseTests.test_incompatible_alias_spdx_license": {
                "status": "PASSED"
            },
            "incompatible_lic.IncompatibleLicenseTests.test_incompatible_alias_spdx_license_alias": {
                "status": "PASSED"
            },
            "incompatible_lic.IncompatibleLicenseTests.test_incompatible_nonspdx_license": {
                "status": "PASSED"
            },
            "incompatible_lic.IncompatibleLicenseTests.test_incompatible_spdx_license": {
                "status": "PASSED"
            },
            "incompatible_lic.IncompatibleLicenseTests.test_incompatible_spdx_license_alias": {
                "status": "PASSED"
            },
            "layerappend.LayerAppendTests.test_layer_appends": {
                "status": "PASSED"
            },
            "liboe.LibOE.test_copy_hardlink_tree_count": {
                "status": "PASSED"
            },
            "liboe.LibOE.test_copy_tree_special": {
                "status": "PASSED"
            },
            "liboe.LibOE.test_copy_tree_xattr": {
                "status": "PASSED"
            },
            "lic_checksum.LicenseTests.test_nonmatching_checksum": {
                "status": "PASSED"
            },
            "manifest.VerifyManifest.test_SDK_manifest_entries": {
                "status": "PASSED"
            },
            "manifest.VerifyManifest.test_image_manifest_entries": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_can_build_cpio_project": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_can_compile_c_program": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_had_installed_meta_ide_support": {
                "status": "PASSED"
            },
            "multiconfig.MultiConfig.test_multiconfig": {
                "status": "PASSED"
            },
            "oelib.buildhistory.TestBlobParsing.test_blob_to_dict": {
                "status": "PASSED"
            },
            "oelib.buildhistory.TestBlobParsing.test_compare_dict_blobs": {
                "status": "PASSED"
            },
            "oelib.buildhistory.TestBlobParsing.test_compare_dict_blobs_default": {
                "status": "PASSED"
            },
            "oelib.elf.TestElf.test_machine_name": {
                "status": "PASSED"
            },
            "oelib.license.TestComplexCombinations.test_tests": {
                "status": "PASSED"
            },
            "oelib.license.TestIsIncluded.test_tests": {
                "status": "PASSED"
            },
            "oelib.license.TestSimpleCombinations.test_tests": {
                "status": "PASSED"
            },
            "oelib.license.TestSingleLicense.test_invalid_licenses": {
                "status": "PASSED"
            },
            "oelib.license.TestSingleLicense.test_single_licenses": {
                "status": "PASSED"
            },
            "oelib.path.TestRealPath.test_loop": {
                "status": "PASSED"
            },
            "oelib.path.TestRealPath.test_norm": {
                "status": "PASSED"
            },
            "oelib.path.TestRealPath.test_phys": {
                "status": "PASSED"
            },
            "oelib.types.TestBooleanType.test_bool_equality": {
                "status": "PASSED"
            },
            "oelib.types.TestBooleanType.test_false": {
                "status": "PASSED"
            },
            "oelib.types.TestBooleanType.test_invalid": {
                "status": "PASSED"
            },
            "oelib.types.TestBooleanType.test_true": {
                "status": "PASSED"
            },
            "oelib.types.TestList.test_list_nosep": {
                "status": "PASSED"
            },
            "oelib.types.TestList.test_list_usersep": {
                "status": "PASSED"
            },
            "oelib.utils.TestMultiprocessLaunch.test_multiprocesslaunch": {
                "status": "PASSED"
            },
            "oelib.utils.TestPackagesFilterOutSystem.test_filter": {
                "status": "PASSED"
            },
            "oelib.utils.TestTrimVersion.test_num_exception": {
                "status": "PASSED"
            },
            "oelib.utils.TestTrimVersion.test_valid": {
                "status": "PASSED"
            },
            "oelib.utils.TestTrimVersion.test_version_exception": {
                "status": "PASSED"
            },
            "oescripts.BuildhistoryDiffTests.test_buildhistory_diff": {
                "status": "PASSED"
            },
            "oescripts.OEPybootchartguyTests.test_pybootchartguy_help": {
                "status": "PASSED"
            },
            "oescripts.OEPybootchartguyTests.test_pybootchartguy_to_generate_build_pdf_output": {
                "status": "PASSED"
            },
            "oescripts.OEPybootchartguyTests.test_pybootchartguy_to_generate_build_png_output": {
                "status": "PASSED"
            },
            "oescripts.OEPybootchartguyTests.test_pybootchartguy_to_generate_build_svg_output": {
                "status": "PASSED"
            },
            "package.PackageTests.test_gdb_hardlink_debug": {
                "status": "PASSED"
            },
            "package.PackageTests.test_preserve_sparse_hardlinks": {
                "status": "PASSED"
            },
            "package.VersionOrdering.test_dpkg": {
                "status": "PASSED"
            },
            "package.VersionOrdering.test_opkg": {
                "status": "PASSED"
            },
            "package.VersionOrdering.test_rpm": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_find_path": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_glob": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_list_pkg_files": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_list_pkgs": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_lookup_pkg": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_lookup_recipe": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_read_value": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_specify_pkgdatadir": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_import_export_override_db": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_import_export_replace_db": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_deb_arch_dep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_deb_arch_indep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_ipk_arch_dep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_ipk_arch_indep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_rpm_arch_dep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_rpm_arch_indep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_stopping_prservice_message": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_basic": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_basic_wildcard": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_existing_in_src_uri": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_existing_in_src_uri_diff_params": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_replace_file_srcdir": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_srcdir_basic": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_subdir_basic": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_subdir_basic_dirdest": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfiles_basic": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfiles_basic_subdir": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_add": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_add_bindir": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_add_machine": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_alternatives": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_basic": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_binary": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_extlayer": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_inst_func": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_inst_glob": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_inst_todir_glob": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_invalid": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_orig": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_patch": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_postinstall": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_renamed": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_script": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_src_glob": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_subdir": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_todir": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_wildcard": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_cmake": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_git": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_git_http": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_github": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_github_tarball": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_python3_distutils": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_python3_setuptools": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_simple": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_load_plugin": {
                "status": "PASSED"
            },
            "recipeutils.RecipeUtilsTests.test_patch_recipe_appends": {
                "status": "PASSED"
            },
            "recipeutils.RecipeUtilsTests.test_patch_recipe_singleappend": {
                "status": "PASSED"
            },
            "recipeutils.RecipeUtilsTests.test_patch_recipe_varflag": {
                "status": "PASSED"
            },
            "recipeutils.RecipeUtilsTests.test_split_var_value": {
                "status": "PASSED"
            },
            "recipeutils.RecipeUtilsTests.test_validate_pn": {
                "status": "PASSED"
            },
            "reproducible.ReproducibleTests.test_reproducible_builds": {
                "log": "Reproducible builds do not yet pass\n",
                "status": "SKIPPED"
            },
            "resulttooltests.ResultToolTests.test_merge_can_merged_results": {
                "status": "PASSED"
            },
            "resulttooltests.ResultToolTests.test_regression_can_get_regression_base_target_pair": {
                "status": "PASSED"
            },
            "resulttooltests.ResultToolTests.test_regrresion_can_get_regression_result": {
                "status": "PASSED"
            },
            "resulttooltests.ResultToolTests.test_report_can_aggregate_test_result": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_list_not_found": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_list_okay": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_log": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_log_split": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_no_shell": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_output": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_output_split": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_result_assertion": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_result_exception": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_result_false": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_result_okay": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_shell": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_stdin": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_stdin_timeout": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_timeout": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_timeout_split": {
                "status": "PASSED"
            },
            "runqemu.QemuTest.test_qemu_can_shutdown": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy_hddimg": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_ext4": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_iso": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp_qcow2": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 114, in test_boot_machine_slirp_qcow2\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib64/python3.7/contextlib.py\", line 112, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13816/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13816/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723004816:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13816/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723004816\nINFO: SSH log file: /home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13816/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723004816\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:43789\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:39837\nDEBUG: launchcmd=runqemu nographic kvm slirp wic.qcow2 qemux86-64 tcpserial=43789:39837 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_13816\"\nDEBUG: runqemu started, pid is 17524\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 00:48:21)\nDEBUG: qemu started in 3.508289337158203 seconds - qemu procces pid is 19664 (07/23/19 00:48:24)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running MACHINE=qemux86-64 bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Port forward: hostfwd=tcp::2222-:22 hostfwd=tcp::2323-:23\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13816/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:35:02 -netdev user,id=net0,hostfwd=tcp::2222-:22,hostfwd=tcp::2323-:23,tftp=/home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13816/tmp/deploy/images/qemux86-64 -drive file=/home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13816/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64-20190723004132.rootfs.wic.qcow2,if=virtio,format=qcow2 -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:43789 -serial tcp:127.0.0.1:39837  -pidfile pidfile_13816 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 00:48:24)\nDEBUG: Connection from 127.0.0.1:37288\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 01:05:05)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J[0mk\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13816/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723004816\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13816/tmp/log/runtime-hostdump/201907230105_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_qemu_boot": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vdi": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 85, in test_boot_recipe_image_vdi\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib64/python3.7/contextlib.py\", line 112, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13816/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13816/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723010550:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13816/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723010550\nINFO: SSH log file: /home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13816/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723010550\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:46281\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:41247\nDEBUG: launchcmd=runqemu nographic kvm core-image-minimal wic.vdi tcpserial=46281:41247 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_13816\"\nDEBUG: runqemu started, pid is 48931\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 01:05:54)\nDEBUG: qemu started in 2.503338098526001 seconds - qemu procces pid is 5515 (07/23/19 01:05:57)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Acquiring lockfile /tmp/qemu-tap-locks/tap0.lock failed: [Errno 11] Resource temporarily unavailable\nrunqemu - INFO - Using preconfigured tap device tap1\nrunqemu - INFO - If this is not intended, touch /tmp/qemu-tap-locks/tap1.skip to make runqemu skip tap1.\nrunqemu - INFO - Network configuration: 192.168.7.4::192.168.7.3:255.255.255.0\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13816/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:34:04 -netdev tap,id=net0,ifname=tap1,script=no,downscript=no -drive file=/home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13816/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.wic.vdi,if=virtio,format=vdi -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:46281 -serial tcp:127.0.0.1:41247  -pidfile pidfile_13816 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 01:05:57)\nDEBUG: Connection from 127.0.0.1:55130\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 01:22:38)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nk\nc[?7l[2J\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13816/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723010550\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13816/tmp/log/runtime-hostdump/201907230122_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vmdk": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 78, in test_boot_recipe_image_vmdk\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib64/python3.7/contextlib.py\", line 112, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13816/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13816/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723012242:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13816/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723012242\nINFO: SSH log file: /home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13816/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723012242\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:50481\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:42539\nDEBUG: launchcmd=runqemu nographic kvm core-image-minimal wic.vmdk tcpserial=50481:42539 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_13816\"\nDEBUG: runqemu started, pid is 10296\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 01:22:45)\nDEBUG: qemu started in 2.002706527709961 seconds - qemu procces pid is 11132 (07/23/19 01:22:47)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Acquiring lockfile /tmp/qemu-tap-locks/tap0.lock failed: [Errno 11] Resource temporarily unavailable\nrunqemu - INFO - Using preconfigured tap device tap1\nrunqemu - INFO - If this is not intended, touch /tmp/qemu-tap-locks/tap1.skip to make runqemu skip tap1.\nrunqemu - INFO - Network configuration: 192.168.7.4::192.168.7.3:255.255.255.0\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13816/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:34:04 -netdev tap,id=net0,ifname=tap1,script=no,downscript=no -drive file=/home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13816/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.wic.vmdk,if=virtio,format=vmdk -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:50481 -serial tcp:127.0.0.1:42539  -pidfile pidfile_13816 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 01:22:47)\nDEBUG: Connection from 127.0.0.1:51830\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 01:39:28)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J[0mk\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13816/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723012242\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13816/tmp/log/runtime-hostdump/201907230139_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_rootfs": {
                "status": "PASSED"
            },
            "runtime_test.Postinst.test_failing_postinst": {
                "status": "PASSED"
            },
            "runtime_test.Postinst.test_postinst_rootfs_and_boot": {
                "status": "PASSED"
            },
            "runtime_test.TestExport.test_testexport_basic": {
                "status": "PASSED"
            },
            "runtime_test.TestExport.test_testexport_sdk": {
                "status": "PASSED"
            },
            "runtime_test.TestImage.test_testimage_dnf": {
                "status": "PASSED"
            },
            "runtime_test.TestImage.test_testimage_install": {
                "status": "PASSED"
            },
            "runtime_test.TestImage.test_testimage_virgl_gtk": {
                "status": "PASSED"
            },
            "runtime_test.TestImage.test_testimage_virgl_headless": {
                "log": "/dev/dri directory does not exist; no render nodes available on this machine.\n",
                "status": "SKIPPED"
            },
            "selftest.ExternalLayer.test_list_imported": {
                "status": "PASSED"
            },
            "signing.LockedSignatures.test_locked_signatures": {
                "status": "PASSED"
            },
            "signing.Signing.test_signing_packages": {
                "status": "PASSED"
            },
            "signing.Signing.test_signing_sstate_archive": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_autorev_sstate_works": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_cleansstate_task_distro_nonspecific": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_cleansstate_task_distro_specific": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_cleansstate_task_distro_specific_nonspecific": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_rebuild_distro_specific_sstate_cross_native_targets": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_rebuild_distro_specific_sstate_cross_target": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_rebuild_distro_specific_sstate_native_target": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_32_64_same_hash": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_allarch_samesigs": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_cache_management_script_using_machine": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_cache_management_script_using_pr_1": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_cache_management_script_using_pr_2": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_cache_management_script_using_pr_3": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_creation_distro_nonspecific_fail": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_creation_distro_nonspecific_pass": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_creation_distro_specific_fail": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_creation_distro_specific_pass": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_nativelsbstring_same_hash": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_nativesdk_samesigs_multilib": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_noop_samesigs": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_sametune_samesigs": {
                "status": "PASSED"
            },
            "systemd_boot.Systemdboot.test_efi_systemdboot_images_can_be_built": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_datastore_operations": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_expand": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_getvar": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_getvar_bb_origenv": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_list_recipes": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_parse_recipe": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_parse_recipe_copy_expand": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_parse_recipe_initial_datastore": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_setvariable_clean": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_variable_history": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_wait_event": {
                "status": "PASSED"
            },
            "wic.Wic.test_bootloader_config": {
                "status": "PASSED"
            },
            "wic.Wic.test_build_artifacts": {
                "status": "PASSED"
            },
            "wic.Wic.test_build_image_name": {
                "status": "PASSED"
            },
            "wic.Wic.test_build_rootfs_long": {
                "status": "PASSED"
            },
            "wic.Wic.test_build_rootfs_short": {
                "status": "PASSED"
            },
            "wic.Wic.test_compress_bzip2": {
                "status": "PASSED"
            },
            "wic.Wic.test_compress_gzip": {
                "status": "PASSED"
            },
            "wic.Wic.test_compress_xz": {
                "status": "PASSED"
            },
            "wic.Wic.test_createhelp": {
                "status": "PASSED"
            },
            "wic.Wic.test_debug_long": {
                "status": "PASSED"
            },
            "wic.Wic.test_debug_short": {
                "status": "PASSED"
            },
            "wic.Wic.test_default_output_dir": {
                "status": "PASSED"
            },
            "wic.Wic.test_exclude_path": {
                "status": "PASSED"
            },
            "wic.Wic.test_exclude_path_errors": {
                "status": "PASSED"
            },
            "wic.Wic.test_gpt_image": {
                "status": "PASSED"
            },
            "wic.Wic.test_help": {
                "status": "PASSED"
            },
            "wic.Wic.test_help_create": {
                "status": "PASSED"
            },
            "wic.Wic.test_help_kickstart": {
                "status": "PASSED"
            },
            "wic.Wic.test_help_list": {
                "status": "PASSED"
            },
            "wic.Wic.test_help_overview": {
                "status": "PASSED"
            },
            "wic.Wic.test_help_plugins": {
                "status": "PASSED"
            },
            "wic.Wic.test_iso_image": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/lib/oeqa/selftest/cases/wic.py\", line 42, in wrapped_f\n    return func(*args, **kwargs)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/lib/oeqa/selftest/cases/wic.py\", line 170, in test_iso_image\n    bitbake('core-image-minimal core-image-minimal-initramfs')\n  File \"/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/lib/oeqa/utils/commands.py\", line 218, in bitbake\n    return runCmd(cmd, ignore_status, timeout, output_log=output_log, **options)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/lib/oeqa/utils/commands.py\", line 196, in runCmd\n    raise AssertionError(\"Command '%s' returned non-zero exit status %d:\\n%s\" % (command, result.status, exc_output))\nAssertionError: Command 'bitbake  core-image-minimal core-image-minimal-initramfs' returned non-zero exit status 1:\nParsing recipes...done.\nParsing of 823 .bb files complete (0 cached, 823 parsed). 1355 targets, 48 skipped, 0 masked, 0 errors.\nNOTE: Resolving any missing task queue dependencies\n\nBuild Configuration:\nBB_VERSION           = \"1.43.0\"\nBUILD_SYS            = \"x86_64-linux\"\nNATIVELSBSTRING      = \"universal\"\nTARGET_SYS           = \"x86_64-poky-linux\"\nMACHINE              = \"qemux86-64\"\nDISTRO               = \"poky\"\nDISTRO_VERSION       = \"2.7+snapshot-20190723\"\nTUNE_FEATURES        = \"m64 core2\"\nTARGET_FPU           = \"\"\nmeta                 \nmeta-poky            \nmeta-yocto-bsp       = \"master-next:96c3c88f021fed2bc017db2a9486b06ce609b140\"\nmeta-selftest        = \"master:bdb86b546718ae02d018453ba7cc49c2baf438cb\"\n\nInitialising tasks...done.\nSstate summary: Wanted 162 Found 149 Missed 13 Current 779 (91% match, 98% complete)\nNOTE: Executing Tasks\nNOTE: Running setscene task 788 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/images/core-image-minimal-initramfs.bb:do_populate_lic_setscene)\nNOTE: Running setscene task 792 of 945 (virtual:native:/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-extended/cpio/cpio_2.12.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 793 of 945 (virtual:native:/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-extended/cpio/cpio_2.12.bb:do_populate_lic_setscene)\nNOTE: Running setscene task 798 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/packagegroups/packagegroup-core-boot.bb:do_packagedata_setscene)\nNOTE: Running setscene task 800 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 801 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb:do_package_qa_setscene)\nNOTE: Running setscene task 802 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb:do_package_write_rpm_setscene)\nNOTE: Running setscene task 803 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb:do_populate_lic_setscene)\nNOTE: Running setscene task 804 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 805 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb:do_package_qa_setscene)\nNOTE: Running setscene task 806 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb:do_package_write_rpm_setscene)\nNOTE: Running setscene task 807 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb:do_populate_lic_setscene)\nNOTE: Running setscene task 808 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 809 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb:do_package_qa_setscene)\nNOTE: Running setscene task 810 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb:do_package_write_rpm_setscene)\nNOTE: Running setscene task 811 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb:do_populate_lic_setscene)\nNOTE: recipe initramfs-module-install-1.0-r1: task do_populate_sysroot_setscene: Started\nNOTE: recipe initramfs-module-install-1.0-r1: task do_package_qa_setscene: Started\nNOTE: recipe initramfs-module-install-1.0-r1: task do_populate_lic_setscene: Started\nNOTE: recipe cpio-native-2.12-r0: task do_populate_lic_setscene: Started\nNOTE: recipe initramfs-module-install-1.0-r1: task do_package_write_rpm_setscene: Started\nNOTE: recipe cpio-native-2.12-r0: task do_populate_sysroot_setscene: Started\nNOTE: recipe initramfs-module-install-1.0-r1: task do_package_qa_setscene: Succeeded\nNOTE: Running setscene task 812 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb:do_populate_sysroot_setscene)\nNOTE: recipe initramfs-module-install-1.0-r1: task do_populate_sysroot_setscene: Succeeded\nNOTE: Running setscene task 813 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb:do_package_qa_setscene)\nNOTE: recipe initramfs-framework-1.0-r4: task do_package_qa_setscene: Started\nNOTE: recipe initramfs-framework-1.0-r4: task do_package_write_rpm_setscene: Started\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_populate_sysroot_setscene: Started\nNOTE: recipe initramfs-framework-1.0-r4: task do_populate_sysroot_setscene: Started\nNOTE: recipe cpio-native-2.12-r0: task do_populate_lic_setscene: Succeeded\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_package_qa_setscene: Started\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_package_write_rpm_setscene: Started\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_populate_lic_setscene: Started\nNOTE: Running setscene task 814 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb:do_package_write_rpm_setscene)\nNOTE: recipe initramfs-module-install-1.0-r1: task do_populate_lic_setscene: Succeeded\nNOTE: Running setscene task 815 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb:do_populate_lic_setscene)\nNOTE: recipe initramfs-module-install-1.0-r1: task do_package_write_rpm_setscene: Succeeded\nNOTE: Running setscene task 816 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb:do_packagedata_setscene)\nNOTE: recipe initramfs-framework-1.0-r4: task do_populate_lic_setscene: Started\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_populate_lic_setscene: Started\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_populate_sysroot_setscene: Started\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_package_qa_setscene: Started\nNOTE: recipe initramfs-framework-1.0-r4: task do_package_qa_setscene: Succeeded\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_package_write_rpm_setscene: Started\nNOTE: Running setscene task 842 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-bsp/grub/grub-efi_2.02.bb:do_package_qa_setscene)\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_package_qa_setscene: Succeeded\nNOTE: recipe initramfs-framework-1.0-r4: task do_package_write_rpm_setscene: Succeeded\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_populate_lic_setscene: Started\nNOTE: Running setscene task 843 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-bsp/grub/grub-efi_2.02.bb:do_populate_lic_setscene)\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_package_qa_setscene: Succeeded\nNOTE: Running setscene task 844 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/udev/udev-extraconf_1.1.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 845 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/udev/udev-extraconf_1.1.bb:do_package_qa_setscene)\nNOTE: recipe initramfs-framework-1.0-r4: task do_populate_lic_setscene: Succeeded\nNOTE: recipe initramfs-module-install-1.0-r1: task do_packagedata_setscene: Started\nNOTE: Running setscene task 846 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/udev/udev-extraconf_1.1.bb:do_package_write_rpm_setscene)\nNOTE: Running setscene task 847 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/udev/udev-extraconf_1.1.bb:do_populate_lic_setscene)\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_populate_lic_setscene: Succeeded\nNOTE: recipe initramfs-framework-1.0-r4: task do_populate_sysroot_setscene: Succeeded\nNOTE: Running setscene task 848 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-extended/parted/parted_3.2.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 849 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-extended/parted/parted_3.2.bb:do_package_qa_setscene)\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_populate_lic_setscene: Succeeded\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_package_write_rpm_setscene: Succeeded\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_populate_sysroot_setscene: Succeeded\nNOTE: Running setscene task 850 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-extended/parted/parted_3.2.bb:do_package_write_rpm_setscene)\nNOTE: Running setscene task 851 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb:do_packagedata_setscene)\nNOTE: Running setscene task 852 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-extended/parted/parted_3.2.bb:do_populate_lic_setscene)\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_package_write_rpm_setscene: Succeeded\nNOTE: Running setscene task 853 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb:do_packagedata_setscene)\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_populate_lic_setscene: Succeeded\nNOTE: Running setscene task 854 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb:do_packagedata_setscene)\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_packagedata_setscene: Started\nNOTE: recipe initramfs-framework-1.0-r4: task do_packagedata_setscene: Started\nNOTE: recipe cpio-native-2.12-r0: task do_populate_sysroot_setscene: Succeeded\nNOTE: Running setscene task 855 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-bsp/grub/grub_2.02.bb:do_populate_sysroot_setscene)\nNOTE: recipe udev-extraconf-1.1-r0: task do_populate_lic_setscene: Started\nNOTE: recipe udev-extraconf-1.1-r0: task do_package_qa_setscene: Started\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_packagedata_setscene: Started\nNOTE: recipe parted-3.2-r1: task do_populate_lic_setscene: Started\nNOTE: recipe parted-3.2-r1: task do_package_qa_setscene: Started\nNOTE: recipe udev-extraconf-1.1-r0: task do_package_write_rpm_setscene: Started\nNOTE: recipe udev-extraconf-1.1-r0: task do_populate_sysroot_setscene: Started\nNOTE: recipe parted-3.2-r1: task do_package_write_rpm_setscene: Started\nNOTE: recipe parted-3.2-r1: task do_populate_sysroot_setscene: Started\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_packagedata_setscene: Started\nNOTE: recipe udev-extraconf-1.1-r0: task do_package_qa_setscene: Succeeded\nNOTE: recipe parted-3.2-r1: task do_package_qa_setscene: Succeeded\nNOTE: Running setscene task 856 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-bsp/grub/grub_2.02.bb:do_package_qa_setscene)\nNOTE: recipe udev-extraconf-1.1-r0: task do_populate_sysroot_setscene: Succeeded\nNOTE: Running setscene task 857 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-bsp/grub/grub_2.02.bb:do_populate_lic_setscene)\nNOTE: Running setscene task 858 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_populate_sysroot_setscene)\nNOTE: recipe udev-extraconf-1.1-r0: task do_package_write_rpm_setscene: Succeeded\nNOTE: recipe udev-extraconf-1.1-r0: task do_populate_lic_setscene: Succeeded\nNOTE: Running setscene task 859 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_package_qa_setscene)\nNOTE: recipe parted-3.2-r1: task do_populate_lic_setscene: Succeeded\nNOTE: Running setscene task 860 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/udev/udev-extraconf_1.1.bb:do_packagedata_setscene)\nNOTE: Running setscene task 861 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_package_write_rpm_setscene)\nNOTE: recipe parted-3.2-r1: task do_package_write_rpm_setscene: Succeeded\nNOTE: Running setscene task 862 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-extended/parted/parted_3.2.bb:do_packagedata_setscene)\nNOTE: recipe dosfstools-4.1-r0: task do_populate_sysroot_setscene: Started\nNOTE: recipe dosfstools-4.1-r0: task do_package_qa_setscene: Started\nNOTE: recipe dosfstools-4.1-r0: task do_package_write_rpm_setscene: Started\nNOTE: recipe udev-extraconf-1.1-r0: task do_packagedata_setscene: Started\nNOTE: recipe parted-3.2-r1: task do_packagedata_setscene: Started\nNOTE: recipe dosfstools-4.1-r0: task do_package_qa_setscene: Succeeded\nNOTE: Running setscene task 863 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_populate_lic_setscene)\nNOTE: recipe parted-3.2-r1: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe grub-efi-2.02-r0: task do_populate_lic_setscene: Started\nNOTE: recipe grub-efi-2.02-r0: task do_package_qa_setscene: Started\nNOTE: recipe dosfstools-4.1-r0: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe dosfstools-4.1-r0: task do_package_write_rpm_setscene: Succeeded\nNOTE: Running setscene task 870 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_packagedata_setscene)\nNOTE: Running setscene task 894 of 945 (virtual:native:/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-bsp/grub/grub-efi_2.02.bb:do_populate_lic_setscene)\nNOTE: Running setscene task 912 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-graphics/freetype/freetype_2.10.1.bb:do_package_qa_setscene)\nNOTE: recipe grub-efi-2.02-r0: task do_package_qa_setscene: Succeeded\nNOTE: Running setscene task 914 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-graphics/freetype/freetype_2.10.1.bb:do_populate_lic_setscene)\nNOTE: recipe grub-efi-2.02-r0: task do_populate_lic_setscene: Succeeded\nNOTE: Running setscene task 915 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-bsp/grub/grub-bootconf_1.00.bb:do_populate_sysroot_setscene)\nNOTE: recipe dosfstools-4.1-r0: task do_packagedata_setscene: Started\nNOTE: recipe dosfstools-4.1-r0: task do_populate_lic_setscene: Started\nNOTE: recipe grub-2.02-r0: task do_populate_sysroot_setscene: Started\nNOTE: recipe grub-2.02-r0: task do_package_qa_setscene: Started\nNOTE: recipe grub-2.02-r0: task do_populate_lic_setscene: Started\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_packagedata_setscene: Succeeded\nNOTE: recipe dosfstools-4.1-r0: task do_populate_lic_setscene: Succeeded\nNOTE: Running setscene task 916 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-bsp/grub/grub-bootconf_1.00.bb:do_package_qa_setscene)\nNOTE: Running setscene task 918 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-bsp/grub/grub-bootconf_1.00.bb:do_populate_lic_setscene)\nNOTE: recipe grub-2.02-r0: task do_package_qa_setscene: Succeeded\nNOTE: recipe grub-2.02-r0: task do_populate_lic_setscene: Succeeded\nNOTE: recipe grub-2.02-r0: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe grub-bootconf-1.00-r0: task do_package_qa_setscene: Started\nNOTE: recipe grub-bootconf-1.00-r0: task do_populate_sysroot_setscene: Started\nNOTE: recipe grub-bootconf-1.00-r0: task do_populate_lic_setscene: Started\nNOTE: recipe grub-efi-native-2.02-r0: task do_populate_lic_setscene: Started\nNOTE: recipe freetype-2.10.1-r0: task do_populate_lic_setscene: Started\nNOTE: recipe freetype-2.10.1-r0: task do_package_qa_setscene: Started\nNOTE: recipe grub-bootconf-1.00-r0: task do_package_qa_setscene: Succeeded\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_packagedata_setscene: Succeeded\nNOTE: recipe grub-efi-native-2.02-r0: task do_populate_lic_setscene: Succeeded\nNOTE: recipe freetype-2.10.1-r0: task do_package_qa_setscene: Succeeded\nNOTE: recipe grub-bootconf-1.00-r0: task do_populate_lic_setscene: Succeeded\nNOTE: recipe grub-bootconf-1.00-r0: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe freetype-2.10.1-r0: task do_populate_lic_setscene: Succeeded\nNOTE: recipe initramfs-module-install-1.0-r1: task do_packagedata_setscene: Succeeded\nNOTE: recipe initramfs-framework-1.0-r4: task do_packagedata_setscene: Succeeded\nNOTE: recipe udev-extraconf-1.1-r0: task do_packagedata_setscene: Succeeded\nNOTE: recipe dosfstools-4.1-r0: task do_packagedata_setscene: Succeeded\nNOTE: Running task 676 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_fetch)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_fetch: Started\nNOTE: recipe parted-3.2-r1: task do_packagedata_setscene: Succeeded\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_packagedata_setscene: Succeeded\nNOTE: Running setscene task 945 of 945 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/packagegroups/packagegroup-core-boot.bb:do_package_setscene)\nNOTE: Running noexec task 2085 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/images/core-image-minimal-initramfs.bb:do_fetch)\nNOTE: Running task 2493 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/images/core-image-minimal-initramfs.bb:do_prepare_recipe_sysroot)\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_package_setscene: Started\nNOTE: Running noexec task 2689 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-graphics/freetype/freetype_2.10.1.bb:do_build)\nNOTE: Running noexec task 2852 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-bsp/grub/grub-bootconf_1.00.bb:do_build)\nNOTE: Running noexec task 2853 of 2988 (virtual:native:/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-bsp/grub/grub-efi_2.02.bb:do_build)\nNOTE: Running noexec task 2855 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_build)\nNOTE: Running noexec task 2861 of 2988 (virtual:native:/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-extended/cpio/cpio_2.12.bb:do_build)\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_prepare_recipe_sysroot: Started\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_package_setscene: Succeeded\nNOTE: Setscene tasks completed\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_prepare_recipe_sysroot: Succeeded\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_fetch: Succeeded\nNOTE: Running task 2869 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_unpack)\nNOTE: Running task 2870 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_prepare_recipe_sysroot)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_unpack: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_prepare_recipe_sysroot: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_prepare_recipe_sysroot: Succeeded\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_unpack: Succeeded\nNOTE: Running task 2871 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_kernel_checkout)\nNOTE: Running task 2872 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_symlink_kernsrc)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_kernel_checkout: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_symlink_kernsrc: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_symlink_kernsrc: Succeeded\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_kernel_checkout: Succeeded\nNOTE: Running task 2873 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_validate_branches)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_validate_branches: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_validate_branches: Succeeded\nNOTE: Running task 2874 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_kernel_metadata)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_kernel_metadata: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_kernel_metadata: Succeeded\nNOTE: Running task 2875 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_patch)\nNOTE: Running task 2876 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_kernel_version_sanity_check)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_patch: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_kernel_version_sanity_check: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_patch: Succeeded\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_kernel_version_sanity_check: Succeeded\nNOTE: Running task 2877 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_kernel_configme)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_kernel_configme: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_kernel_configme: Succeeded\nNOTE: Running task 2879 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_configure)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_configure: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_configure: Succeeded\nNOTE: Running task 2880 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_kernel_configcheck)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_kernel_configcheck: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_kernel_configcheck: Succeeded\nNOTE: Running task 2881 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_compile)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_compile: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_compile: Succeeded\nNOTE: Running task 2882 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_shared_workdir)\nNOTE: Running task 2883 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_kernel_link_images)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_shared_workdir: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_kernel_link_images: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_kernel_link_images: Succeeded\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_shared_workdir: Succeeded\nNOTE: Running task 2884 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_compile_kernelmodules)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_compile_kernelmodules: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_compile_kernelmodules: Succeeded\nNOTE: Running task 2885 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_strip)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_strip: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_strip: Succeeded\nNOTE: Running task 2886 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_sizecheck)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_sizecheck: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_sizecheck: Succeeded\nNOTE: Running task 2887 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_install)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_install: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_install: Succeeded\nNOTE: Running task 2888 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_package)\nNOTE: Running task 2889 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_populate_sysroot)\nNOTE: Running task 2890 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_bundle_initramfs)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_package: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_populate_sysroot: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_bundle_initramfs: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_bundle_initramfs: Succeeded\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_populate_sysroot: Succeeded\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_package: Succeeded\nNOTE: Running task 2896 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_packagedata)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_packagedata: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_packagedata: Succeeded\nNOTE: Running task 2898 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_package_write_rpm)\nNOTE: Running task 2903 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_deploy)\nNOTE: Running task 2909 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_package_qa)\nNOTE: Running task 2912 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/packagegroups/packagegroup-core-boot.bb:do_package_write_rpm)\nNOTE: Running task 2913 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/packagegroups/packagegroup-core-boot.bb:do_package_qa)\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_package_qa: Started\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_package_write_rpm: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_deploy: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_package_qa: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_package_write_rpm: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_deploy: Succeeded\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_package_qa: Succeeded\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_package_write_rpm: Succeeded\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_package_qa: Succeeded\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_package_write_rpm: Succeeded\nNOTE: Running task 2914 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/images/core-image-minimal.bb:do_rootfs)\nNOTE: Running task 2915 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/images/core-image-minimal-initramfs.bb:do_rootfs)\nNOTE: Running noexec task 2916 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-support/shared-mime-info/shared-mime-info_1.10.bb:do_build)\nNOTE: Running noexec task 2917 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-support/gnome-desktop-testing/gnome-desktop-testing_2018.1.bb:do_build)\nNOTE: Running noexec task 2918 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-devtools/libtool/libtool_2.4.6.bb:do_build)\nNOTE: Running noexec task 2919 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/glib-2.0/glib-2.0_2.60.5.bb:do_build)\nNOTE: Running noexec task 2920 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/libxml/libxml2_2.9.9.bb:do_build)\nNOTE: Running noexec task 2921 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-extended/gawk/gawk_5.0.1.bb:do_build)\nNOTE: Running noexec task 2922 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-support/ca-certificates/ca-certificates_20190110.bb:do_build)\nNOTE: Running noexec task 2923 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-extended/unzip/unzip_6.0.bb:do_build)\nNOTE: Running noexec task 2924 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/dbus/dbus-test_1.12.16.bb:do_build)\nNOTE: Running noexec task 2925 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-support/libpcre/libpcre_8.43.bb:do_build)\nNOTE: Running noexec task 2926 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-connectivity/openssl/openssl_1.1.1c.bb:do_build)\nNOTE: Running noexec task 2928 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-devtools/elfutils/elfutils_0.176.bb:do_build)\nNOTE: Running noexec task 2929 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-support/libcheck/libcheck_0.12.0.bb:do_build)\nNOTE: Running noexec task 2930 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/readline/readline_8.0.bb:do_build)\nNOTE: Running noexec task 2931 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-devtools/python/python3_3.7.4.bb:do_build)\nNOTE: Running noexec task 2932 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-extended/which/which_2.21.bb:do_build)\nNOTE: Running noexec task 2934 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-extended/bc/bc_1.07.1.bb:do_build)\nNOTE: Running noexec task 2935 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-extended/grep/grep_3.3.bb:do_build)\nNOTE: Running noexec task 2936 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.1.1.bb:do_build)\nNOTE: Running noexec task 2937 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-connectivity/socat/socat_1.7.3.3.bb:do_build)\nNOTE: Running noexec task 2938 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-connectivity/iproute2/iproute2_5.2.0.bb:do_build)\nNOTE: Running noexec task 2939 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-extended/diffutils/diffutils_3.7.bb:do_build)\nNOTE: Running noexec task 2940 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-extended/bzip2/bzip2_1.0.8.bb:do_build)\nNOTE: Running noexec task 2941 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-extended/procps/procps_3.3.15.bb:do_build)\nNOTE: Running noexec task 2942 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/coreutils/coreutils_8.31.bb:do_build)\nNOTE: Running noexec task 2943 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-extended/sed/sed_4.2.2.bb:do_build)\nNOTE: Running noexec task 2944 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/systemd/systemd-compat-units.bb:do_build)\nNOTE: Running noexec task 2945 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/kbd/kbd_2.0.4.bb:do_build)\nNOTE: Running noexec task 2946 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-extended/bash/bash_5.0.bb:do_build)\nNOTE: Running noexec task 2947 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/dbus/dbus_1.12.16.bb:do_build)\nNOTE: Running noexec task 2948 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-bsp/grub/grub_2.02.bb:do_build)\nNOTE: Running noexec task 2949 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-support/attr/attr_2.4.47.bb:do_build)\nNOTE: Running noexec task 2950 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-support/gdbm/gdbm_1.18.1.bb:do_build)\nNOTE: Running noexec task 2951 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/kmod/kmod_git.bb:do_build)\nNOTE: Running noexec task 2952 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-support/bash-completion/bash-completion_2.9.bb:do_build)\nNOTE: Running noexec task 2953 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-extended/xz/xz_5.2.4.bb:do_build)\nNOTE: Running noexec task 2954 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-support/attr/acl_2.2.52.bb:do_build)\nNOTE: Running noexec task 2955 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-extended/shadow/shadow_4.6.bb:do_build)\nNOTE: Running noexec task 2956 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-devtools/opkg-utils/opkg-utils_0.4.1.bb:do_build)\nNOTE: Running noexec task 2957 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/ncurses/ncurses_6.1+20181013.bb:do_build)\nNOTE: Running noexec task 2959 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.44.5.bb:do_build)\nNOTE: Running noexec task 2960 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-devtools/perl/perl_5.30.0.bb:do_build)\nNOTE: Running noexec task 2962 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/busybox/busybox_1.31.0.bb:do_build)\nNOTE: Running noexec task 2963 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_build)\nNOTE: Running noexec task 2964 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-extended/parted/parted_3.2.bb:do_build)\nNOTE: Running noexec task 2965 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/udev/udev-extraconf_1.1.bb:do_build)\nNOTE: Running noexec task 2966 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-bsp/grub/grub-efi_2.02.bb:do_build)\nNOTE: Running noexec task 2968 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb:do_build)\nNOTE: Running noexec task 2969 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb:do_build)\nNOTE: Running noexec task 2970 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb:do_build)\nNOTE: Running noexec task 2971 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb:do_build)\nNOTE: Running noexec task 2972 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/packagegroups/packagegroup-core-boot.bb:do_build)\nNOTE: Running noexec task 2973 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-devtools/syslinux/syslinux_6.04-pre2.bb:do_build)\nNOTE: recipe core-image-minimal-1.0-r0: task do_rootfs: Started\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_rootfs: Started\nERROR: core-image-minimal-1.0-r0 do_rootfs: The postinstall intercept hook 'update_udev_hwdb' failed, details in /home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13782/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/temp/log.do_rootfs\nERROR: core-image-minimal-1.0-r0 do_rootfs: \nERROR: core-image-minimal-1.0-r0 do_rootfs: Function failed: do_rootfs\nERROR: Logfile of failure stored in: /home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13782/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/temp/log.do_rootfs.2599\nNOTE: recipe core-image-minimal-1.0-r0: task do_rootfs: Failed\nERROR: Task (/home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/images/core-image-minimal.bb:do_rootfs) failed with exit code '1'\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_rootfs: Succeeded\nNOTE: Tasks Summary: Attempted 2973 tasks of which 2883 didn't need to be rerun and 1 failed.\nNOTE: The errors for this build are stored in /home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13782/tmp/log/error-report/error_report_20190723002605.txt\nYou can send the errors to a reports server by running:\n  send-error-report /home/pokybuild/yocto-worker/oe-selftest-fedora/build/build-st-13782/tmp/log/error-report/error_report_20190723002605.txt [-s server]\nNOTE: The contents of these logs will be posted in public if you use the above command with the default server. Please ensure you remove any identifying or proprietary information when prompted before sending.\n\nSummary: 1 task failed:\n  /home/pokybuild/yocto-worker/oe-selftest-fedora/build/meta/recipes-core/images/core-image-minimal.bb:do_rootfs\nSummary: There were 3 ERROR messages shown, returning a non-zero exit code.\n\n",
                "status": "FAILED"
            },
            "wic.Wic.test_list_images": {
                "status": "PASSED"
            },
            "wic.Wic.test_list_source_plugins": {
                "status": "PASSED"
            },
            "wic.Wic.test_listed_images_help": {
                "status": "PASSED"
            },
            "wic.Wic.test_listhelp": {
                "status": "PASSED"
            },
            "wic.Wic.test_mkefidisk": {
                "status": "PASSED"
            },
            "wic.Wic.test_no_command": {
                "status": "PASSED"
            },
            "wic.Wic.test_qemux86_directdisk": {
                "status": "PASSED"
            },
            "wic.Wic.test_rootfs_artifacts": {
                "status": "PASSED"
            },
            "wic.Wic.test_rootfs_indirect_recipes": {
                "status": "PASSED"
            },
            "wic.Wic.test_sdimage_bootpart": {
                "status": "PASSED"
            },
            "wic.Wic.test_skip_build_check_long": {
                "status": "PASSED"
            },
            "wic.Wic.test_skip_build_check_short": {
                "status": "PASSED"
            },
            "wic.Wic.test_systemd_bootdisk": {
                "status": "PASSED"
            },
            "wic.Wic.test_unsupported_subcommand": {
                "status": "PASSED"
            },
            "wic.Wic.test_version": {
                "status": "PASSED"
            },
            "wic.Wic.test_wrong_compressor": {
                "status": "PASSED"
            },
            "wic.Wic2.test_biosplusefi_plugin": {
                "status": "PASSED"
            },
            "wic.Wic2.test_biosplusefi_plugin_qemu": {
                "status": "PASSED"
            },
            "wic.Wic2.test_bmap_long": {
                "status": "PASSED"
            },
            "wic.Wic2.test_bmap_short": {
                "status": "PASSED"
            },
            "wic.Wic2.test_expand_mbr_image": {
                "status": "PASSED"
            },
            "wic.Wic2.test_fixed_size": {
                "status": "PASSED"
            },
            "wic.Wic2.test_fixed_size_error": {
                "status": "PASSED"
            },
            "wic.Wic2.test_fs_types": {
                "status": "PASSED"
            },
            "wic.Wic2.test_image_bootpart_globbed": {
                "status": "PASSED"
            },
            "wic.Wic2.test_image_env": {
                "status": "PASSED"
            },
            "wic.Wic2.test_image_vars_dir_long": {
                "status": "PASSED"
            },
            "wic.Wic2.test_image_vars_dir_short": {
                "status": "PASSED"
            },
            "wic.Wic2.test_kickstart_parser": {
                "status": "PASSED"
            },
            "wic.Wic2.test_mkfs_extraopts": {
                "status": "PASSED"
            },
            "wic.Wic2.test_qemu": {
                "status": "PASSED"
            },
            "wic.Wic2.test_qemu_efi": {
                "status": "PASSED"
            },
            "wic.Wic2.test_rawcopy_plugin": {
                "status": "PASSED"
            },
            "wic.Wic2.test_rawcopy_plugin_qemu": {
                "status": "PASSED"
            },
            "wic.Wic2.test_sparse_copy": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_cp": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_cp_ext": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_image_type": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_ls": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_ls_ext": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_rm": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_rm_ext": {
                "status": "PASSED"
            }
        }
    },
    "oeselftest_opensuse-42.3_qemumips64_20190723023629": {
        "configuration": {
            "HOST_DISTRO": "opensuse-42.3",
            "HOST_NAME": "opensuse423-ty-1",
            "LAYERS": {
                "meta": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-poky": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-selftest": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-yocto-bsp": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                }
            },
            "MACHINE": "qemumips64",
            "STARTTIME": "20190723023629",
            "TESTSERIES": "qemumips64",
            "TEST_TYPE": "oeselftest"
        },
        "result": {
            "meta_ide.MetaIDE.test_meta_ide_can_build_cpio_project": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_can_compile_c_program": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_had_installed_meta_ide_support": {
                "status": "PASSED"
            },
            "runqemu.QemuTest.test_qemu_can_shutdown": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy_hddimg": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_ext4": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_iso": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp_qcow2": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemumips64/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/qemumips64/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemumips64/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 114, in test_boot_machine_slirp_qcow2\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib64/python3.4/contextlib.py\", line 59, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/qemumips64/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/qemumips64/build/build-st-36182/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/qemumips64/build/build-st-36182/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723024028:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/qemumips64/build/build-st-36182/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723024028\nINFO: SSH log file: /home/pokybuild/yocto-worker/qemumips64/build/build-st-36182/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723024028\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:45061\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:59978\nDEBUG: launchcmd=runqemu nographic kvm slirp wic.qcow2 qemux86-64 tcpserial=45061:59978 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_36182\"\nDEBUG: runqemu started, pid is 46217\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 02:40:30)\nDEBUG: qemu started in 2.0035665035247803 seconds - qemu procces pid is 46235 (07/23/19 02:40:32)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running MACHINE=qemux86-64 bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Port forward: hostfwd=tcp::2222-:22 hostfwd=tcp::2323-:23\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/qemumips64/build/build-st-36182/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:35:02 -netdev user,id=net0,hostfwd=tcp::2222-:22,hostfwd=tcp::2323-:23,tftp=/home/pokybuild/yocto-worker/qemumips64/build/build-st-36182/tmp/deploy/images/qemux86-64 -drive file=/home/pokybuild/yocto-worker/qemumips64/build/build-st-36182/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64-20190723023700.rootfs.wic.qcow2,if=virtio,format=qcow2 -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:45061 -serial tcp:127.0.0.1:59978  -pidfile pidfile_36182 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 02:40:32)\nDEBUG: Connection from 127.0.0.1:34804\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 02:57:13)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/qemumips64/build/build-st-36182/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723024028\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/qemumips64/build/build-st-36182/tmp/log/runtime-hostdump/201907230257_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_qemu_boot": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vdi": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemumips64/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/qemumips64/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemumips64/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 85, in test_boot_recipe_image_vdi\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib64/python3.4/contextlib.py\", line 59, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/qemumips64/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/qemumips64/build/build-st-36182/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/qemumips64/build/build-st-36182/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723025747:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/qemumips64/build/build-st-36182/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723025747\nINFO: SSH log file: /home/pokybuild/yocto-worker/qemumips64/build/build-st-36182/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723025747\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:55719\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:55005\nDEBUG: launchcmd=runqemu nographic kvm core-image-minimal wic.vdi tcpserial=55719:55005 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_36182\"\nDEBUG: runqemu started, pid is 8024\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 02:57:49)\nDEBUG: qemu started in 2.0028882026672363 seconds - qemu procces pid is 8244 (07/23/19 02:57:51)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Using preconfigured tap device tap0\nrunqemu - INFO - If this is not intended, touch /tmp/qemu-tap-locks/tap0.skip to make runqemu skip tap0.\nrunqemu - INFO - Network configuration: 192.168.7.2::192.168.7.1:255.255.255.0\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/qemumips64/build/build-st-36182/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:34:02 -netdev tap,id=net0,ifname=tap0,script=no,downscript=no -drive file=/home/pokybuild/yocto-worker/qemumips64/build/build-st-36182/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.wic.vdi,if=virtio,format=vdi -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:55719 -serial tcp:127.0.0.1:55005  -pidfile pidfile_36182 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 02:57:51)\nDEBUG: Connection from 127.0.0.1:35250\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 03:14:32)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J[0mk\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/qemumips64/build/build-st-36182/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723025747\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/qemumips64/build/build-st-36182/tmp/log/runtime-hostdump/201907230314_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vmdk": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemumips64/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/qemumips64/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemumips64/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 78, in test_boot_recipe_image_vmdk\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib64/python3.4/contextlib.py\", line 59, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/qemumips64/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/qemumips64/build/build-st-36182/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/qemumips64/build/build-st-36182/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723031435:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/qemumips64/build/build-st-36182/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723031435\nINFO: SSH log file: /home/pokybuild/yocto-worker/qemumips64/build/build-st-36182/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723031435\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:57212\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:41771\nDEBUG: launchcmd=runqemu nographic kvm core-image-minimal wic.vmdk tcpserial=57212:41771 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_36182\"\nDEBUG: runqemu started, pid is 26210\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 03:14:37)\nDEBUG: qemu started in 2.0031018257141113 seconds - qemu procces pid is 26228 (07/23/19 03:14:39)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Using preconfigured tap device tap0\nrunqemu - INFO - If this is not intended, touch /tmp/qemu-tap-locks/tap0.skip to make runqemu skip tap0.\nrunqemu - INFO - Network configuration: 192.168.7.2::192.168.7.1:255.255.255.0\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/qemumips64/build/build-st-36182/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:34:02 -netdev tap,id=net0,ifname=tap0,script=no,downscript=no -drive file=/home/pokybuild/yocto-worker/qemumips64/build/build-st-36182/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.wic.vmdk,if=virtio,format=vmdk -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:57212 -serial tcp:127.0.0.1:41771  -pidfile pidfile_36182 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 03:14:39)\nDEBUG: Connection from 127.0.0.1:57074\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 03:31:20)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/qemumips64/build/build-st-36182/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723031435\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/qemumips64/build/build-st-36182/tmp/log/runtime-hostdump/201907230331_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_rootfs": {
                "status": "PASSED"
            }
        }
    },
    "oeselftest_opensuse-42.3_qemux86-64_20190723020223": {
        "configuration": {
            "HOST_DISTRO": "opensuse-42.3",
            "HOST_NAME": "opensuse423-ty-1",
            "LAYERS": {
                "meta": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-poky": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-selftest": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-yocto-bsp": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                }
            },
            "MACHINE": "qemux86-64",
            "STARTTIME": "20190723020223",
            "TESTSERIES": "qemux86-64",
            "TEST_TYPE": "oeselftest"
        },
        "result": {
            "meta_ide.MetaIDE.test_meta_ide_can_build_cpio_project": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_can_compile_c_program": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_had_installed_meta_ide_support": {
                "status": "PASSED"
            },
            "runqemu.QemuTest.test_qemu_can_shutdown": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy_hddimg": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_ext4": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_iso": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp_qcow2": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemux86-64/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/qemux86-64/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemux86-64/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 114, in test_boot_machine_slirp_qcow2\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib64/python3.4/contextlib.py\", line 59, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/qemux86-64/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/qemux86-64/build/build-st-28960/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/qemux86-64/build/build-st-28960/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723020602:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/qemux86-64/build/build-st-28960/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723020602\nINFO: SSH log file: /home/pokybuild/yocto-worker/qemux86-64/build/build-st-28960/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723020602\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:37792\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:60820\nDEBUG: launchcmd=runqemu nographic kvm slirp wic.qcow2 qemux86-64 tcpserial=37792:60820 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_28960\"\nDEBUG: runqemu started, pid is 38978\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 02:06:03)\nDEBUG: qemu started in 2.0033488273620605 seconds - qemu procces pid is 38996 (07/23/19 02:06:06)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running MACHINE=qemux86-64 bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Port forward: hostfwd=tcp::2222-:22 hostfwd=tcp::2323-:23\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/qemux86-64/build/build-st-28960/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:35:02 -netdev user,id=net0,hostfwd=tcp::2222-:22,hostfwd=tcp::2323-:23,tftp=/home/pokybuild/yocto-worker/qemux86-64/build/build-st-28960/tmp/deploy/images/qemux86-64 -drive file=/home/pokybuild/yocto-worker/qemux86-64/build/build-st-28960/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64-20190723020250.rootfs.wic.qcow2,if=virtio,format=qcow2 -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:37792 -serial tcp:127.0.0.1:60820  -pidfile pidfile_28960 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 02:06:06)\nDEBUG: Connection from 127.0.0.1:40716\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 02:22:46)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/qemux86-64/build/build-st-28960/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723020602\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/qemux86-64/build/build-st-28960/tmp/log/runtime-hostdump/201907230222_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_qemu_boot": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vdi": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemux86-64/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/qemux86-64/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemux86-64/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 85, in test_boot_recipe_image_vdi\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib64/python3.4/contextlib.py\", line 59, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/qemux86-64/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/qemux86-64/build/build-st-28960/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/qemux86-64/build/build-st-28960/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723022324:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/qemux86-64/build/build-st-28960/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723022324\nINFO: SSH log file: /home/pokybuild/yocto-worker/qemux86-64/build/build-st-28960/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723022324\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:45976\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:50446\nDEBUG: launchcmd=runqemu nographic kvm core-image-minimal wic.vdi tcpserial=45976:50446 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_28960\"\nDEBUG: runqemu started, pid is 11509\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 02:23:26)\nDEBUG: qemu started in 2.002903938293457 seconds - qemu procces pid is 11727 (07/23/19 02:23:28)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Using preconfigured tap device tap0\nrunqemu - INFO - If this is not intended, touch /tmp/qemu-tap-locks/tap0.skip to make runqemu skip tap0.\nrunqemu - INFO - Network configuration: 192.168.7.2::192.168.7.1:255.255.255.0\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/qemux86-64/build/build-st-28960/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:34:02 -netdev tap,id=net0,ifname=tap0,script=no,downscript=no -drive file=/home/pokybuild/yocto-worker/qemux86-64/build/build-st-28960/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.wic.vdi,if=virtio,format=vdi -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:45976 -serial tcp:127.0.0.1:50446  -pidfile pidfile_28960 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 02:23:28)\nDEBUG: Connection from 127.0.0.1:38766\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 02:40:09)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\n\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J[0mk\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/qemux86-64/build/build-st-28960/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723022324\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/qemux86-64/build/build-st-28960/tmp/log/runtime-hostdump/201907230240_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vmdk": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemux86-64/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/qemux86-64/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemux86-64/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 78, in test_boot_recipe_image_vmdk\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib64/python3.4/contextlib.py\", line 59, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/qemux86-64/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/qemux86-64/build/build-st-28960/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/qemux86-64/build/build-st-28960/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723024013:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/qemux86-64/build/build-st-28960/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723024013\nINFO: SSH log file: /home/pokybuild/yocto-worker/qemux86-64/build/build-st-28960/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723024013\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:52155\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:38033\nDEBUG: launchcmd=runqemu nographic kvm core-image-minimal wic.vmdk tcpserial=52155:38033 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_28960\"\nDEBUG: runqemu started, pid is 45947\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 02:40:16)\nDEBUG: qemu started in 2.0028717517852783 seconds - qemu procces pid is 45966 (07/23/19 02:40:18)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Using preconfigured tap device tap0\nrunqemu - INFO - If this is not intended, touch /tmp/qemu-tap-locks/tap0.skip to make runqemu skip tap0.\nrunqemu - INFO - Network configuration: 192.168.7.2::192.168.7.1:255.255.255.0\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/qemux86-64/build/build-st-28960/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:34:02 -netdev tap,id=net0,ifname=tap0,script=no,downscript=no -drive file=/home/pokybuild/yocto-worker/qemux86-64/build/build-st-28960/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.wic.vmdk,if=virtio,format=vmdk -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:52155 -serial tcp:127.0.0.1:38033  -pidfile pidfile_28960 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 02:40:18)\nDEBUG: Connection from 127.0.0.1:58486\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 02:56:59)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/qemux86-64/build/build-st-28960/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723024013\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/qemux86-64/build/build-st-28960/tmp/log/runtime-hostdump/201907230256_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_rootfs": {
                "status": "PASSED"
            }
        }
    },
    "oeselftest_ubuntu-18.04_qemuarm64_20190723070428": {
        "configuration": {
            "HOST_DISTRO": "ubuntu-18.04",
            "HOST_NAME": "ubuntu1804-ty-3",
            "LAYERS": {
                "meta": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-poky": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-selftest": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-yocto-bsp": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                }
            },
            "MACHINE": "qemuarm64",
            "STARTTIME": "20190723070428",
            "TESTSERIES": "qemuarm64",
            "TEST_TYPE": "oeselftest"
        },
        "result": {
            "meta_ide.MetaIDE.test_meta_ide_can_build_cpio_project": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_can_compile_c_program": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_had_installed_meta_ide_support": {
                "status": "PASSED"
            },
            "runqemu.QemuTest.test_qemu_can_shutdown": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy_hddimg": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_ext4": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_iso": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp_qcow2": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemuarm64/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/qemuarm64/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemuarm64/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 114, in test_boot_machine_slirp_qcow2\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib/python3.6/contextlib.py\", line 81, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/qemuarm64/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/qemuarm64/build/build-st-13073/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/qemuarm64/build/build-st-13073/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723071151:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/qemuarm64/build/build-st-13073/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723071151\nINFO: SSH log file: /home/pokybuild/yocto-worker/qemuarm64/build/build-st-13073/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723071151\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:48859\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:47355\nDEBUG: launchcmd=runqemu nographic kvm slirp wic.qcow2 qemux86-64 tcpserial=48859:47355 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_13073\"\nDEBUG: runqemu started, pid is 15095\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 07:11:53)\nDEBUG: qemu started in 1.502476692199707 seconds - qemu procces pid is 15118 (07/23/19 07:11:55)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running MACHINE=qemux86-64 bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Port forward: hostfwd=tcp::2222-:22 hostfwd=tcp::2323-:23\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/qemuarm64/build/build-st-13073/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:35:02 -netdev user,id=net0,hostfwd=tcp::2222-:22,hostfwd=tcp::2323-:23,tftp=/home/pokybuild/yocto-worker/qemuarm64/build/build-st-13073/tmp/deploy/images/qemux86-64 -drive file=/home/pokybuild/yocto-worker/qemuarm64/build/build-st-13073/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64-20190723070519.rootfs.wic.qcow2,if=virtio,format=qcow2 -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:48859 -serial tcp:127.0.0.1:47355  -pidfile pidfile_13073 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 07:11:55)\nDEBUG: Connection from 127.0.0.1:32970\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 07:28:36)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/qemuarm64/build/build-st-13073/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723071151\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/qemuarm64/build/build-st-13073/tmp/log/runtime-hostdump/201907230728_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_qemu_boot": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vdi": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemuarm64/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/qemuarm64/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemuarm64/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 85, in test_boot_recipe_image_vdi\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib/python3.6/contextlib.py\", line 81, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/qemuarm64/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/qemuarm64/build/build-st-13073/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/qemuarm64/build/build-st-13073/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723072907:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/qemuarm64/build/build-st-13073/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723072907\nINFO: SSH log file: /home/pokybuild/yocto-worker/qemuarm64/build/build-st-13073/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723072907\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:49715\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:59477\nDEBUG: launchcmd=runqemu nographic kvm core-image-minimal wic.vdi tcpserial=49715:59477 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_13073\"\nDEBUG: runqemu started, pid is 18084\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 07:29:09)\nDEBUG: qemu started in 1.502502679824829 seconds - qemu procces pid is 18112 (07/23/19 07:29:11)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Using preconfigured tap device tap0\nrunqemu - INFO - If this is not intended, touch /tmp/qemu-tap-locks/tap0.skip to make runqemu skip tap0.\nrunqemu - INFO - Network configuration: 192.168.7.2::192.168.7.1:255.255.255.0\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/qemuarm64/build/build-st-13073/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:34:02 -netdev tap,id=net0,ifname=tap0,script=no,downscript=no -drive file=/home/pokybuild/yocto-worker/qemuarm64/build/build-st-13073/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.wic.vdi,if=virtio,format=vdi -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:49715 -serial tcp:127.0.0.1:59477  -pidfile pidfile_13073 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 07:29:11)\nDEBUG: Connection from 127.0.0.1:36148\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 07:45:52)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/qemuarm64/build/build-st-13073/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723072907\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/qemuarm64/build/build-st-13073/tmp/log/runtime-hostdump/201907230745_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vmdk": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemuarm64/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/qemuarm64/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemuarm64/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 78, in test_boot_recipe_image_vmdk\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib/python3.6/contextlib.py\", line 81, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/qemuarm64/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/qemuarm64/build/build-st-13073/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/qemuarm64/build/build-st-13073/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723074555:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/qemuarm64/build/build-st-13073/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723074555\nINFO: SSH log file: /home/pokybuild/yocto-worker/qemuarm64/build/build-st-13073/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723074555\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:42957\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:41029\nDEBUG: launchcmd=runqemu nographic kvm core-image-minimal wic.vmdk tcpserial=42957:41029 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_13073\"\nDEBUG: runqemu started, pid is 20733\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 07:45:57)\nDEBUG: qemu started in 1.5026514530181885 seconds - qemu procces pid is 20761 (07/23/19 07:45:58)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Using preconfigured tap device tap0\nrunqemu - INFO - If this is not intended, touch /tmp/qemu-tap-locks/tap0.skip to make runqemu skip tap0.\nrunqemu - INFO - Network configuration: 192.168.7.2::192.168.7.1:255.255.255.0\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/qemuarm64/build/build-st-13073/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:34:02 -netdev tap,id=net0,ifname=tap0,script=no,downscript=no -drive file=/home/pokybuild/yocto-worker/qemuarm64/build/build-st-13073/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.wic.vmdk,if=virtio,format=vmdk -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:42957 -serial tcp:127.0.0.1:41029  -pidfile pidfile_13073 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 07:45:58)\nDEBUG: Connection from 127.0.0.1:49890\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 08:02:39)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/qemuarm64/build/build-st-13073/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723074555\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/qemuarm64/build/build-st-13073/tmp/log/runtime-hostdump/201907230802_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_rootfs": {
                "status": "PASSED"
            }
        }
    },
    "oeselftest_ubuntu-18.04_qemumips_20190723020722": {
        "configuration": {
            "HOST_DISTRO": "ubuntu-18.04",
            "HOST_NAME": "ubuntu1804-ty",
            "LAYERS": {
                "meta": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-poky": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-selftest": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-yocto-bsp": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                }
            },
            "MACHINE": "qemumips",
            "STARTTIME": "20190723020722",
            "TESTSERIES": "qemumips",
            "TEST_TYPE": "oeselftest"
        },
        "result": {
            "meta_ide.MetaIDE.test_meta_ide_can_build_cpio_project": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_can_compile_c_program": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_had_installed_meta_ide_support": {
                "status": "PASSED"
            },
            "runqemu.QemuTest.test_qemu_can_shutdown": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemumips/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 188, in test_qemu_can_shutdown\n    qemu_shutdown_succeeded = self._start_qemu_shutdown_check_if_shutdown_succeeded(qemu, shutdown_timeout)\n  File \"/home/pokybuild/yocto-worker/qemumips/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 164, in _start_qemu_shutdown_check_if_shutdown_succeeded\n    qemu.run_serial(\"shutdown -h now\")\n  File \"/home/pokybuild/yocto-worker/qemumips/build/meta/lib/oeqa/targetcontrol.py\", line 198, in run_serial\n    return self.runner.run_serial(command, timeout=timeout)\n  File \"/home/pokybuild/yocto-worker/qemumips/build/meta/lib/oeqa/utils/qemurunner.py\", line 471, in run_serial\n    raise Exception(\"No data on serial console socket\")\nException: No data on serial console socket\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_deploy": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy_hddimg": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_ext4": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_iso": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp_qcow2": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemumips/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/qemumips/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemumips/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 114, in test_boot_machine_slirp_qcow2\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib/python3.6/contextlib.py\", line 81, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/qemumips/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/qemumips/build/build-st-35552/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/qemumips/build/build-st-35552/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723021046:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/qemumips/build/build-st-35552/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723021046\nINFO: SSH log file: /home/pokybuild/yocto-worker/qemumips/build/build-st-35552/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723021046\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:49093\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:53629\nDEBUG: launchcmd=runqemu nographic kvm slirp wic.qcow2 qemux86-64 tcpserial=49093:53629 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_35552\"\nDEBUG: runqemu started, pid is 4537\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 02:10:48)\nDEBUG: qemu started in 1.5025758743286133 seconds - qemu procces pid is 4565 (07/23/19 02:10:50)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running MACHINE=qemux86-64 bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Port forward: hostfwd=tcp::2222-:22 hostfwd=tcp::2323-:23\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/qemumips/build/build-st-35552/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:35:02 -netdev user,id=net0,hostfwd=tcp::2222-:22,hostfwd=tcp::2323-:23,tftp=/home/pokybuild/yocto-worker/qemumips/build/build-st-35552/tmp/deploy/images/qemux86-64 -drive file=/home/pokybuild/yocto-worker/qemumips/build/build-st-35552/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64-20190723020750.rootfs.wic.qcow2,if=virtio,format=qcow2 -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:49093 -serial tcp:127.0.0.1:53629  -pidfile pidfile_35552 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 02:10:50)\nDEBUG: Connection from 127.0.0.1:53160\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 02:27:31)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/qemumips/build/build-st-35552/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723021046\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/qemumips/build/build-st-35552/tmp/log/runtime-hostdump/201907230227_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_qemu_boot": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vdi": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemumips/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/qemumips/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemumips/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 85, in test_boot_recipe_image_vdi\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib/python3.6/contextlib.py\", line 81, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/qemumips/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/qemumips/build/build-st-35552/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/qemumips/build/build-st-35552/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723022802:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/qemumips/build/build-st-35552/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723022802\nINFO: SSH log file: /home/pokybuild/yocto-worker/qemumips/build/build-st-35552/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723022802\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:48479\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:59221\nDEBUG: launchcmd=runqemu nographic kvm core-image-minimal wic.vdi tcpserial=48479:59221 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_35552\"\nDEBUG: runqemu started, pid is 7303\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 02:28:04)\nDEBUG: qemu started in 1.5024406909942627 seconds - qemu procces pid is 7330 (07/23/19 02:28:05)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Using preconfigured tap device tap0\nrunqemu - INFO - If this is not intended, touch /tmp/qemu-tap-locks/tap0.skip to make runqemu skip tap0.\nrunqemu - INFO - Network configuration: 192.168.7.2::192.168.7.1:255.255.255.0\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/qemumips/build/build-st-35552/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:34:02 -netdev tap,id=net0,ifname=tap0,script=no,downscript=no -drive file=/home/pokybuild/yocto-worker/qemumips/build/build-st-35552/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.wic.vdi,if=virtio,format=vdi -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:48479 -serial tcp:127.0.0.1:59221  -pidfile pidfile_35552 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 02:28:05)\nDEBUG: Connection from 127.0.0.1:52314\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 02:44:46)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/qemumips/build/build-st-35552/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723022802\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/qemumips/build/build-st-35552/tmp/log/runtime-hostdump/201907230244_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vmdk": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemumips/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/qemumips/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemumips/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 78, in test_boot_recipe_image_vmdk\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib/python3.6/contextlib.py\", line 81, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/qemumips/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/qemumips/build/build-st-35552/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/qemumips/build/build-st-35552/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723024449:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/qemumips/build/build-st-35552/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723024449\nINFO: SSH log file: /home/pokybuild/yocto-worker/qemumips/build/build-st-35552/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723024449\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:53235\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:53361\nDEBUG: launchcmd=runqemu nographic kvm core-image-minimal wic.vmdk tcpserial=53235:53361 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_35552\"\nDEBUG: runqemu started, pid is 9962\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 02:44:51)\nDEBUG: qemu started in 1.5023837089538574 seconds - qemu procces pid is 9991 (07/23/19 02:44:53)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Using preconfigured tap device tap0\nrunqemu - INFO - If this is not intended, touch /tmp/qemu-tap-locks/tap0.skip to make runqemu skip tap0.\nrunqemu - INFO - Network configuration: 192.168.7.2::192.168.7.1:255.255.255.0\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/qemumips/build/build-st-35552/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:34:02 -netdev tap,id=net0,ifname=tap0,script=no,downscript=no -drive file=/home/pokybuild/yocto-worker/qemumips/build/build-st-35552/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.wic.vmdk,if=virtio,format=vmdk -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:53235 -serial tcp:127.0.0.1:53361  -pidfile pidfile_35552 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 02:44:53)\nDEBUG: Connection from 127.0.0.1:36428\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 03:01:34)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/qemumips/build/build-st-35552/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723024449\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/qemumips/build/build-st-35552/tmp/log/runtime-hostdump/201907230301_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_rootfs": {
                "status": "PASSED"
            }
        }
    },
    "oeselftest_ubuntu-18.04_qemux86-64_20190722210600": {
        "configuration": {
            "HOST_DISTRO": "ubuntu-18.04",
            "HOST_NAME": "ubuntu1804-ty-3",
            "LAYERS": {
                "meta": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-poky": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-selftest": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-yocto-bsp": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                }
            },
            "MACHINE": "qemux86-64",
            "STARTTIME": "20190722210600",
            "TESTSERIES": "oe-selftest-ubuntu",
            "TEST_TYPE": "oeselftest"
        },
        "result": {
            "archiver.Archiver.test_archiver_allows_to_filter_on_recipe_name": {
                "status": "PASSED"
            },
            "archiver.Archiver.test_archiver_filters_by_type": {
                "status": "PASSED"
            },
            "archiver.Archiver.test_archiver_filters_by_type_and_name": {
                "status": "PASSED"
            },
            "archiver.Archiver.test_archiver_srpm_mode": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_add_remove": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_createlayer": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_flatten": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_showappends": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_showcrossdepends": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_showlayers": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_showoverlayed": {
                "status": "PASSED"
            },
            "bblayers.BitbakeLayers.test_bitbakelayers_showrecipes": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_bbappend_order": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_bitbake_g": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_bitbake_invalid_recipe": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_bitbake_invalid_target": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_checkuri": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_continue": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_dry_run": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_environment": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_event_handler": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_force_task_1": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_force_task_2": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_image_manifest": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_invalid_patch": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_invalid_recipe_src_uri": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_just_parse": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_local_sstate": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_non_gplv3": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_postfile": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_prefile": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_rename_downloaded_file": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_run_bitbake_from_dir_1": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_run_bitbake_from_dir_2": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_run_bitbake_from_dir_3": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_setscene_only": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_skip_setscene": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_version": {
                "status": "PASSED"
            },
            "bbtests.BitbakeTests.test_warnings_errors": {
                "status": "PASSED"
            },
            "buildoptions.ArchiverTest.test_arch_work_dir_and_export_source": {
                "status": "PASSED"
            },
            "buildoptions.BuildhistoryTests.test_buildhistory_basic": {
                "status": "PASSED"
            },
            "buildoptions.BuildhistoryTests.test_buildhistory_buildtime_pr_backwards": {
                "status": "PASSED"
            },
            "buildoptions.DiskMonTest.test_stoptask_behavior": {
                "status": "PASSED"
            },
            "buildoptions.ImageOptionsTests.test_ccache_tool": {
                "status": "PASSED"
            },
            "buildoptions.ImageOptionsTests.test_incremental_image_generation": {
                "status": "PASSED"
            },
            "buildoptions.ImageOptionsTests.test_read_only_image": {
                "status": "PASSED"
            },
            "buildoptions.SanityOptionsTest.test_layer_without_git_dir": {
                "status": "PASSED"
            },
            "buildoptions.SanityOptionsTest.test_options_warnqa_errorqa_switch": {
                "status": "PASSED"
            },
            "buildoptions.SourceMirroring.test_yocto_source_mirror": {
                "log": "Skip by the command line argument \"buildoptions.SourceMirroring.test_yocto_source_mirror\"\n",
                "status": "SKIPPED"
            },
            "buildoptions.ToolchainOptions.test_toolchain_fortran": {
                "status": "PASSED"
            },
            "containerimage.ContainerImageTests.test_expected_files": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add_fetch": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add_fetch_git": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add_fetch_simple": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add_git_local": {
                "status": "PASSED"
            },
            "devtool.DevtoolAddTests.test_devtool_add_library": {
                "status": "PASSED"
            },
            "devtool.DevtoolExtractTests.test_devtool_build_image": {
                "status": "PASSED"
            },
            "devtool.DevtoolExtractTests.test_devtool_deploy_target": {
                "status": "PASSED"
            },
            "devtool.DevtoolExtractTests.test_devtool_extract": {
                "status": "PASSED"
            },
            "devtool.DevtoolExtractTests.test_devtool_extract_virtual": {
                "status": "PASSED"
            },
            "devtool.DevtoolExtractTests.test_devtool_reset_all": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_buildclean": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify_git": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify_invalid": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify_localfiles": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify_native": {
                "status": "PASSED"
            },
            "devtool.DevtoolModifyTests.test_devtool_modify_virtual": {
                "status": "PASSED"
            },
            "devtool.DevtoolTests.test_create_workspace": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_append": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_append_git": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_git": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_local_files": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_local_files_2": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_local_files_3": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_local_files_subdir": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpdateTests.test_devtool_update_recipe_local_patch_gz": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_finish_modify_origlayer": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_finish_modify_otherlayer": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_finish_upgrade_origlayer": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_finish_upgrade_otherlayer": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_layer_plugins": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_load_plugin": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_rename": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_upgrade": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_upgrade_git": {
                "status": "PASSED"
            },
            "devtool.DevtoolUpgradeTests.test_devtool_virtual_kernel_modify": {
                "status": "PASSED"
            },
            "distrodata.Distrodata.test_checkpkg": {
                "log": "Skip by the command line argument \"distrodata.Distrodata.test_checkpkg\"\n",
                "status": "SKIPPED"
            },
            "distrodata.Distrodata.test_maintainers": {
                "status": "PASSED"
            },
            "eSDK.oeSDKExtSelfTest.test_image_generation_binary_feeds": {
                "status": "PASSED"
            },
            "eSDK.oeSDKExtSelfTest.test_install_libraries_headers": {
                "status": "PASSED"
            },
            "efibootpartition.GenericEFITest.test_boot_efi": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/selftest/cases/efibootpartition.py\", line 45, in test_boot_efi\n    with runqemu(self.image, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib/python3.6/contextlib.py\", line 81, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25277/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25277/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723013557:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25277/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723013557\nINFO: SSH log file: /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25277/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723013557\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:42597\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:39143\nDEBUG: launchcmd=runqemu nographic serial wic ovmf qemux86-64 tcpserial=42597:39143 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_25277\"\nDEBUG: runqemu started, pid is 17733\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 01:36:07)\nDEBUG: qemu started in 11.01427674293518 seconds - qemu procces pid is 25934 (07/23/19 01:36:18)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running MACHINE=qemux86-64 bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Acquiring lockfile /tmp/qemu-tap-locks/tap0.lock failed: [Errno 11] Resource temporarily unavailable\nrunqemu - INFO - Using preconfigured tap device tap1\nrunqemu - INFO - If this is not intended, touch /tmp/qemu-tap-locks/tap1.skip to make runqemu skip tap1.\nrunqemu - INFO - Network configuration: 192.168.7.4::192.168.7.3:255.255.255.0\nrunqemu - INFO - Using scsi drive\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25277/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:34:04 -netdev tap,id=net0,ifname=tap1,script=no,downscript=no -drive if=none,id=hd,file=/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25277/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64-20190723012010.rootfs.wic,format=raw -device virtio-scsi-pci,id=scsi -device scsi-hd,drive=hd -no-reboot -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0 -drive if=pflash,format=qcow2,file=/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25277/tmp/deploy/images/qemux86-64/ovmf.qcow2 -vga std  -nographic  -cpu core2duo -m 256 -serial tcp:127.0.0.1:42597 -serial tcp:127.0.0.1:39143  -pidfile pidfile_25277 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 01:36:18)\nDEBUG: Connection from 127.0.0.1:52354\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 01:53:00)\nWARNING: Last 25 lines of text:\n\u001b[2J\u001b[01;01H\u001b[=3h\u001b[2J\u001b[01;01H\u001b[2J\u001b[01;01H\u001b[=3h\u001b[2J\u001b[01;01H\u001b[2J\u001b[01;01H\u001b[=3h\u001b[2J\u001b[01;01H\u001b[0m\u001b[35m\u001b[40m\u001b[2J\u001b[01;01H\u001b[=3h\u001b[2J\u001b[01;01H\u001b[0m\u001b[37m\u001b[40m \u001b[2J\u001b[01;01H\u001b[12;01H\u001b[0m\u001b[30m\u001b[47m                         boot                                                   \u001b[13;01H\u001b[0m\u001b[37m\u001b[40m                         Reboot Into Firmware Interface                         \u001b[25;01H                                Boot in 10 sec.                                \u001b[25;01H                                Boot in 10 sec.                                \u001b[25;01H                                Boot in 10 sec.                                \u001b[25;01H                                Boot in 10 sec.                                \u001b[25;01H                                Boot in 10 sec.                                \u001b[25;01H                                Boot in 10 sec.                                \u001b[25;01H                                 Boot in 9 sec.                                \u001b[25;01H                                 Boot in 9 sec.                                \u001b[25;01H                                 Boot in 9 sec.                                \u001b[25;01H                                 Boot in 9 sec.                                \u001b[25;01H                                 Boot in 9 sec.                                \u001b[25;01H                                 Boot in 9 sec.                                \u001b[25;01H                                 Boot in 9 sec.                                \u001b[25;01H                                 Boot in 9 sec.                                \u001b[25;01H                                 Boot in 9 sec.                                \u001b[25;01H                                 Boot in 9 sec.                                \u001b[25;01H                                 Boot in 8 sec.                                \u001b[25;01H                                 Boot in 8 sec.                                \u001b[25;01H                                 Boot in 8 sec.                                \u001b[25;01H                                 Boot in 8 sec.                                \u001b[25;01H                                 Boot in 8 sec.                                \u001b[25;01H                                 Boot in 8 sec.                                \u001b[25;01H                                 Boot in 8 sec.                                \u001b[25;01H                                 Boot in 8 sec.                                \u001b[25;01H                                 Boot in 8 sec.                                \u001b[25;01H                                 Boot in 8 sec.                                \u001b[25;01H                                 Boot in 7 sec.                                \u001b[25;01H                                 Boot in 7 sec.                                \u001b[25;01H                                 Boot in 7 sec.                                \u001b[25;01H                                 Boot in 7 sec.                                \u001b[25;01H                                 Boot in 7 sec.                                \u001b[25;01H                                 Boot in 7 sec.                                \u001b[25;01H                                 Boot in 7 sec.                                \u001b[25;01H                                 Boot in 7 sec.                                \u001b[25;01H                                 Boot in 7 sec.                                \u001b[25;01H                                 Boot in 7 sec.                                \u001b[25;01H                                 Boot in 6 sec.                                \u001b[25;01H                                 Boot in 6 sec.                                \u001b[25;01H                                 Boot in 6 sec.                                \u001b[25;01H                                 Boot in 6 sec.                                \u001b[25;01H                                 Boot in 6 sec.                                \u001b[25;01H                                 Boot in 6 sec.                                \u001b[25;01H                                 Boot in 6 sec.                                \u001b[25;01H                                 Boot in 6 sec.                                \u001b[25;01H                                 Boot in 6 sec.                                \u001b[25;01H                                 Boot in 6 sec.                                \u001b[25;01H                                 Boot in 5 sec.                                \u001b[25;01H                                 Boot in 5 sec.                                \u001b[25;01H                                 Boot in 5 sec.                                \u001b[25;01H                                 Boot in 5 sec.                                \u001b[25;01H                                 Boot in 5 sec.                                \u001b[25;01H                                 Boot in 5 sec.                                \u001b[25;01H                                 Boot in 5 sec.                                \u001b[25;01H                                 Boot in 5 sec.                                \u001b[25;01H                                 Boot in 5 sec.                                \u001b[25;01H                                 Boot in 5 sec.                                \u001b[25;01H                                 Boot in 4 sec.                                \u001b[25;01H                                 Boot in 4 sec.                                \u001b[25;01H                                 Boot in 4 sec.                                \u001b[25;01H                                 Boot in 4 sec.                                \u001b[25;01H                                 Boot in 4 sec.                                \u001b[25;01H                                 Boot in 4 sec.                                \u001b[25;01H                                 Boot in 4 sec.                                \u001b[25;01H                                 Boot in 4 sec.                                \u001b[25;01H                                 Boot in 4 sec.                                \u001b[25;01H                                 Boot in 4 sec.                                \u001b[25;01H                                 Boot in 3 sec.                                \u001b[25;01H                                 Boot in 3 sec.                                \u001b[25;01H                                 Boot in 3 sec.                                \u001b[25;01H                                 Boot in 3 sec.                                \u001b[25;01H                                 Boot in 3 sec.                                \u001b[25;01H                                 Boot in 3 sec.                                \u001b[25;01H                                 Boot in 3 sec.                                \u001b[25;01H                                 Boot in 3 sec.                                \u001b[25;01H                                 Boot in 3 sec.                                \u001b[25;01H                                 Boot in 3 sec.                                \u001b[25;01H                                 Boot in 2 sec.                                \u001b[25;01H                                 Boot in 2 sec.                                \u001b[25;01H                                 Boot in 2 sec.                                \u001b[25;01H                                 Boot in 2 sec.                                \u001b[25;01H                                 Boot in 2 sec.                                \u001b[25;01H                                 Boot in 2 sec.                                \u001b[25;01H                                 Boot in 2 sec.                                \u001b[25;01H                                 Boot in 2 sec.                                \u001b[25;01H                                 Boot in 2 sec.                                \u001b[25;01H                                 Boot in 2 sec.                                \u001b[25;01H                                 Boot in 1 sec.                                \u001b[25;01H                                 Boot in 1 sec.                                \u001b[25;01H                                 Boot in 1 sec.                                \u001b[25;01H                                 Boot in 1 sec.                                \u001b[25;01H                                 Boot in 1 sec.                                \u001b[25;01H                                 Boot in 1 sec.                                \u001b[25;01H                                 Boot in 1 sec.                                \u001b[25;01H                                 Boot in 1 sec.                                \u001b[25;01H                                 Boot in 1 sec.                                \u001b[25;01H                                 Boot in 1 sec.                                \u001b[25;01H                                 Boot in 0 sec.                                \u001b[25;01H                                 Boot in 0 sec.                                \u001b[25;01H                                 Boot in 0 sec.                                \u001b[25;01H                                 Boot in 0 sec.                                \u001b[25;01H                                 Boot in 0 sec.                                \u001b[1m\u001b[37m\u001b[40m\u001b[2J\u001b[01;01H\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25277/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723013557\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25277/tmp/log/runtime-hostdump/201907230153_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "fetch.Fetch.test_git_mirrors": {
                "status": "PASSED"
            },
            "gotoolchain.oeGoToolchainSelfTest.test_go_dep_build": {
                "status": "PASSED"
            },
            "image_typedep.ImageTypeDepTests.test_conversion_typedep_added": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_all_users_can_connect_via_ssh_without_password": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_bmap": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_clutter_image_can_be_built": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_hypervisor_fmts": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_image_fstypes": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_long_chain_conversion": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_no_busybox_base_utils": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_non_root_user_can_connect_via_ssh_without_password": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_useradd_static": {
                "status": "PASSED"
            },
            "imagefeatures.ImageFeatures.test_wayland_support_in_image": {
                "status": "PASSED"
            },
            "incompatible_lic.IncompatibleLicenseTests.test_incompatible_alias_spdx_license": {
                "status": "PASSED"
            },
            "incompatible_lic.IncompatibleLicenseTests.test_incompatible_alias_spdx_license_alias": {
                "status": "PASSED"
            },
            "incompatible_lic.IncompatibleLicenseTests.test_incompatible_nonspdx_license": {
                "status": "PASSED"
            },
            "incompatible_lic.IncompatibleLicenseTests.test_incompatible_spdx_license": {
                "status": "PASSED"
            },
            "incompatible_lic.IncompatibleLicenseTests.test_incompatible_spdx_license_alias": {
                "status": "PASSED"
            },
            "layerappend.LayerAppendTests.test_layer_appends": {
                "status": "PASSED"
            },
            "liboe.LibOE.test_copy_hardlink_tree_count": {
                "status": "PASSED"
            },
            "liboe.LibOE.test_copy_tree_special": {
                "status": "PASSED"
            },
            "liboe.LibOE.test_copy_tree_xattr": {
                "status": "PASSED"
            },
            "lic_checksum.LicenseTests.test_nonmatching_checksum": {
                "status": "PASSED"
            },
            "manifest.VerifyManifest.test_SDK_manifest_entries": {
                "status": "PASSED"
            },
            "manifest.VerifyManifest.test_image_manifest_entries": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_can_build_cpio_project": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_can_compile_c_program": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_had_installed_meta_ide_support": {
                "status": "PASSED"
            },
            "multiconfig.MultiConfig.test_multiconfig": {
                "status": "PASSED"
            },
            "oelib.buildhistory.TestBlobParsing.test_blob_to_dict": {
                "status": "PASSED"
            },
            "oelib.buildhistory.TestBlobParsing.test_compare_dict_blobs": {
                "status": "PASSED"
            },
            "oelib.buildhistory.TestBlobParsing.test_compare_dict_blobs_default": {
                "status": "PASSED"
            },
            "oelib.elf.TestElf.test_machine_name": {
                "status": "PASSED"
            },
            "oelib.license.TestComplexCombinations.test_tests": {
                "status": "PASSED"
            },
            "oelib.license.TestIsIncluded.test_tests": {
                "status": "PASSED"
            },
            "oelib.license.TestSimpleCombinations.test_tests": {
                "status": "PASSED"
            },
            "oelib.license.TestSingleLicense.test_invalid_licenses": {
                "status": "PASSED"
            },
            "oelib.license.TestSingleLicense.test_single_licenses": {
                "status": "PASSED"
            },
            "oelib.path.TestRealPath.test_loop": {
                "status": "PASSED"
            },
            "oelib.path.TestRealPath.test_norm": {
                "status": "PASSED"
            },
            "oelib.path.TestRealPath.test_phys": {
                "status": "PASSED"
            },
            "oelib.types.TestBooleanType.test_bool_equality": {
                "status": "PASSED"
            },
            "oelib.types.TestBooleanType.test_false": {
                "status": "PASSED"
            },
            "oelib.types.TestBooleanType.test_invalid": {
                "status": "PASSED"
            },
            "oelib.types.TestBooleanType.test_true": {
                "status": "PASSED"
            },
            "oelib.types.TestList.test_list_nosep": {
                "status": "PASSED"
            },
            "oelib.types.TestList.test_list_usersep": {
                "status": "PASSED"
            },
            "oelib.utils.TestMultiprocessLaunch.test_multiprocesslaunch": {
                "status": "PASSED"
            },
            "oelib.utils.TestPackagesFilterOutSystem.test_filter": {
                "status": "PASSED"
            },
            "oelib.utils.TestTrimVersion.test_num_exception": {
                "status": "PASSED"
            },
            "oelib.utils.TestTrimVersion.test_valid": {
                "status": "PASSED"
            },
            "oelib.utils.TestTrimVersion.test_version_exception": {
                "status": "PASSED"
            },
            "oescripts.BuildhistoryDiffTests.test_buildhistory_diff": {
                "status": "PASSED"
            },
            "oescripts.OEPybootchartguyTests.test_pybootchartguy_help": {
                "status": "PASSED"
            },
            "oescripts.OEPybootchartguyTests.test_pybootchartguy_to_generate_build_pdf_output": {
                "status": "PASSED"
            },
            "oescripts.OEPybootchartguyTests.test_pybootchartguy_to_generate_build_png_output": {
                "status": "PASSED"
            },
            "oescripts.OEPybootchartguyTests.test_pybootchartguy_to_generate_build_svg_output": {
                "status": "PASSED"
            },
            "package.PackageTests.test_gdb_hardlink_debug": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/selftest/cases/package.py\", line 144, in test_gdb_hardlink_debug\n    with runqemu('core-image-minimal') as qemu:\n  File \"/usr/lib/python3.6/contextlib.py\", line 81, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/utils/commands.py\", line 311, in runqemu\n    tinfoil.prepare(config_only=False, quiet=True)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/bitbake/lib/bb/tinfoil.py\", line 410, in prepare\n    self.run_actions(config_params)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/bitbake/lib/bb/tinfoil.py\", line 425, in run_actions\n    ret = self.ui_module.main(self.server_connection.connection, self.server_connection.events, config_params)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/bitbake/lib/bb/ui/knotty.py\", line 381, in main\n    params.updateToServer(server, os.environ.copy())\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/bitbake/lib/bb/cookerdata.py\", line 65, in updateToServer\n    ret, error = server.runCommand([\"updateConfig\", options, environment, sys.argv])\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/bitbake/lib/bb/server/process.py\", line 334, in runCommand\n    raise ProcessTimeout(\"Timeout while waiting for a reply from the bitbake server\")\nbb.server.process.ProcessTimeout: Timeout while waiting for a reply from the bitbake server\n\n",
                "status": "ERROR"
            },
            "package.PackageTests.test_preserve_sparse_hardlinks": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/selftest/cases/package.py\", line 94, in test_preserve_sparse_hardlinks\n    bitbake(\"selftest-hardlink -c package\")\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/utils/commands.py\", line 218, in bitbake\n    return runCmd(cmd, ignore_status, timeout, output_log=output_log, **options)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/utils/commands.py\", line 196, in runCmd\n    raise AssertionError(\"Command '%s' returned non-zero exit status %d:\\n%s\" % (command, result.status, exc_output))\nAssertionError: Command 'bitbake  selftest-hardlink -c package' returned non-zero exit status 1:\nNOTE: Reconnecting to bitbake server...\nNOTE: Retrying server connection (#1)...\nNOTE: Reconnecting to bitbake server...\nNOTE: Retrying server connection (#2)...\nNOTE: Reconnecting to bitbake server...\nNOTE: Retrying server connection (#3)...\nNOTE: Reconnecting to bitbake server...\nNOTE: Retrying server connection (#4)...\nNOTE: Reconnecting to bitbake server...\nNOTE: Retrying server connection (#5)...\nNOTE: Reconnecting to bitbake server...\nNOTE: Retrying server connection (#6)...\nNOTE: Reconnecting to bitbake server...\nNOTE: Retrying server connection (#7)...\nNOTE: Reconnecting to bitbake server...\nNOTE: Retrying server connection (#8)...\nERROR: Unable to connect to bitbake server, or start one (server startup failures would be in bitbake-cookerdaemon.log).\n\n",
                "status": "FAILED"
            },
            "package.VersionOrdering.test_dpkg": {
                "status": "PASSED"
            },
            "package.VersionOrdering.test_opkg": {
                "status": "PASSED"
            },
            "package.VersionOrdering.test_rpm": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_find_path": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_glob": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_list_pkg_files": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_list_pkgs": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_lookup_pkg": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_lookup_recipe": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_read_value": {
                "status": "PASSED"
            },
            "pkgdata.OePkgdataUtilTests.test_specify_pkgdatadir": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_import_export_override_db": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_import_export_replace_db": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_deb_arch_dep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_deb_arch_indep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_ipk_arch_dep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_ipk_arch_indep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_rpm_arch_dep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_pr_service_rpm_arch_indep": {
                "status": "PASSED"
            },
            "prservice.BitbakePrTests.test_stopping_prservice_message": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_basic": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_basic_wildcard": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_existing_in_src_uri": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_existing_in_src_uri_diff_params": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_replace_file_srcdir": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_srcdir_basic": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_subdir_basic": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfile_subdir_basic_dirdest": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfiles_basic": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolAppendsrcTests.test_recipetool_appendsrcfiles_basic_subdir": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_add": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_add_bindir": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_add_machine": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_alternatives": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_basic": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_binary": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_extlayer": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_inst_func": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_inst_glob": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_inst_todir_glob": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_invalid": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_orig": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_patch": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_postinstall": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_renamed": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_script": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_src_glob": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_subdir": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_todir": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_appendfile_wildcard": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_cmake": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_git": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_git_http": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_github": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_github_tarball": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_python3_distutils": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_python3_setuptools": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_create_simple": {
                "status": "PASSED"
            },
            "recipetool.RecipetoolTests.test_recipetool_load_plugin": {
                "status": "PASSED"
            },
            "recipeutils.RecipeUtilsTests.test_patch_recipe_appends": {
                "status": "PASSED"
            },
            "recipeutils.RecipeUtilsTests.test_patch_recipe_singleappend": {
                "status": "PASSED"
            },
            "recipeutils.RecipeUtilsTests.test_patch_recipe_varflag": {
                "status": "PASSED"
            },
            "recipeutils.RecipeUtilsTests.test_split_var_value": {
                "status": "PASSED"
            },
            "recipeutils.RecipeUtilsTests.test_validate_pn": {
                "status": "PASSED"
            },
            "reproducible.ReproducibleTests.test_reproducible_builds": {
                "log": "Reproducible builds do not yet pass\n",
                "status": "SKIPPED"
            },
            "resulttooltests.ResultToolTests.test_merge_can_merged_results": {
                "status": "PASSED"
            },
            "resulttooltests.ResultToolTests.test_regression_can_get_regression_base_target_pair": {
                "status": "PASSED"
            },
            "resulttooltests.ResultToolTests.test_regrresion_can_get_regression_result": {
                "status": "PASSED"
            },
            "resulttooltests.ResultToolTests.test_report_can_aggregate_test_result": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_list_not_found": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_list_okay": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_log": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_log_split": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_no_shell": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_output": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_output_split": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_result_assertion": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_result_exception": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_result_false": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_result_okay": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_shell": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_stdin": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_stdin_timeout": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_timeout": {
                "status": "PASSED"
            },
            "runcmd.RunCmdTests.test_timeout_split": {
                "status": "PASSED"
            },
            "runqemu.QemuTest.test_qemu_can_shutdown": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy_hddimg": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_ext4": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_iso": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp_qcow2": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 114, in test_boot_machine_slirp_qcow2\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib/python3.6/contextlib.py\", line 81, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25345/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25345/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723010718:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25345/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723010718\nINFO: SSH log file: /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25345/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723010718\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:59201\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:47655\nDEBUG: launchcmd=runqemu nographic kvm slirp wic.qcow2 qemux86-64 tcpserial=59201:47655 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_25345\"\nDEBUG: runqemu started, pid is 12918\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 01:07:32)\nDEBUG: qemu started in 18.82002282142639 seconds - qemu procces pid is 24624 (07/23/19 01:07:51)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running MACHINE=qemux86-64 bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Port forward: hostfwd=tcp::2222-:22 hostfwd=tcp::2323-:23\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25345/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:35:02 -netdev user,id=net0,hostfwd=tcp::2222-:22,hostfwd=tcp::2323-:23,tftp=/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25345/tmp/deploy/images/qemux86-64 -drive file=/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25345/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64-20190723003903.rootfs.wic.qcow2,if=virtio,format=qcow2 -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:59201 -serial tcp:127.0.0.1:47655  -pidfile pidfile_25345 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 01:07:51)\nDEBUG: Connection from 127.0.0.1:46202\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 01:24:32)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\n\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nLoading /vmlinuz...Loading /vmlinuz...  ook\nk\nc[?7l[2J\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25345/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723010718\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25345/tmp/log/runtime-hostdump/201907230124_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_qemu_boot": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vdi": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 85, in test_boot_recipe_image_vdi\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib/python3.6/contextlib.py\", line 81, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25345/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25345/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723012647:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25345/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723012647\nINFO: SSH log file: /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25345/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723012647\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:53899\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:50143\nDEBUG: launchcmd=runqemu nographic kvm core-image-minimal wic.vdi tcpserial=53899:50143 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_25345\"\nDEBUG: runqemu started, pid is 9319\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 01:27:00)\nDEBUG: qemu started in 12.514905214309692 seconds - qemu procces pid is 14359 (07/23/19 01:27:12)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Using preconfigured tap device tap0\nrunqemu - INFO - If this is not intended, touch /tmp/qemu-tap-locks/tap0.skip to make runqemu skip tap0.\nrunqemu - INFO - Network configuration: 192.168.7.2::192.168.7.1:255.255.255.0\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25345/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:34:02 -netdev tap,id=net0,ifname=tap0,script=no,downscript=no -drive file=/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25345/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.wic.vdi,if=virtio,format=vdi -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:53899 -serial tcp:127.0.0.1:50143  -pidfile pidfile_25345 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 01:27:12)\nDEBUG: Connection from 127.0.0.1:34850\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 01:43:53)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 19l\n94-2015 H. Peter Anvin et al\nLoading /vmlinuz...Loading /vmlinuz...  ook\nk\nc[?7l[2J\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25345/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723012647\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25345/tmp/log/runtime-hostdump/201907230143_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vmdk": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 78, in test_boot_recipe_image_vmdk\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib/python3.6/contextlib.py\", line 81, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25345/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25345/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723014404:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25345/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723014404\nINFO: SSH log file: /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25345/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723014404\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:56555\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:50509\nDEBUG: launchcmd=runqemu nographic kvm core-image-minimal wic.vmdk tcpserial=56555:50509 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_25345\"\nDEBUG: runqemu started, pid is 10266\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 01:44:14)\nDEBUG: qemu started in 9.011173486709595 seconds - qemu procces pid is 18888 (07/23/19 01:44:23)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Using preconfigured tap device tap0\nrunqemu - INFO - If this is not intended, touch /tmp/qemu-tap-locks/tap0.skip to make runqemu skip tap0.\nrunqemu - INFO - Network configuration: 192.168.7.2::192.168.7.1:255.255.255.0\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25345/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:34:02 -netdev tap,id=net0,ifname=tap0,script=no,downscript=no -drive file=/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25345/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.wic.vmdk,if=virtio,format=vmdk -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:56555 -serial tcp:127.0.0.1:50509  -pidfile pidfile_25345 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 01:44:23)\nDEBUG: Connection from 127.0.0.1:39842\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 02:01:04)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\n\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nLoading /vmlinuz...Loading /vmlinuz...  ook\nk\nc[?7l[2J\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25345/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723014404\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25345/tmp/log/runtime-hostdump/201907230201_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_rootfs": {
                "status": "PASSED"
            },
            "runtime_test.Postinst.test_failing_postinst": {
                "status": "PASSED"
            },
            "runtime_test.Postinst.test_postinst_rootfs_and_boot": {
                "status": "PASSED"
            },
            "runtime_test.TestExport.test_testexport_basic": {
                "status": "PASSED"
            },
            "runtime_test.TestExport.test_testexport_sdk": {
                "status": "PASSED"
            },
            "runtime_test.TestImage.test_testimage_dnf": {
                "status": "PASSED"
            },
            "runtime_test.TestImage.test_testimage_install": {
                "status": "PASSED"
            },
            "runtime_test.TestImage.test_testimage_virgl_gtk": {
                "status": "PASSED"
            },
            "runtime_test.TestImage.test_testimage_virgl_headless": {
                "log": "No render nodes found in /dev/dri: ['by-path', 'card0']\n",
                "status": "SKIPPED"
            },
            "selftest.ExternalLayer.test_list_imported": {
                "status": "PASSED"
            },
            "signing.LockedSignatures.test_locked_signatures": {
                "status": "PASSED"
            },
            "signing.Signing.test_signing_packages": {
                "status": "PASSED"
            },
            "signing.Signing.test_signing_sstate_archive": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_autorev_sstate_works": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_cleansstate_task_distro_nonspecific": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_cleansstate_task_distro_specific": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_cleansstate_task_distro_specific_nonspecific": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_rebuild_distro_specific_sstate_cross_native_targets": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_rebuild_distro_specific_sstate_cross_target": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_rebuild_distro_specific_sstate_native_target": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_32_64_same_hash": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_allarch_samesigs": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_cache_management_script_using_machine": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_cache_management_script_using_pr_1": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_cache_management_script_using_pr_2": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_cache_management_script_using_pr_3": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_creation_distro_nonspecific_fail": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_creation_distro_nonspecific_pass": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_creation_distro_specific_fail": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_creation_distro_specific_pass": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_nativelsbstring_same_hash": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_nativesdk_samesigs_multilib": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_noop_samesigs": {
                "status": "PASSED"
            },
            "sstatetests.SStateTests.test_sstate_sametune_samesigs": {
                "status": "PASSED"
            },
            "systemd_boot.Systemdboot.test_efi_systemdboot_images_can_be_built": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_datastore_operations": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_expand": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_getvar": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_getvar_bb_origenv": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_list_recipes": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_parse_recipe": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_parse_recipe_copy_expand": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_parse_recipe_initial_datastore": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_setvariable_clean": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_variable_history": {
                "status": "PASSED"
            },
            "tinfoil.TinfoilTests.test_wait_event": {
                "status": "PASSED"
            },
            "wic.Wic.test_bootloader_config": {
                "status": "PASSED"
            },
            "wic.Wic.test_build_artifacts": {
                "status": "PASSED"
            },
            "wic.Wic.test_build_image_name": {
                "status": "PASSED"
            },
            "wic.Wic.test_build_rootfs_long": {
                "status": "PASSED"
            },
            "wic.Wic.test_build_rootfs_short": {
                "status": "PASSED"
            },
            "wic.Wic.test_compress_bzip2": {
                "status": "PASSED"
            },
            "wic.Wic.test_compress_gzip": {
                "status": "PASSED"
            },
            "wic.Wic.test_compress_xz": {
                "status": "PASSED"
            },
            "wic.Wic.test_createhelp": {
                "status": "PASSED"
            },
            "wic.Wic.test_debug_long": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/selftest/cases/wic.py\", line 290, in test_debug_long\n    \"--debug -o %s\" % self.resultdir)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/utils/commands.py\", line 196, in runCmd\n    raise AssertionError(\"Command '%s' returned non-zero exit status %d:\\n%s\" % (command, result.status, exc_output))\nAssertionError: Command 'wic create wictestdisk --image-name=core-image-minimal --debug -o /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25288/wic-tmp/' returned non-zero exit status 1:\nERROR: _exec_cmd: bitbake -e core-image-minimal returned '1' instead of 0\noutput: Timeout while waiting for a reply from the bitbake server\n\n",
                "status": "FAILED"
            },
            "wic.Wic.test_debug_short": {
                "status": "PASSED"
            },
            "wic.Wic.test_default_output_dir": {
                "status": "PASSED"
            },
            "wic.Wic.test_exclude_path": {
                "status": "PASSED"
            },
            "wic.Wic.test_exclude_path_errors": {
                "status": "PASSED"
            },
            "wic.Wic.test_gpt_image": {
                "status": "PASSED"
            },
            "wic.Wic.test_help": {
                "status": "PASSED"
            },
            "wic.Wic.test_help_create": {
                "status": "PASSED"
            },
            "wic.Wic.test_help_kickstart": {
                "status": "PASSED"
            },
            "wic.Wic.test_help_list": {
                "status": "PASSED"
            },
            "wic.Wic.test_help_overview": {
                "status": "PASSED"
            },
            "wic.Wic.test_help_plugins": {
                "status": "PASSED"
            },
            "wic.Wic.test_iso_image": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/selftest/cases/wic.py\", line 42, in wrapped_f\n    return func(*args, **kwargs)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/selftest/cases/wic.py\", line 170, in test_iso_image\n    bitbake('core-image-minimal core-image-minimal-initramfs')\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/utils/commands.py\", line 218, in bitbake\n    return runCmd(cmd, ignore_status, timeout, output_log=output_log, **options)\n  File \"/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/lib/oeqa/utils/commands.py\", line 196, in runCmd\n    raise AssertionError(\"Command '%s' returned non-zero exit status %d:\\n%s\" % (command, result.status, exc_output))\nAssertionError: Command 'bitbake  core-image-minimal core-image-minimal-initramfs' returned non-zero exit status 1:\nParsing recipes...done.\nParsing of 823 .bb files complete (0 cached, 823 parsed). 1355 targets, 48 skipped, 0 masked, 0 errors.\nNOTE: Resolving any missing task queue dependencies\n\nBuild Configuration:\nBB_VERSION           = \"1.43.0\"\nBUILD_SYS            = \"x86_64-linux\"\nNATIVELSBSTRING      = \"universal\"\nTARGET_SYS           = \"x86_64-poky-linux\"\nMACHINE              = \"qemux86-64\"\nDISTRO               = \"poky\"\nDISTRO_VERSION       = \"2.7+snapshot-20190723\"\nTUNE_FEATURES        = \"m64 core2\"\nTARGET_FPU           = \"\"\nmeta                 \nmeta-poky            \nmeta-yocto-bsp       = \"master-next:96c3c88f021fed2bc017db2a9486b06ce609b140\"\nmeta-selftest        = \"master:0ace48ec40aa55eb1fc8575b97cef828d165726d\"\n\nInitialising tasks...done.\nSstate summary: Wanted 163 Found 158 Missed 5 Current 778 (96% match, 99% complete)\nNOTE: Executing Tasks\nNOTE: Running setscene task 787 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/images/core-image-minimal-initramfs.bb:do_populate_lic_setscene)\nNOTE: Running setscene task 788 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_package_qa_setscene)\nNOTE: Running setscene task 789 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_package_write_rpm_setscene)\nNOTE: Running setscene task 790 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_deploy_setscene)\nNOTE: Running setscene task 791 of 945 (virtual:native:/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-extended/cpio/cpio_2.12.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 792 of 945 (virtual:native:/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-extended/cpio/cpio_2.12.bb:do_populate_lic_setscene)\nNOTE: Running setscene task 795 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/packagegroups/packagegroup-core-boot.bb:do_package_qa_setscene)\nNOTE: Running setscene task 796 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/packagegroups/packagegroup-core-boot.bb:do_package_write_rpm_setscene)\nNOTE: Running setscene task 798 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 799 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb:do_package_qa_setscene)\nNOTE: Running setscene task 800 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb:do_package_write_rpm_setscene)\nNOTE: Running setscene task 801 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb:do_populate_lic_setscene)\nNOTE: Running setscene task 802 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 803 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb:do_package_qa_setscene)\nNOTE: Running setscene task 804 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb:do_package_write_rpm_setscene)\nNOTE: Running setscene task 805 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb:do_populate_lic_setscene)\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_package_qa_setscene: Started\nNOTE: recipe initramfs-framework-1.0-r4: task do_populate_lic_setscene: Started\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_populate_lic_setscene: Started\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_package_write_rpm_setscene: Started\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_package_qa_setscene: Started\nNOTE: recipe initramfs-framework-1.0-r4: task do_populate_sysroot_setscene: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_package_qa_setscene: Started\nNOTE: recipe initramfs-framework-1.0-r4: task do_package_qa_setscene: Started\nNOTE: recipe initramfs-framework-1.0-r4: task do_package_write_rpm_setscene: Started\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_populate_sysroot_setscene: Started\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_package_write_rpm_setscene: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_deploy_setscene: Started\nNOTE: recipe cpio-native-2.12-r0: task do_populate_sysroot_setscene: Started\nNOTE: recipe cpio-native-2.12-r0: task do_populate_lic_setscene: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_package_write_rpm_setscene: Started\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_populate_lic_setscene: Started\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_package_qa_setscene: Succeeded\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_package_qa_setscene: Succeeded\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_package_qa_setscene: Succeeded\nNOTE: Running setscene task 806 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 807 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb:do_package_qa_setscene)\nNOTE: Running setscene task 808 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb:do_package_write_rpm_setscene)\nNOTE: recipe initramfs-framework-1.0-r4: task do_populate_lic_setscene: Succeeded\nNOTE: Running setscene task 809 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb:do_populate_lic_setscene)\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_populate_lic_setscene: Succeeded\nNOTE: recipe initramfs-framework-1.0-r4: task do_package_qa_setscene: Succeeded\nNOTE: Running setscene task 810 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 811 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb:do_package_qa_setscene)\nNOTE: recipe initramfs-module-install-1.0-r1: task do_populate_sysroot_setscene: Started\nNOTE: recipe initramfs-framework-1.0-r4: task do_populate_sysroot_setscene: Succeeded\nNOTE: Running setscene task 812 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb:do_package_write_rpm_setscene)\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_populate_sysroot_setscene: Succeeded\nNOTE: Running setscene task 813 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb:do_populate_lic_setscene)\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_populate_lic_setscene: Succeeded\nNOTE: recipe initramfs-module-install-1.0-r1: task do_package_write_rpm_setscene: Started\nNOTE: Running setscene task 834 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-bsp/grub/grub-efi_2.02.bb:do_package_qa_setscene)\nNOTE: recipe initramfs-framework-1.0-r4: task do_package_write_rpm_setscene: Succeeded\nNOTE: Running setscene task 835 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-bsp/grub/grub-efi_2.02.bb:do_populate_lic_setscene)\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_package_write_rpm_setscene: Succeeded\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_package_write_rpm_setscene: Succeeded\nNOTE: Running setscene task 836 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb:do_packagedata_setscene)\nNOTE: recipe cpio-native-2.12-r0: task do_populate_lic_setscene: Succeeded\nNOTE: Running setscene task 837 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/packagegroups/packagegroup-core-boot.bb:do_packagedata_setscene)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_deploy_setscene: Succeeded\nNOTE: Running setscene task 839 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/udev/udev-extraconf_1.1.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 840 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_populate_sysroot_setscene)\nNOTE: recipe initramfs-module-install-1.0-r1: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe initramfs-module-install-1.0-r1: task do_package_qa_setscene: Started\nNOTE: recipe initramfs-module-install-1.0-r1: task do_populate_lic_setscene: Started\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_populate_sysroot_setscene: Started\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_package_qa_setscene: Started\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_package_write_rpm_setscene: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_populate_sysroot_setscene: Started\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_populate_lic_setscene: Started\nNOTE: recipe grub-efi-2.02-r0: task do_package_qa_setscene: Started\nNOTE: Running setscene task 841 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/udev/udev-extraconf_1.1.bb:do_package_qa_setscene)\nNOTE: recipe grub-efi-2.02-r0: task do_populate_lic_setscene: Started\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_packagedata_setscene: Started\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_packagedata_setscene: Started\nNOTE: recipe udev-extraconf-1.1-r0: task do_populate_sysroot_setscene: Started\nNOTE: recipe cpio-native-2.12-r0: task do_populate_sysroot_setscene: Succeeded\nNOTE: Running setscene task 842 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/udev/udev-extraconf_1.1.bb:do_package_write_rpm_setscene)\nNOTE: recipe udev-extraconf-1.1-r0: task do_package_qa_setscene: Started\nNOTE: recipe initramfs-module-install-1.0-r1: task do_package_write_rpm_setscene: Succeeded\nNOTE: Running setscene task 843 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/udev/udev-extraconf_1.1.bb:do_populate_lic_setscene)\nNOTE: recipe grub-efi-2.02-r0: task do_package_qa_setscene: Succeeded\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_package_qa_setscene: Succeeded\nNOTE: Running setscene task 845 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-extended/parted/parted_3.2.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 846 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-extended/parted/parted_3.2.bb:do_package_qa_setscene)\nNOTE: recipe initramfs-module-install-1.0-r1: task do_package_qa_setscene: Succeeded\nNOTE: Running setscene task 847 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb:do_packagedata_setscene)\nNOTE: recipe udev-extraconf-1.1-r0: task do_package_write_rpm_setscene: Started\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_package_write_rpm_setscene: Succeeded\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_populate_lic_setscene: Succeeded\nNOTE: Running setscene task 848 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb:do_packagedata_setscene)\nNOTE: recipe grub-efi-2.02-r0: task do_populate_lic_setscene: Succeeded\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe initramfs-module-install-1.0-r1: task do_populate_lic_setscene: Succeeded\nNOTE: recipe udev-extraconf-1.1-r0: task do_package_qa_setscene: Succeeded\nNOTE: Running setscene task 849 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb:do_packagedata_setscene)\nNOTE: Running setscene task 850 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-extended/parted/parted_3.2.bb:do_package_write_rpm_setscene)\nNOTE: Running setscene task 851 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-extended/parted/parted_3.2.bb:do_populate_lic_setscene)\nNOTE: Running setscene task 852 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-bsp/grub/grub_2.02.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 853 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-bsp/grub/grub_2.02.bb:do_package_qa_setscene)\nNOTE: recipe udev-extraconf-1.1-r0: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe udev-extraconf-1.1-r0: task do_populate_lic_setscene: Started\nNOTE: Running setscene task 854 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-bsp/grub/grub_2.02.bb:do_populate_lic_setscene)\nNOTE: recipe initramfs-module-setup-live-1.0-r4: task do_packagedata_setscene: Succeeded\nNOTE: Running setscene task 856 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_populate_sysroot_setscene)\nNOTE: recipe parted-3.2-r1: task do_populate_sysroot_setscene: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe parted-3.2-r1: task do_package_qa_setscene: Started\nNOTE: recipe initramfs-module-install-1.0-r1: task do_packagedata_setscene: Started\nNOTE: recipe packagegroup-core-boot-1.0-r17: task do_packagedata_setscene: Succeeded\nNOTE: Running setscene task 857 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_package_qa_setscene)\nNOTE: Running setscene task 859 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_package_write_rpm_setscene)\nNOTE: recipe initramfs-framework-1.0-r4: task do_packagedata_setscene: Started\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_packagedata_setscene: Started\nNOTE: recipe grub-2.02-r0: task do_populate_sysroot_setscene: Started\nNOTE: recipe grub-2.02-r0: task do_populate_lic_setscene: Started\nNOTE: recipe dosfstools-4.1-r0: task do_populate_sysroot_setscene: Started\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_package_write_rpm_setscene: Succeeded\nNOTE: Running setscene task 860 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_packagedata_setscene)\nNOTE: recipe grub-2.02-r0: task do_package_qa_setscene: Started\nNOTE: recipe udev-extraconf-1.1-r0: task do_package_write_rpm_setscene: Succeeded\nNOTE: recipe parted-3.2-r1: task do_populate_lic_setscene: Started\nNOTE: Running setscene task 861 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/udev/udev-extraconf_1.1.bb:do_packagedata_setscene)\nNOTE: recipe parted-3.2-r1: task do_package_write_rpm_setscene: Started\nNOTE: recipe dosfstools-4.1-r0: task do_package_qa_setscene: Started\nNOTE: recipe parted-3.2-r1: task do_package_qa_setscene: Succeeded\nNOTE: Running setscene task 862 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_populate_lic_setscene)\nNOTE: recipe udev-extraconf-1.1-r0: task do_populate_lic_setscene: Succeeded\nNOTE: recipe dosfstools-4.1-r0: task do_package_write_rpm_setscene: Started\nNOTE: Running setscene task 893 of 945 (virtual:native:/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-bsp/grub/grub-efi_2.02.bb:do_populate_lic_setscene)\nNOTE: recipe initramfs-module-install-1.0-r1: task do_packagedata_setscene: Succeeded\nNOTE: recipe parted-3.2-r1: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe udev-extraconf-1.1-r0: task do_packagedata_setscene: Started\nNOTE: recipe grub-2.02-r0: task do_package_qa_setscene: Succeeded\nNOTE: Running setscene task 912 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-bsp/grub/grub-bootconf_1.00.bb:do_populate_sysroot_setscene)\nNOTE: Running setscene task 913 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-bsp/grub/grub-bootconf_1.00.bb:do_package_qa_setscene)\nNOTE: recipe grub-2.02-r0: task do_populate_lic_setscene: Succeeded\nNOTE: Running setscene task 915 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-bsp/grub/grub-bootconf_1.00.bb:do_populate_lic_setscene)\nNOTE: Running setscene task 916 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-graphics/freetype/freetype_2.10.1.bb:do_package_qa_setscene)\nNOTE: recipe dosfstools-4.1-r0: task do_package_qa_setscene: Succeeded\nNOTE: recipe parted-3.2-r1: task do_populate_lic_setscene: Succeeded\nNOTE: recipe initramfs-framework-1.0-r4: task do_packagedata_setscene: Succeeded\nNOTE: Running setscene task 917 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-graphics/freetype/freetype_2.10.1.bb:do_populate_lic_setscene)\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_packagedata_setscene: Started\nNOTE: recipe dosfstools-4.1-r0: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe parted-3.2-r1: task do_package_write_rpm_setscene: Succeeded\nNOTE: recipe initramfs-module-install-efi-1.0-r4: task do_packagedata_setscene: Succeeded\nNOTE: recipe dosfstools-4.1-r0: task do_populate_lic_setscene: Started\nNOTE: recipe grub-efi-native-2.02-r0: task do_populate_lic_setscene: Started\nNOTE: Running setscene task 937 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-extended/parted/parted_3.2.bb:do_packagedata_setscene)\nNOTE: recipe grub-bootconf-1.00-r0: task do_package_qa_setscene: Started\nNOTE: recipe grub-bootconf-1.00-r0: task do_populate_sysroot_setscene: Started\nNOTE: recipe grub-bootconf-1.00-r0: task do_populate_lic_setscene: Started\nNOTE: recipe freetype-2.10.1-r0: task do_package_qa_setscene: Started\nNOTE: recipe grub-2.02-r0: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe dosfstools-4.1-r0: task do_package_write_rpm_setscene: Succeeded\nNOTE: Running setscene task 938 of 945 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_packagedata_setscene)\nNOTE: recipe freetype-2.10.1-r0: task do_populate_lic_setscene: Started\nNOTE: recipe udev-extraconf-1.1-r0: task do_packagedata_setscene: Succeeded\nNOTE: recipe parted-3.2-r1: task do_packagedata_setscene: Started\nNOTE: recipe grub-efi-native-2.02-r0: task do_populate_lic_setscene: Succeeded\nNOTE: recipe freetype-2.10.1-r0: task do_package_qa_setscene: Succeeded\nNOTE: recipe grub-bootconf-1.00-r0: task do_package_qa_setscene: Succeeded\nNOTE: recipe dosfstools-4.1-r0: task do_packagedata_setscene: Started\nNOTE: recipe dosfstools-4.1-r0: task do_populate_lic_setscene: Succeeded\nNOTE: recipe grub-bootconf-1.00-r0: task do_populate_lic_setscene: Succeeded\nNOTE: recipe grub-bootconf-1.00-r0: task do_populate_sysroot_setscene: Succeeded\nNOTE: recipe freetype-2.10.1-r0: task do_populate_lic_setscene: Succeeded\nNOTE: recipe parted-3.2-r1: task do_packagedata_setscene: Succeeded\nNOTE: recipe dosfstools-4.1-r0: task do_packagedata_setscene: Succeeded\nNOTE: recipe linux-yocto-5.0.19+gitAUTOINC+c2e34d9ab2_00638cdd8f-r0: task do_packagedata_setscene: Succeeded\nNOTE: Setscene tasks completed\nNOTE: Running noexec task 2121 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/images/core-image-minimal-initramfs.bb:do_fetch)\nNOTE: Running task 2535 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/images/core-image-minimal-initramfs.bb:do_prepare_recipe_sysroot)\nNOTE: Running task 2613 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/images/core-image-minimal.bb:do_rootfs)\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_prepare_recipe_sysroot: Started\nNOTE: Running noexec task 2719 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-support/gnome-desktop-testing/gnome-desktop-testing_2018.1.bb:do_build)\nNOTE: Running noexec task 2720 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-support/shared-mime-info/shared-mime-info_1.10.bb:do_build)\nNOTE: Running noexec task 2723 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-devtools/libtool/libtool_2.4.6.bb:do_build)\nNOTE: Running noexec task 2726 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/libxml/libxml2_2.9.9.bb:do_build)\nNOTE: Running noexec task 2727 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/glib-2.0/glib-2.0_2.60.5.bb:do_build)\nNOTE: Running noexec task 2740 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-extended/gawk/gawk_5.0.1.bb:do_build)\nNOTE: Running noexec task 2742 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-support/ca-certificates/ca-certificates_20190110.bb:do_build)\nNOTE: Running noexec task 2743 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-extended/unzip/unzip_6.0.bb:do_build)\nNOTE: Running noexec task 2744 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/dbus/dbus-test_1.12.16.bb:do_build)\nNOTE: Running noexec task 2745 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-graphics/freetype/freetype_2.10.1.bb:do_build)\nNOTE: Running noexec task 2750 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-support/libpcre/libpcre_8.43.bb:do_build)\nNOTE: Running noexec task 2753 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-devtools/elfutils/elfutils_0.176.bb:do_build)\nNOTE: Running noexec task 2756 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-connectivity/openssl/openssl_1.1.1c.bb:do_build)\nNOTE: Running noexec task 2759 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-support/libcheck/libcheck_0.12.0.bb:do_build)\nNOTE: Running noexec task 2764 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/readline/readline_8.0.bb:do_build)\nNOTE: Running noexec task 2798 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-devtools/python/python3_3.7.4.bb:do_build)\nNOTE: Running noexec task 2800 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-extended/grep/grep_3.3.bb:do_build)\nNOTE: Running noexec task 2802 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-connectivity/iproute2/iproute2_5.2.0.bb:do_build)\nNOTE: Running noexec task 2803 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-extended/bc/bc_1.07.1.bb:do_build)\nNOTE: Running noexec task 2804 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-extended/which/which_2.21.bb:do_build)\nNOTE: Running noexec task 2805 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-connectivity/socat/socat_1.7.3.3.bb:do_build)\nNOTE: Running noexec task 2806 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-devtools/btrfs-tools/btrfs-tools_5.1.1.bb:do_build)\nNOTE: Running noexec task 2809 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-extended/bzip2/bzip2_1.0.8.bb:do_build)\nNOTE: Running noexec task 2810 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/coreutils/coreutils_8.31.bb:do_build)\nNOTE: Running noexec task 2811 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-extended/diffutils/diffutils_3.7.bb:do_build)\nNOTE: Running noexec task 2812 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-extended/procps/procps_3.3.15.bb:do_build)\nNOTE: Running noexec task 2813 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-extended/sed/sed_4.2.2.bb:do_build)\nNOTE: Running noexec task 2816 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-extended/bash/bash_5.0.bb:do_build)\nNOTE: Running noexec task 2818 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/kbd/kbd_2.0.4.bb:do_build)\nNOTE: Running noexec task 2820 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/systemd/systemd-compat-units.bb:do_build)\nNOTE: Running noexec task 2822 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/dbus/dbus_1.12.16.bb:do_build)\nNOTE: Running noexec task 2825 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-bsp/grub/grub_2.02.bb:do_build)\nNOTE: Running noexec task 2828 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-support/attr/attr_2.4.47.bb:do_build)\nNOTE: Running noexec task 2829 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-support/gdbm/gdbm_1.18.1.bb:do_build)\nNOTE: Running noexec task 2843 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-extended/shadow/shadow_4.6.bb:do_build)\nNOTE: Running noexec task 2844 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-support/bash-completion/bash-completion_2.9.bb:do_build)\nNOTE: Running noexec task 2845 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-kernel/kmod/kmod_git.bb:do_build)\nNOTE: Running noexec task 2849 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-support/attr/acl_2.2.52.bb:do_build)\nNOTE: Running noexec task 2854 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-extended/xz/xz_5.2.4.bb:do_build)\nNOTE: Running noexec task 2857 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-devtools/opkg-utils/opkg-utils_0.4.1.bb:do_build)\nNOTE: Running noexec task 2860 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/ncurses/ncurses_6.1+20181013.bb:do_build)\nNOTE: Running noexec task 2907 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.44.5.bb:do_build)\nNOTE: Running noexec task 2908 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-devtools/perl/perl_5.30.0.bb:do_build)\nNOTE: Running noexec task 2914 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/busybox/busybox_1.31.0.bb:do_build)\nNOTE: Running noexec task 2933 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-kernel/linux/linux-yocto_5.0.bb:do_build)\nNOTE: Running noexec task 2948 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-bsp/grub/grub-bootconf_1.00.bb:do_build)\nNOTE: Running noexec task 2949 of 2988 (virtual:native:/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-bsp/grub/grub-efi_2.02.bb:do_build)\nNOTE: Running noexec task 2951 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb:do_build)\nNOTE: Running noexec task 2952 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-extended/parted/parted_3.2.bb:do_build)\nNOTE: Running noexec task 2953 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/udev/udev-extraconf_1.1.bb:do_build)\nNOTE: Running noexec task 2955 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-bsp/grub/grub-efi_2.02.bb:do_build)\nNOTE: Running noexec task 2959 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/initrdscripts/initramfs-module-install-efi_1.0.bb:do_build)\nNOTE: Running noexec task 2960 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/initrdscripts/initramfs-module-install_1.0.bb:do_build)\nNOTE: Running noexec task 2961 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/initrdscripts/initramfs-module-setup-live_1.0.bb:do_build)\nNOTE: Running noexec task 2962 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/initrdscripts/initramfs-framework_1.0.bb:do_build)\nNOTE: Running noexec task 2963 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/packagegroups/packagegroup-core-boot.bb:do_build)\nNOTE: Running noexec task 2964 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-devtools/syslinux/syslinux_6.04-pre2.bb:do_build)\nNOTE: Running noexec task 2967 of 2988 (virtual:native:/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-extended/cpio/cpio_2.12.bb:do_build)\nNOTE: recipe core-image-minimal-1.0-r0: task do_rootfs: Started\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_prepare_recipe_sysroot: Succeeded\nNOTE: Running task 2973 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/images/core-image-minimal-initramfs.bb:do_rootfs)\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_rootfs: Started\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_rootfs: Succeeded\nNOTE: Running task 2974 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/images/core-image-minimal-initramfs.bb:do_image_qa)\nNOTE: Running task 2975 of 2988 (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/images/core-image-minimal-initramfs.bb:do_write_qemuboot_conf)\nERROR: core-image-minimal-1.0-r0 do_rootfs: The postinstall intercept hook 'update_udev_hwdb' failed, details in /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25288/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/temp/log.do_rootfs\nERROR: core-image-minimal-1.0-r0 do_rootfs: \nERROR: core-image-minimal-1.0-r0 do_rootfs: Function failed: do_rootfs\nERROR: Logfile of failure stored in: /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25288/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/temp/log.do_rootfs.766\nNOTE: recipe core-image-minimal-1.0-r0: task do_rootfs: Failed\nERROR: Task (/home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/images/core-image-minimal.bb:do_rootfs) failed with exit code '1'\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_write_qemuboot_conf: Started\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_image_qa: Started\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_write_qemuboot_conf: Succeeded\nNOTE: recipe core-image-minimal-initramfs-1.0-r0: task do_image_qa: Succeeded\nNOTE: Tasks Summary: Attempted 2975 tasks of which 2911 didn't need to be rerun and 1 failed.\nNOTE: The errors for this build are stored in /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25288/tmp/log/error-report/error_report_20190723023533.txt\nYou can send the errors to a reports server by running:\n  send-error-report /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/build-st-25288/tmp/log/error-report/error_report_20190723023533.txt [-s server]\nNOTE: The contents of these logs will be posted in public if you use the above command with the default server. Please ensure you remove any identifying or proprietary information when prompted before sending.\n\nSummary: 1 task failed:\n  /home/pokybuild/yocto-worker/oe-selftest-ubuntu/build/meta/recipes-core/images/core-image-minimal.bb:do_rootfs\nSummary: There were 3 ERROR messages shown, returning a non-zero exit code.\n\n",
                "status": "FAILED"
            },
            "wic.Wic.test_list_images": {
                "status": "PASSED"
            },
            "wic.Wic.test_list_source_plugins": {
                "status": "PASSED"
            },
            "wic.Wic.test_listed_images_help": {
                "status": "PASSED"
            },
            "wic.Wic.test_listhelp": {
                "status": "PASSED"
            },
            "wic.Wic.test_mkefidisk": {
                "status": "PASSED"
            },
            "wic.Wic.test_no_command": {
                "status": "PASSED"
            },
            "wic.Wic.test_qemux86_directdisk": {
                "status": "PASSED"
            },
            "wic.Wic.test_rootfs_artifacts": {
                "status": "PASSED"
            },
            "wic.Wic.test_rootfs_indirect_recipes": {
                "status": "PASSED"
            },
            "wic.Wic.test_sdimage_bootpart": {
                "status": "PASSED"
            },
            "wic.Wic.test_skip_build_check_long": {
                "status": "PASSED"
            },
            "wic.Wic.test_skip_build_check_short": {
                "status": "PASSED"
            },
            "wic.Wic.test_systemd_bootdisk": {
                "status": "PASSED"
            },
            "wic.Wic.test_unsupported_subcommand": {
                "status": "PASSED"
            },
            "wic.Wic.test_version": {
                "status": "PASSED"
            },
            "wic.Wic.test_wrong_compressor": {
                "status": "PASSED"
            },
            "wic.Wic2.test_biosplusefi_plugin": {
                "status": "PASSED"
            },
            "wic.Wic2.test_biosplusefi_plugin_qemu": {
                "status": "PASSED"
            },
            "wic.Wic2.test_bmap_long": {
                "status": "PASSED"
            },
            "wic.Wic2.test_bmap_short": {
                "status": "PASSED"
            },
            "wic.Wic2.test_expand_mbr_image": {
                "status": "PASSED"
            },
            "wic.Wic2.test_fixed_size": {
                "status": "PASSED"
            },
            "wic.Wic2.test_fixed_size_error": {
                "status": "PASSED"
            },
            "wic.Wic2.test_fs_types": {
                "status": "PASSED"
            },
            "wic.Wic2.test_image_bootpart_globbed": {
                "status": "PASSED"
            },
            "wic.Wic2.test_image_env": {
                "status": "PASSED"
            },
            "wic.Wic2.test_image_vars_dir_long": {
                "status": "PASSED"
            },
            "wic.Wic2.test_image_vars_dir_short": {
                "status": "PASSED"
            },
            "wic.Wic2.test_kickstart_parser": {
                "status": "PASSED"
            },
            "wic.Wic2.test_mkfs_extraopts": {
                "status": "PASSED"
            },
            "wic.Wic2.test_qemu": {
                "status": "PASSED"
            },
            "wic.Wic2.test_qemu_efi": {
                "status": "PASSED"
            },
            "wic.Wic2.test_rawcopy_plugin": {
                "status": "PASSED"
            },
            "wic.Wic2.test_rawcopy_plugin_qemu": {
                "status": "PASSED"
            },
            "wic.Wic2.test_sparse_copy": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_cp": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_cp_ext": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_image_type": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_ls": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_ls_ext": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_rm": {
                "status": "PASSED"
            },
            "wic.Wic2.test_wic_rm_ext": {
                "status": "PASSED"
            }
        }
    },
    "oeselftest_ubuntu-18.04_qemux86_20190723020829": {
        "configuration": {
            "HOST_DISTRO": "ubuntu-18.04",
            "HOST_NAME": "ubuntu1804-ty-2",
            "LAYERS": {
                "meta": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-poky": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-selftest": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                },
                "meta-yocto-bsp": {
                    "branch": "master-next",
                    "commit": "96c3c88f021fed2bc017db2a9486b06ce609b140",
                    "commit_count": 55075
                }
            },
            "MACHINE": "qemux86",
            "STARTTIME": "20190723020829",
            "TESTSERIES": "qemux86",
            "TEST_TYPE": "oeselftest"
        },
        "result": {
            "meta_ide.MetaIDE.test_meta_ide_can_build_cpio_project": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_can_compile_c_program": {
                "status": "PASSED"
            },
            "meta_ide.MetaIDE.test_meta_ide_had_installed_meta_ide_support": {
                "status": "PASSED"
            },
            "runqemu.QemuTest.test_qemu_can_shutdown": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_deploy_hddimg": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_ext4": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_iso": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_machine_slirp_qcow2": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemux86/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/qemux86/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemux86/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 114, in test_boot_machine_slirp_qcow2\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib/python3.6/contextlib.py\", line 81, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/qemux86/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/qemux86/build/build-st-27357/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/qemux86/build/build-st-27357/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723021215:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/qemux86/build/build-st-27357/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723021215\nINFO: SSH log file: /home/pokybuild/yocto-worker/qemux86/build/build-st-27357/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723021215\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:56061\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:58901\nDEBUG: launchcmd=runqemu nographic kvm slirp wic.qcow2 qemux86-64 tcpserial=56061:58901 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_27357\"\nDEBUG: runqemu started, pid is 13662\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 02:12:16)\nDEBUG: qemu started in 1.50225830078125 seconds - qemu procces pid is 13696 (07/23/19 02:12:18)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running MACHINE=qemux86-64 bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Port forward: hostfwd=tcp::2222-:22 hostfwd=tcp::2323-:23\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/qemux86/build/build-st-27357/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:35:02 -netdev user,id=net0,hostfwd=tcp::2222-:22,hostfwd=tcp::2323-:23,tftp=/home/pokybuild/yocto-worker/qemux86/build/build-st-27357/tmp/deploy/images/qemux86-64 -drive file=/home/pokybuild/yocto-worker/qemux86/build/build-st-27357/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64-20190723020900.rootfs.wic.qcow2,if=virtio,format=qcow2 -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:56061 -serial tcp:127.0.0.1:58901  -pidfile pidfile_27357 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 02:12:18)\nDEBUG: Connection from 127.0.0.1:58564\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 02:28:59)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/qemux86/build/build-st-27357/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723021215\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/qemux86/build/build-st-27357/tmp/log/runtime-hostdump/201907230228_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_qemu_boot": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image": {
                "status": "PASSED"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vdi": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemux86/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/qemux86/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemux86/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 85, in test_boot_recipe_image_vdi\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib/python3.6/contextlib.py\", line 81, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/qemux86/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/qemux86/build/build-st-27357/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/qemux86/build/build-st-27357/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723022929:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/qemux86/build/build-st-27357/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723022929\nINFO: SSH log file: /home/pokybuild/yocto-worker/qemux86/build/build-st-27357/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723022929\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:40791\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:57977\nDEBUG: launchcmd=runqemu nographic kvm core-image-minimal wic.vdi tcpserial=40791:57977 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_27357\"\nDEBUG: runqemu started, pid is 16591\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 02:29:31)\nDEBUG: qemu started in 1.5029025077819824 seconds - qemu procces pid is 16618 (07/23/19 02:29:33)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Using preconfigured tap device tap0\nrunqemu - INFO - If this is not intended, touch /tmp/qemu-tap-locks/tap0.skip to make runqemu skip tap0.\nrunqemu - INFO - Network configuration: 192.168.7.2::192.168.7.1:255.255.255.0\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/qemux86/build/build-st-27357/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:34:02 -netdev tap,id=net0,ifname=tap0,script=no,downscript=no -drive file=/home/pokybuild/yocto-worker/qemux86/build/build-st-27357/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.wic.vdi,if=virtio,format=vdi -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:40791 -serial tcp:127.0.0.1:57977  -pidfile pidfile_27357 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 02:29:33)\nDEBUG: Connection from 127.0.0.1:42372\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 02:46:14)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/qemux86/build/build-st-27357/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723022929\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/qemux86/build/build-st-27357/tmp/log/runtime-hostdump/201907230246_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_recipe_image_vmdk": {
                "log": "testtools.testresult.real._StringException: Traceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemux86/build/meta/lib/oeqa/utils/commands.py\", line 339, in runqemu\n    qemu.start(params=qemuparams, ssh=ssh, runqemuparams=runqemuparams, launch_cmd=launch_cmd, discard_writes=discard_writes)\n  File \"/home/pokybuild/yocto-worker/qemux86/build/meta/lib/oeqa/targetcontrol.py\", line 178, in start\n    raise bb.build.FuncFailed(\"%s - FAILED to start qemu - check the task log and the boot log\" % self.pn)\nbb.build.FuncFailed: Function failed: core-image-minimal - FAILED to start qemu - check the task log and the boot log\n\nDuring handling of the above exception, another exception occurred:\n\nTraceback (most recent call last):\n  File \"/home/pokybuild/yocto-worker/qemux86/build/meta/lib/oeqa/selftest/cases/runqemu.py\", line 78, in test_boot_recipe_image_vmdk\n    with runqemu(self.recipe, ssh=False, launch_cmd=cmd) as qemu:\n  File \"/usr/lib/python3.6/contextlib.py\", line 81, in __enter__\n    return next(self.gen)\n  File \"/home/pokybuild/yocto-worker/qemux86/build/meta/lib/oeqa/utils/commands.py\", line 345, in runqemu\n    raise Exception(msg)\nException: Failed to start QEMU - see the logs in /home/pokybuild/yocto-worker/qemux86/build/build-st-27357/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimageQemurunner log output from /home/pokybuild/yocto-worker/qemux86/build/build-st-27357/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemurunner_log.20190723024617:\nINFO: rootfs file: \nINFO: Qemu log file: /home/pokybuild/yocto-worker/qemux86/build/build-st-27357/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723024617\nINFO: SSH log file: /home/pokybuild/yocto-worker/qemux86/build/build-st-27357/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/ssh_target_log.20190723024617\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:49093\nDEBUG: Created listening socket for qemu serial console on: 127.0.0.1:45797\nDEBUG: launchcmd=runqemu nographic kvm core-image-minimal wic.vmdk tcpserial=49093:45797 bootparams=\"console=tty1 console=ttyS0,115200n8 printk.time=1\" qemuparams=\"-pidfile pidfile_27357\"\nDEBUG: runqemu started, pid is 19604\nDEBUG: waiting at most 120 seconds for qemu pid (07/23/19 02:46:18)\nDEBUG: qemu started in 1.502612829208374 seconds - qemu procces pid is 19632 (07/23/19 02:46:20)\nDEBUG: Target IP: None\nDEBUG: Server IP: None\nDEBUG: Starting logging thread\nDEBUG: Starting thread event loop\nDEBUG: Connection request received\nDEBUG: Setting connection established event\nDEBUG: Output from runqemu:\nrunqemu - INFO - Running bitbake -e...\nrunqemu - INFO - Continuing with the following parameters:\n\nrunqemu - INFO - Using preconfigured tap device tap0\nrunqemu - INFO - If this is not intended, touch /tmp/qemu-tap-locks/tap0.skip to make runqemu skip tap0.\nrunqemu - INFO - Network configuration: 192.168.7.2::192.168.7.1:255.255.255.0\nrunqemu - INFO - Running /home/pokybuild/yocto-worker/qemux86/build/build-st-27357/tmp/work/x86_64-linux/qemu-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/qemu-system-x86_64 -device virtio-net-pci,netdev=net0,mac=52:54:00:12:34:02 -netdev tap,id=net0,ifname=tap0,script=no,downscript=no -drive file=/home/pokybuild/yocto-worker/qemux86/build/build-st-27357/tmp/deploy/images/qemux86-64/core-image-minimal-qemux86-64.wic.vmdk,if=virtio,format=vmdk -vga vmware -show-cursor -usb -device usb-tablet -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0  -nographic  -cpu core2duo -enable-kvm -m 256 -serial tcp:127.0.0.1:49093 -serial tcp:127.0.0.1:45797  -pidfile pidfile_27357 \n\nQEMU 4.0.0 monitor - type 'help' for more information\n(qemu) \nDEBUG: Waiting at most 1000 seconds for login banner (07/23/19 02:46:20)\nDEBUG: Connection from 127.0.0.1:40674\nWARNING: Target didn't reach login banner in 1000 seconds (07/23/19 03:03:01)\nWARNING: Last 25 lines of text:\nc[?7l[2J[0mSeaBIOS (version rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org)\n\n\niPXE (http://ipxe.org) 00:03.0 C980 PCI2.10 PnP PMM+0FF91310+0FEF1310 C980\nPress Ctrl-B to configure iPXE (PCI 00:03.0)...\n                                                                               \n\n\nBooting from Hard Disk...\n\nSYSLINUX 6.04 EDD 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et a\nSYSLINUX 6.04 6.04-pre2 Copyright (C) 1994-2015 H. Peter Anvin et al\nl\nLoading /vmlinuz...Loading /vmlinuz...  ook\nc[?7l[2J\nWARNING: Check full boot log: /home/pokybuild/yocto-worker/qemux86/build/build-st-27357/tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/testimage/qemu_boot_log.20190723024617\nWARNING: Qemu ended unexpectedly, dump data from host is in /home/pokybuild/yocto-worker/qemux86/build/build-st-27357/tmp/log/runtime-hostdump/201907230303_qemu\nDEBUG: Stopping logging thread\nDEBUG: Stop event received\nDEBUG: Tearing down logging thread\nDEBUG: Sending SIGTERM to runqemu\n\n",
                "status": "ERROR"
            },
            "runqemu.RunqemuTests.test_boot_rootfs": {
                "status": "PASSED"
            }
        }
    }
}