summaryrefslogtreecommitdiff
path: root/open_issues/open_posix_test_suite.mdwn
blob: 5afa65388a1f2caebf0e7a3c53d233b01465d4ab (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
[[!meta copyright="Copyright © 2009, 2012 Free Software Foundation, Inc."]]

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

[[!meta title="Open POSIX Test Suite"]]


# 2009-07-27

Here's a log of a [Open POSIX Test Suite](http://posixtest.sourceforge.net/)
run (get sources, `make`, inspect `logfile`); this is from 2009-07-27 HEAD
sources on a 2009-07-27 Debian GNU/Hurd system.

The `logfile` has been post-processed with:

    $ sed ↩
        -e '/build: PASS$/d' ↩
        -e '/link: PASS$/d' ↩
        -e '/link: SKIP$/d' ↩
        -e '/execution: PASS$/d'

The tests that failed as *INTERRUPTED* were hanging and have manually been
interrupted using `kill [PID]`.

    conformance/definitions/signal_h/16-1: build: FAILED: Compiler output: 
    conformance/definitions/signal_h/16-1.c:14: error: ‘SA_SIGINFO’ undeclared here (not in a function)
    conformance/definitions/signal_h/16-1.c:15: error: ‘SA_NOCLDWAIT’ undeclared here (not in a function)
    conformance/definitions/signal_h/26-1: build: FAILED: Compiler output: 
    conformance/definitions/signal_h/26-1.c:9: error: expected ‘)’ before ‘int’
    conformance/definitions/signal_h/26-1.c: In function ‘dummyfcn’:
    conformance/definitions/signal_h/26-1.c:13: error: ‘pthread_kill_test’ undeclared (first use in this function)
    conformance/definitions/signal_h/26-1.c:13: error: (Each undeclared identifier is reported only once
    conformance/definitions/signal_h/26-1.c:13: error: for each function it appears in.)
    conformance/definitions/signal_h/26-1.c:13: error: expected ‘;’ before ‘dummyvar’
    conformance/definitions/signal_h/26-1.c:14: error: ‘dummyvar’ undeclared (first use in this function)
    conformance/definitions/signal_h/26-1.c:14: error: ‘pthread_kill’ undeclared (first use in this function)
    conformance/interfaces/aio_cancel/3-1: build: FAILED: Compiler output: 
    conformance/interfaces/aio_cancel/3-1.c: In function ‘main’:
    conformance/interfaces/aio_cancel/3-1.c:96: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/aio_cancel/3-1.c:96: error: (Each undeclared identifier is reported only once
    conformance/interfaces/aio_cancel/3-1.c:96: error: for each function it appears in.)
    conformance/interfaces/aio_cancel/3-1.c:97: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/aio_fsync/1-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/aio_fsync/1-1.c: In function ‘main’:
    conformance/interfaces/aio_fsync/1-1.c:19: error: implicit declaration of function ‘exit’
    conformance/interfaces/aio_fsync/1-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/aio_fsync/10-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/aio_fsync/10-1.c: In function ‘main’:
    conformance/interfaces/aio_fsync/10-1.c:33: error: implicit declaration of function ‘exit’
    conformance/interfaces/aio_fsync/10-1.c:33: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/aio_fsync/11-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/aio_fsync/11-1.c: In function ‘main’:
    conformance/interfaces/aio_fsync/11-1.c:19: error: implicit declaration of function ‘exit’
    conformance/interfaces/aio_fsync/11-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/aio_fsync/13-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/aio_fsync/13-1.c: In function ‘main’:
    conformance/interfaces/aio_fsync/13-1.c:19: error: implicit declaration of function ‘exit’
    conformance/interfaces/aio_fsync/13-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/aio_fsync/6-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/aio_fsync/6-1.c: In function ‘main’:
    conformance/interfaces/aio_fsync/6-1.c:19: error: implicit declaration of function ‘exit’
    conformance/interfaces/aio_fsync/6-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/aio_fsync/7-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/aio_fsync/7-1.c: In function ‘main’:
    conformance/interfaces/aio_fsync/7-1.c:19: error: implicit declaration of function ‘exit’
    conformance/interfaces/aio_fsync/7-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/aio_read/12-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/aio_read/12-1.c: In function ‘main’:
    conformance/interfaces/aio_read/12-1.c:34: error: implicit declaration of function ‘exit’
    conformance/interfaces/aio_read/12-1.c:34: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/aio_read/13-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/aio_read/13-1.c: In function ‘main’:
    conformance/interfaces/aio_read/13-1.c:33: error: implicit declaration of function ‘exit’
    conformance/interfaces/aio_read/13-1.c:33: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/aio_read/14-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/aio_read/14-1.c: In function ‘main’:
    conformance/interfaces/aio_read/14-1.c:34: error: implicit declaration of function ‘exit’
    conformance/interfaces/aio_read/14-1.c:34: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/aio_read/15-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/aio_read/15-1.c: In function ‘main’:
    conformance/interfaces/aio_read/15-1.c:30: error: implicit declaration of function ‘exit’
    conformance/interfaces/aio_read/15-1.c:30: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/aio_read/6-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/aio_read/6-1.c: In function ‘main’:
    conformance/interfaces/aio_read/6-1.c:30: error: implicit declaration of function ‘exit’
    conformance/interfaces/aio_read/6-1.c:30: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/aio_suspend/1-1: build: FAILED: Compiler output: 
    conformance/interfaces/aio_suspend/1-1.c: In function ‘main’:
    conformance/interfaces/aio_suspend/1-1.c:120: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/aio_suspend/1-1.c:120: error: (Each undeclared identifier is reported only once
    conformance/interfaces/aio_suspend/1-1.c:120: error: for each function it appears in.)
    conformance/interfaces/aio_suspend/1-1.c:126: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/aio_suspend/2-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/aio_suspend/2-1.c: In function ‘main’:
    conformance/interfaces/aio_suspend/2-1.c:31: error: implicit declaration of function ‘exit’
    conformance/interfaces/aio_suspend/2-1.c:31: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/aio_suspend/6-1: build: FAILED: Compiler output: 
    conformance/interfaces/aio_suspend/6-1.c: In function ‘main’:
    conformance/interfaces/aio_suspend/6-1.c:116: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/aio_suspend/6-1.c:116: error: (Each undeclared identifier is reported only once
    conformance/interfaces/aio_suspend/6-1.c:116: error: for each function it appears in.)
    conformance/interfaces/aio_suspend/6-1.c:122: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/aio_suspend/7-1: build: FAILED: Compiler output: 
    conformance/interfaces/aio_suspend/7-1.c: In function ‘main’:
    conformance/interfaces/aio_suspend/7-1.c:118: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/aio_suspend/7-1.c:118: error: (Each undeclared identifier is reported only once
    conformance/interfaces/aio_suspend/7-1.c:118: error: for each function it appears in.)
    conformance/interfaces/aio_suspend/7-1.c:124: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/aio_suspend/8-1: build: FAILED: Compiler output: 
    conformance/interfaces/aio_suspend/8-1.c: In function ‘main’:
    conformance/interfaces/aio_suspend/8-1.c:121: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/aio_suspend/8-1.c:121: error: (Each undeclared identifier is reported only once
    conformance/interfaces/aio_suspend/8-1.c:121: error: for each function it appears in.)
    conformance/interfaces/aio_suspend/8-1.c:127: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/aio_write/10-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/aio_write/10-1.c: In function ‘main’:
    conformance/interfaces/aio_write/10-1.c:32: error: implicit declaration of function ‘exit’
    conformance/interfaces/aio_write/10-1.c:32: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/aio_write/11-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/aio_write/11-1.c: In function ‘main’:
    conformance/interfaces/aio_write/11-1.c:32: error: implicit declaration of function ‘exit’
    conformance/interfaces/aio_write/11-1.c:32: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/aio_write/12-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/aio_write/12-1.c: In function ‘main’:
    conformance/interfaces/aio_write/12-1.c:31: error: implicit declaration of function ‘exit’
    conformance/interfaces/aio_write/12-1.c:31: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/aio_write/13-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/aio_write/13-1.c: In function ‘main’:
    conformance/interfaces/aio_write/13-1.c:30: error: implicit declaration of function ‘exit’
    conformance/interfaces/aio_write/13-1.c:30: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/aio_write/4-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/aio_write/4-1.c: In function ‘main’:
    conformance/interfaces/aio_write/4-1.c:30: error: implicit declaration of function ‘exit’
    conformance/interfaces/aio_write/4-1.c:30: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/fork/2-1: build: FAILED: Compiler output: 
    conformance/interfaces/fork/2-1.c: In function ‘main’:
    conformance/interfaces/fork/2-1.c:240: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/fork/2-1.c:240: error: (Each undeclared identifier is reported only once
    conformance/interfaces/fork/2-1.c:240: error: for each function it appears in.)
    conformance/interfaces/fork/2-1.c:241: error: ‘SA_NOCLDWAIT’ undeclared (first use in this function)
    conformance/interfaces/lio_listio/1-1: build: FAILED: Compiler output: 
    conformance/interfaces/lio_listio/1-1.c: In function ‘main’:
    conformance/interfaces/lio_listio/1-1.c:110: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/lio_listio/1-1.c:110: error: (Each undeclared identifier is reported only once
    conformance/interfaces/lio_listio/1-1.c:110: error: for each function it appears in.)
    conformance/interfaces/lio_listio/1-1.c:122: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/lio_listio/10-1: build: FAILED: Compiler output: 
    conformance/interfaces/lio_listio/10-1.c: In function ‘main’:
    conformance/interfaces/lio_listio/10-1.c:107: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/lio_listio/10-1.c:107: error: (Each undeclared identifier is reported only once
    conformance/interfaces/lio_listio/10-1.c:107: error: for each function it appears in.)
    conformance/interfaces/lio_listio/10-1.c:119: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/lio_listio/11-1: build: FAILED: Compiler output: 
    conformance/interfaces/lio_listio/11-1.c: In function ‘main’:
    conformance/interfaces/lio_listio/11-1.c:111: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/lio_listio/11-1.c:111: error: (Each undeclared identifier is reported only once
    conformance/interfaces/lio_listio/11-1.c:111: error: for each function it appears in.)
    conformance/interfaces/lio_listio/11-1.c:123: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/lio_listio/14-1: build: FAILED: Compiler output: 
    conformance/interfaces/lio_listio/14-1.c: In function ‘main’:
    conformance/interfaces/lio_listio/14-1.c:111: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/lio_listio/14-1.c:111: error: (Each undeclared identifier is reported only once
    conformance/interfaces/lio_listio/14-1.c:111: error: for each function it appears in.)
    conformance/interfaces/lio_listio/14-1.c:123: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/lio_listio/15-1: build: FAILED: Compiler output: 
    conformance/interfaces/lio_listio/15-1.c: In function ‘main’:
    conformance/interfaces/lio_listio/15-1.c:111: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/lio_listio/15-1.c:111: error: (Each undeclared identifier is reported only once
    conformance/interfaces/lio_listio/15-1.c:111: error: for each function it appears in.)
    conformance/interfaces/lio_listio/15-1.c:123: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/lio_listio/16-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/lio_listio/16-1.c: In function ‘main’:
    conformance/interfaces/lio_listio/16-1.c:32: error: implicit declaration of function ‘exit’
    conformance/interfaces/lio_listio/16-1.c:32: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/lio_listio/17-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/lio_listio/17-1.c: In function ‘main’:
    conformance/interfaces/lio_listio/17-1.c:19: error: implicit declaration of function ‘exit’
    conformance/interfaces/lio_listio/17-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/lio_listio/19-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/lio_listio/19-1.c: In function ‘main’:
    conformance/interfaces/lio_listio/19-1.c:19: error: implicit declaration of function ‘exit’
    conformance/interfaces/lio_listio/19-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/lio_listio/2-1: build: FAILED: Compiler output: 
    conformance/interfaces/lio_listio/2-1.c: In function ‘main’:
    conformance/interfaces/lio_listio/2-1.c:106: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/lio_listio/2-1.c:106: error: (Each undeclared identifier is reported only once
    conformance/interfaces/lio_listio/2-1.c:106: error: for each function it appears in.)
    conformance/interfaces/lio_listio/2-1.c:118: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/lio_listio/20-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/lio_listio/20-1.c: In function ‘main’:
    conformance/interfaces/lio_listio/20-1.c:19: error: implicit declaration of function ‘exit’
    conformance/interfaces/lio_listio/20-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/lio_listio/21-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/lio_listio/21-1.c: In function ‘main’:
    conformance/interfaces/lio_listio/21-1.c:19: error: implicit declaration of function ‘exit’
    conformance/interfaces/lio_listio/21-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/lio_listio/22-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/lio_listio/22-1.c: In function ‘main’:
    conformance/interfaces/lio_listio/22-1.c:19: error: implicit declaration of function ‘exit’
    conformance/interfaces/lio_listio/22-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/lio_listio/23-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/lio_listio/23-1.c: In function ‘main’:
    conformance/interfaces/lio_listio/23-1.c:19: error: implicit declaration of function ‘exit’
    conformance/interfaces/lio_listio/23-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/lio_listio/24-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/lio_listio/24-1.c: In function ‘main’:
    conformance/interfaces/lio_listio/24-1.c:19: error: implicit declaration of function ‘exit’
    conformance/interfaces/lio_listio/24-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/lio_listio/25-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/lio_listio/25-1.c: In function ‘main’:
    conformance/interfaces/lio_listio/25-1.c:19: error: implicit declaration of function ‘exit’
    conformance/interfaces/lio_listio/25-1.c:19: error: incompatible implicit declaration of built-in function ‘exit’
    conformance/interfaces/lio_listio/3-1: build: FAILED: Compiler output: 
    conformance/interfaces/lio_listio/3-1.c: In function ‘main’:
    conformance/interfaces/lio_listio/3-1.c:107: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/lio_listio/3-1.c:107: error: (Each undeclared identifier is reported only once
    conformance/interfaces/lio_listio/3-1.c:107: error: for each function it appears in.)
    conformance/interfaces/lio_listio/3-1.c:119: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/lio_listio/4-1: build: FAILED: Compiler output: 
    conformance/interfaces/lio_listio/4-1.c: In function ‘main’:
    conformance/interfaces/lio_listio/4-1.c:114: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/lio_listio/4-1.c:114: error: (Each undeclared identifier is reported only once
    conformance/interfaces/lio_listio/4-1.c:114: error: for each function it appears in.)
    conformance/interfaces/lio_listio/4-1.c:126: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/lio_listio/7-1: build: FAILED: Compiler output: 
    conformance/interfaces/lio_listio/7-1.c: In function ‘main’:
    conformance/interfaces/lio_listio/7-1.c:113: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/lio_listio/7-1.c:113: error: (Each undeclared identifier is reported only once
    conformance/interfaces/lio_listio/7-1.c:113: error: for each function it appears in.)
    conformance/interfaces/lio_listio/7-1.c:125: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/mq_open/27-1: build: FAILED: Compiler output: 
    conformance/interfaces/mq_open/27-1.c: In function ‘main’:
    conformance/interfaces/mq_open/27-1.c:27: error: ‘PATH_MAX’ undeclared (first use in this function)
    conformance/interfaces/mq_open/27-1.c:27: error: (Each undeclared identifier is reported only once
    conformance/interfaces/mq_open/27-1.c:27: error: for each function it appears in.)
    cc1: warnings being treated as errors
    conformance/interfaces/mq_open/27-1.c:27: error: unused variable ‘qname’
    conformance/interfaces/mq_send/13-1: build: FAILED: Compiler output: 
    conformance/interfaces/mq_send/13-1.c:30: error: ‘MQ_PRIO_MAX’ undeclared here (not in a function)
    conformance/interfaces/mq_send/4-1: build: FAILED: Compiler output: 
    conformance/interfaces/mq_send/4-1.c: In function ‘main’:
    conformance/interfaces/mq_send/4-1.c:41: error: ‘MQ_PRIO_MAX’ undeclared (first use in this function)
    conformance/interfaces/mq_send/4-1.c:41: error: (Each undeclared identifier is reported only once
    conformance/interfaces/mq_send/4-1.c:41: error: for each function it appears in.)
    conformance/interfaces/mq_send/4-2: build: FAILED: Compiler output: 
    conformance/interfaces/mq_send/4-2.c: In function ‘main’:
    conformance/interfaces/mq_send/4-2.c:41: error: ‘MQ_PRIO_MAX’ undeclared (first use in this function)
    conformance/interfaces/mq_send/4-2.c:41: error: (Each undeclared identifier is reported only once
    conformance/interfaces/mq_send/4-2.c:41: error: for each function it appears in.)
    conformance/interfaces/mq_send/4-3: build: FAILED: Compiler output: 
    conformance/interfaces/mq_send/4-3.c: In function ‘main’:
    conformance/interfaces/mq_send/4-3.c:51: error: ‘MQ_PRIO_MAX’ undeclared (first use in this function)
    conformance/interfaces/mq_send/4-3.c:51: error: (Each undeclared identifier is reported only once
    conformance/interfaces/mq_send/4-3.c:51: error: for each function it appears in.)
    conformance/interfaces/mq_send/7-1: build: FAILED: Compiler output: 
    conformance/interfaces/mq_send/7-1.c: In function ‘main’:
    conformance/interfaces/mq_send/7-1.c:60: error: ‘MQ_PRIO_MAX’ undeclared (first use in this function)
    conformance/interfaces/mq_send/7-1.c:60: error: (Each undeclared identifier is reported only once
    conformance/interfaces/mq_send/7-1.c:60: error: for each function it appears in.)
    conformance/interfaces/mq_timedsend/13-1: build: FAILED: Compiler output: 
    conformance/interfaces/mq_timedsend/13-1.c:31: error: ‘MQ_PRIO_MAX’ undeclared here (not in a function)
    conformance/interfaces/mq_timedsend/4-1: build: FAILED: Compiler output: 
    conformance/interfaces/mq_timedsend/4-1.c: In function ‘main’:
    conformance/interfaces/mq_timedsend/4-1.c:45: error: ‘MQ_PRIO_MAX’ undeclared (first use in this function)
    conformance/interfaces/mq_timedsend/4-1.c:45: error: (Each undeclared identifier is reported only once
    conformance/interfaces/mq_timedsend/4-1.c:45: error: for each function it appears in.)
    conformance/interfaces/mq_timedsend/4-2: build: FAILED: Compiler output: 
    conformance/interfaces/mq_timedsend/4-2.c: In function ‘main’:
    conformance/interfaces/mq_timedsend/4-2.c:45: error: ‘MQ_PRIO_MAX’ undeclared (first use in this function)
    conformance/interfaces/mq_timedsend/4-2.c:45: error: (Each undeclared identifier is reported only once
    conformance/interfaces/mq_timedsend/4-2.c:45: error: for each function it appears in.)
    conformance/interfaces/mq_timedsend/4-3: build: FAILED: Compiler output: 
    conformance/interfaces/mq_timedsend/4-3.c: In function ‘main’:
    conformance/interfaces/mq_timedsend/4-3.c:55: error: ‘MQ_PRIO_MAX’ undeclared (first use in this function)
    conformance/interfaces/mq_timedsend/4-3.c:55: error: (Each undeclared identifier is reported only once
    conformance/interfaces/mq_timedsend/4-3.c:55: error: for each function it appears in.)
    conformance/interfaces/pthread_attr_getstack/1-1: build: FAILED: Compiler output: 
    conformance/interfaces/pthread_attr_getstack/1-1.c: In function ‘main’:
    conformance/interfaces/pthread_attr_getstack/1-1.c:54: error: ‘PTHREAD_STACK_MIN’ undeclared (first use in this function)
    conformance/interfaces/pthread_attr_getstack/1-1.c:54: error: (Each undeclared identifier is reported only once
    conformance/interfaces/pthread_attr_getstack/1-1.c:54: error: for each function it appears in.)
    conformance/interfaces/pthread_attr_getstacksize/1-1: build: FAILED: Compiler output: 
    conformance/interfaces/pthread_attr_getstacksize/1-1.c: In function ‘main’:
    conformance/interfaces/pthread_attr_getstacksize/1-1.c:53: error: ‘PTHREAD_STACK_MIN’ undeclared (first use in this function)
    conformance/interfaces/pthread_attr_getstacksize/1-1.c:53: error: (Each undeclared identifier is reported only once
    conformance/interfaces/pthread_attr_getstacksize/1-1.c:53: error: for each function it appears in.)
    conformance/interfaces/pthread_attr_setstack/1-1: build: FAILED: Compiler output: 
    conformance/interfaces/pthread_attr_setstack/1-1.c: In function ‘main’:
    conformance/interfaces/pthread_attr_setstack/1-1.c:63: error: ‘PTHREAD_STACK_MIN’ undeclared (first use in this function)
    conformance/interfaces/pthread_attr_setstack/1-1.c:63: error: (Each undeclared identifier is reported only once
    conformance/interfaces/pthread_attr_setstack/1-1.c:63: error: for each function it appears in.)
    conformance/interfaces/pthread_attr_setstack/2-1: build: FAILED: Compiler output: 
    conformance/interfaces/pthread_attr_setstack/2-1.c: In function ‘main’:
    conformance/interfaces/pthread_attr_setstack/2-1.c:90: error: ‘PTHREAD_STACK_MIN’ undeclared (first use in this function)
    conformance/interfaces/pthread_attr_setstack/2-1.c:90: error: (Each undeclared identifier is reported only once
    conformance/interfaces/pthread_attr_setstack/2-1.c:90: error: for each function it appears in.)
    conformance/interfaces/pthread_attr_setstack/4-1: build: FAILED: Compiler output: 
    conformance/interfaces/pthread_attr_setstack/4-1.c: In function ‘main’:
    conformance/interfaces/pthread_attr_setstack/4-1.c:73: error: ‘PTHREAD_STACK_MIN’ undeclared (first use in this function)
    conformance/interfaces/pthread_attr_setstack/4-1.c:73: error: (Each undeclared identifier is reported only once
    conformance/interfaces/pthread_attr_setstack/4-1.c:73: error: for each function it appears in.)
    conformance/interfaces/pthread_attr_setstack/6-1: build: FAILED: Compiler output: 
    conformance/interfaces/pthread_attr_setstack/6-1.c: In function ‘main’:
    conformance/interfaces/pthread_attr_setstack/6-1.c:59: error: ‘PTHREAD_STACK_MIN’ undeclared (first use in this function)
    conformance/interfaces/pthread_attr_setstack/6-1.c:59: error: (Each undeclared identifier is reported only once
    conformance/interfaces/pthread_attr_setstack/6-1.c:59: error: for each function it appears in.)
    conformance/interfaces/pthread_attr_setstack/7-1: build: FAILED: Compiler output: 
    conformance/interfaces/pthread_attr_setstack/7-1.c: In function ‘main’:
    conformance/interfaces/pthread_attr_setstack/7-1.c:60: error: ‘PTHREAD_STACK_MIN’ undeclared (first use in this function)
    conformance/interfaces/pthread_attr_setstack/7-1.c:60: error: (Each undeclared identifier is reported only once
    conformance/interfaces/pthread_attr_setstack/7-1.c:60: error: for each function it appears in.)
    conformance/interfaces/pthread_attr_setstacksize/1-1: build: FAILED: Compiler output: 
    conformance/interfaces/pthread_attr_setstacksize/1-1.c: In function ‘main’:
    conformance/interfaces/pthread_attr_setstacksize/1-1.c:41: error: ‘PTHREAD_STACK_MIN’ undeclared (first use in this function)
    conformance/interfaces/pthread_attr_setstacksize/1-1.c:41: error: (Each undeclared identifier is reported only once
    conformance/interfaces/pthread_attr_setstacksize/1-1.c:41: error: for each function it appears in.)
    conformance/interfaces/pthread_attr_setstacksize/2-1: build: FAILED: Compiler output: 
    conformance/interfaces/pthread_attr_setstacksize/2-1.c: In function ‘main’:
    conformance/interfaces/pthread_attr_setstacksize/2-1.c:79: error: ‘PTHREAD_STACK_MIN’ undeclared (first use in this function)
    conformance/interfaces/pthread_attr_setstacksize/2-1.c:79: error: (Each undeclared identifier is reported only once
    conformance/interfaces/pthread_attr_setstacksize/2-1.c:79: error: for each function it appears in.)
    conformance/interfaces/pthread_attr_setstacksize/4-1: build: FAILED: Compiler output: 
    conformance/interfaces/pthread_attr_setstacksize/4-1.c: In function ‘main’:
    conformance/interfaces/pthread_attr_setstacksize/4-1.c:50: error: ‘PTHREAD_STACK_MIN’ undeclared (first use in this function)
    conformance/interfaces/pthread_attr_setstacksize/4-1.c:50: error: (Each undeclared identifier is reported only once
    conformance/interfaces/pthread_attr_setstacksize/4-1.c:50: error: for each function it appears in.)
    conformance/interfaces/pthread_key_create/speculative/5-1: build: FAILED: Compiler output: 
    conformance/interfaces/pthread_key_create/speculative/5-1.c:37: error: ‘PTHREAD_KEYS_MAX’ undeclared here (not in a function)
    conformance/interfaces/pthread_once/3-1: build: FAILED: Compiler output: 
    conformance/interfaces/pthread_once/3-1.c: In function ‘main’:
    conformance/interfaces/pthread_once/3-1.c:71: error: expected expression before ‘{’ token
    conformance/interfaces/pthread_once/6-1: build: FAILED: Compiler output: 
    conformance/interfaces/pthread_once/6-1.c: In function ‘test’:
    conformance/interfaces/pthread_once/6-1.c:199: error: expected expression before ‘{’ token
    conformance/interfaces/sched_yield/1-1: build: FAILED: Compiler output: 
    cc1: warnings being treated as errors
    conformance/interfaces/sched_yield/1-1.c: In function ‘set_process_affinity’:
    conformance/interfaces/sched_yield/1-1.c:87: error: implicit declaration of function ‘__CPU_ZERO_S’
    conformance/interfaces/sched_yield/1-1.c:89: error: implicit declaration of function ‘__CPU_SET_S’
    conformance/interfaces/sched_yield/1-1.c: In function ‘set_thread_affinity’:
    conformance/interfaces/sched_yield/1-1.c:119: error: implicit declaration of function ‘pthread_setaffinity_np’
    conformance/interfaces/sched_yield/1-1.c: In function ‘runner’:
    conformance/interfaces/sched_yield/1-1.c:136: error: format ‘%ld’ expects type ‘long int’, but argument 3 has type ‘pthread_t’
    conformance/interfaces/sched_yield/1-1.c: In function ‘busy_thread’:
    conformance/interfaces/sched_yield/1-1.c:159: error: format ‘%ld’ expects type ‘long int’, but argument 3 has type ‘pthread_t’
    conformance/interfaces/sem_init/6-1: build: FAILED: Compiler output: 
    conformance/interfaces/sem_init/6-1.c: In function ‘main’:
    conformance/interfaces/sem_init/6-1.c:29: error: ‘SEM_VALUE_MAX’ undeclared (first use in this function)
    conformance/interfaces/sem_init/6-1.c:29: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sem_init/6-1.c:29: error: for each function it appears in.)
    conformance/interfaces/sem_open/5-1: build: FAILED: Compiler output: 
    conformance/interfaces/sem_open/5-1.c: In function ‘main’:
    conformance/interfaces/sem_open/5-1.c:32: error: ‘SEM_VALUE_MAX’ undeclared (first use in this function)
    conformance/interfaces/sem_open/5-1.c:32: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sem_open/5-1.c:32: error: for each function it appears in.)
    conformance/interfaces/sigaction/10-1: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/10-1.c: In function ‘main’:
    conformance/interfaces/sigaction/10-1.c:41: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/10-1.c:41: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/10-1.c:41: error: for each function it appears in.)
    conformance/interfaces/sigaction/11-1: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/11-1.c: In function ‘main’:
    conformance/interfaces/sigaction/11-1.c:50: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/11-1.c:50: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/11-1.c:50: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-1: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-1.c: In function ‘main’:
    conformance/interfaces/sigaction/19-1.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-1.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-1.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-10: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-10.c: In function ‘main’:
    conformance/interfaces/sigaction/19-10.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-10.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-10.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-11: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-11.c: In function ‘main’:
    conformance/interfaces/sigaction/19-11.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-11.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-11.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-12: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-12.c: In function ‘main’:
    conformance/interfaces/sigaction/19-12.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-12.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-12.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-13: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-13.c: In function ‘main’:
    conformance/interfaces/sigaction/19-13.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-13.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-13.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-14: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-14.c: In function ‘main’:
    conformance/interfaces/sigaction/19-14.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-14.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-14.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-15: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-15.c: In function ‘main’:
    conformance/interfaces/sigaction/19-15.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-15.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-15.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-16: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-16.c: In function ‘main’:
    conformance/interfaces/sigaction/19-16.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-16.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-16.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-17: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-17.c: In function ‘main’:
    conformance/interfaces/sigaction/19-17.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-17.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-17.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-18: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-18.c: In function ‘main’:
    conformance/interfaces/sigaction/19-18.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-18.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-18.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-19: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-19.c: In function ‘main’:
    conformance/interfaces/sigaction/19-19.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-19.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-19.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-2: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-2.c: In function ‘main’:
    conformance/interfaces/sigaction/19-2.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-2.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-2.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-20: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-20.c: In function ‘main’:
    conformance/interfaces/sigaction/19-20.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-20.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-20.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-21: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-21.c: In function ‘main’:
    conformance/interfaces/sigaction/19-21.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-21.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-21.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-22: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-22.c: In function ‘main’:
    conformance/interfaces/sigaction/19-22.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-22.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-22.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-23: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-23.c: In function ‘main’:
    conformance/interfaces/sigaction/19-23.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-23.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-23.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-24: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-24.c: In function ‘main’:
    conformance/interfaces/sigaction/19-24.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-24.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-24.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-25: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-25.c: In function ‘main’:
    conformance/interfaces/sigaction/19-25.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-25.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-25.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-26: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-26.c: In function ‘main’:
    conformance/interfaces/sigaction/19-26.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-26.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-26.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-3: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-3.c: In function ‘main’:
    conformance/interfaces/sigaction/19-3.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-3.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-3.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-4: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-4.c: In function ‘main’:
    conformance/interfaces/sigaction/19-4.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-4.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-4.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-5: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-5.c: In function ‘main’:
    conformance/interfaces/sigaction/19-5.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-5.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-5.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-6: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-6.c: In function ‘main’:
    conformance/interfaces/sigaction/19-6.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-6.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-6.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-7: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-7.c: In function ‘main’:
    conformance/interfaces/sigaction/19-7.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-7.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-7.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-8: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-8.c: In function ‘main’:
    conformance/interfaces/sigaction/19-8.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-8.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-8.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/19-9: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/19-9.c: In function ‘main’:
    conformance/interfaces/sigaction/19-9.c:117: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/19-9.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/19-9.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/21-1: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/21-1.c: In function ‘main’:
    conformance/interfaces/sigaction/21-1.c:36: error: ‘SA_NOCLDWAIT’ undeclared (first use in this function)
    conformance/interfaces/sigaction/21-1.c:36: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/21-1.c:36: error: for each function it appears in.)
    conformance/interfaces/sigaction/29-1: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/29-1.c: In function ‘handler’:
    conformance/interfaces/sigaction/29-1.c:95: error: ‘SIGRTMAX’ undeclared (first use in this function)
    conformance/interfaces/sigaction/29-1.c:95: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/29-1.c:95: error: for each function it appears in.)
    conformance/interfaces/sigaction/29-1.c: In function ‘main’:
    conformance/interfaces/sigaction/29-1.c:133: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/29-1.c:145: error: ‘SIGRTMAX’ undeclared (first use in this function)
    conformance/interfaces/sigaction/30-1: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/30-1.c: In function ‘main’:
    conformance/interfaces/sigaction/30-1.c:117: error: ‘SIGRTMAX’ undeclared (first use in this function)
    conformance/interfaces/sigaction/30-1.c:117: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/30-1.c:117: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-1: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-1.c: In function ‘main’:
    conformance/interfaces/sigaction/6-1.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-1.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-1.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-10: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-10.c: In function ‘main’:
    conformance/interfaces/sigaction/6-10.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-10.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-10.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-11: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-11.c: In function ‘main’:
    conformance/interfaces/sigaction/6-11.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-11.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-11.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-12: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-12.c: In function ‘main’:
    conformance/interfaces/sigaction/6-12.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-12.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-12.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-13: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-13.c: In function ‘main’:
    conformance/interfaces/sigaction/6-13.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-13.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-13.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-14: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-14.c: In function ‘main’:
    conformance/interfaces/sigaction/6-14.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-14.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-14.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-15: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-15.c: In function ‘main’:
    conformance/interfaces/sigaction/6-15.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-15.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-15.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-16: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-16.c: In function ‘main’:
    conformance/interfaces/sigaction/6-16.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-16.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-16.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-17: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-17.c: In function ‘main’:
    conformance/interfaces/sigaction/6-17.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-17.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-17.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-18: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-18.c: In function ‘main’:
    conformance/interfaces/sigaction/6-18.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-18.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-18.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-19: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-19.c: In function ‘main’:
    conformance/interfaces/sigaction/6-19.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-19.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-19.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-2: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-2.c: In function ‘main’:
    conformance/interfaces/sigaction/6-2.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-2.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-2.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-20: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-20.c: In function ‘main’:
    conformance/interfaces/sigaction/6-20.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-20.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-20.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-21: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-21.c: In function ‘main’:
    conformance/interfaces/sigaction/6-21.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-21.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-21.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-22: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-22.c: In function ‘main’:
    conformance/interfaces/sigaction/6-22.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-22.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-22.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-23: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-23.c: In function ‘main’:
    conformance/interfaces/sigaction/6-23.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-23.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-23.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-24: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-24.c: In function ‘main’:
    conformance/interfaces/sigaction/6-24.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-24.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-24.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-25: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-25.c: In function ‘main’:
    conformance/interfaces/sigaction/6-25.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-25.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-25.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-26: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-26.c: In function ‘main’:
    conformance/interfaces/sigaction/6-26.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-26.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-26.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-3: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-3.c: In function ‘main’:
    conformance/interfaces/sigaction/6-3.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-3.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-3.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-4: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-4.c: In function ‘main’:
    conformance/interfaces/sigaction/6-4.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-4.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-4.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-5: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-5.c: In function ‘main’:
    conformance/interfaces/sigaction/6-5.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-5.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-5.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-6: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-6.c: In function ‘main’:
    conformance/interfaces/sigaction/6-6.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-6.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-6.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-7: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-7.c: In function ‘main’:
    conformance/interfaces/sigaction/6-7.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-7.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-7.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-8: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-8.c: In function ‘main’:
    conformance/interfaces/sigaction/6-8.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-8.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-8.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/6-9: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/6-9.c: In function ‘main’:
    conformance/interfaces/sigaction/6-9.c:34: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/6-9.c:34: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/6-9.c:34: error: for each function it appears in.)
    conformance/interfaces/sigaction/9-1: build: FAILED: Compiler output: 
    conformance/interfaces/sigaction/9-1.c: In function ‘main’:
    conformance/interfaces/sigaction/9-1.c:49: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigaction/9-1.c:49: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigaction/9-1.c:49: error: for each function it appears in.)
    conformance/interfaces/sigqueue/1-1: build: FAILED: Compiler output: 
    conformance/interfaces/sigqueue/1-1.c: In function ‘myhandler’:
    conformance/interfaces/sigqueue/1-1.c:33: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/sigqueue/1-1.c:33: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigqueue/1-1.c:33: error: for each function it appears in.)
    conformance/interfaces/sigqueue/1-1.c: In function ‘main’:
    conformance/interfaces/sigqueue/1-1.c:46: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigqueue/1-1.c:49: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/sigqueue/4-1: build: FAILED: Compiler output: 
    conformance/interfaces/sigqueue/4-1.c: In function ‘main’:
    conformance/interfaces/sigqueue/4-1.c:45: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigqueue/4-1.c:45: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigqueue/4-1.c:45: error: for each function it appears in.)
    conformance/interfaces/sigqueue/4-1.c:48: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/sigqueue/5-1: build: FAILED: Compiler output: 
    conformance/interfaces/sigqueue/5-1.c: In function ‘main’:
    conformance/interfaces/sigqueue/5-1.c:48: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/sigqueue/5-1.c:48: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigqueue/5-1.c:48: error: for each function it appears in.)
    conformance/interfaces/sigqueue/6-1: build: FAILED: Compiler output: 
    conformance/interfaces/sigqueue/6-1.c: In function ‘main’:
    conformance/interfaces/sigqueue/6-1.c:55: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigqueue/6-1.c:55: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigqueue/6-1.c:55: error: for each function it appears in.)
    conformance/interfaces/sigqueue/6-1.c:58: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/sigqueue/7-1: build: FAILED: Compiler output: 
    conformance/interfaces/sigqueue/7-1.c: In function ‘main’:
    conformance/interfaces/sigqueue/7-1.c:52: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigqueue/7-1.c:52: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigqueue/7-1.c:52: error: for each function it appears in.)
    conformance/interfaces/sigqueue/7-1.c:58: error: ‘SIGRTMAX’ undeclared (first use in this function)
    conformance/interfaces/sigqueue/7-1.c:58: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/sigqueue/8-1: build: FAILED: Compiler output: 
    conformance/interfaces/sigqueue/8-1.c: In function ‘main’:
    conformance/interfaces/sigqueue/8-1.c:46: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigqueue/8-1.c:46: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigqueue/8-1.c:46: error: for each function it appears in.)
    conformance/interfaces/sigqueue/8-1.c:49: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/sigqueue/9-1: build: FAILED: Compiler output: 
    conformance/interfaces/sigqueue/9-1.c: In function ‘main’:
    conformance/interfaces/sigqueue/9-1.c:46: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigqueue/9-1.c:46: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigqueue/9-1.c:46: error: for each function it appears in.)
    conformance/interfaces/sigqueue/9-1.c:49: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/sigwait/2-1: build: FAILED: Compiler output: 
    conformance/interfaces/sigwait/2-1.c: In function ‘main’:
    conformance/interfaces/sigwait/2-1.c:45: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/sigwait/2-1.c:45: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigwait/2-1.c:45: error: for each function it appears in.)
    conformance/interfaces/sigwait/7-1: build: FAILED: Compiler output: 
    conformance/interfaces/sigwait/7-1.c: In function ‘main’:
    conformance/interfaces/sigwait/7-1.c:114: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/sigwait/7-1.c:114: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigwait/7-1.c:114: error: for each function it appears in.)
    conformance/interfaces/sigwait/7-1.c:114: error: ‘SIGRTMAX’ undeclared (first use in this function)
    conformance/interfaces/sigwaitinfo/2-1: build: FAILED: Compiler output: 
    conformance/interfaces/sigwaitinfo/2-1.c: In function ‘main’:
    conformance/interfaces/sigwaitinfo/2-1.c:44: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigwaitinfo/2-1.c:44: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigwaitinfo/2-1.c:44: error: for each function it appears in.)
    conformance/interfaces/sigwaitinfo/2-1.c:49: error: ‘SIGRTMAX’ undeclared (first use in this function)
    conformance/interfaces/sigwaitinfo/2-1.c:49: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/sigwaitinfo/5-1: build: FAILED: Compiler output: 
    conformance/interfaces/sigwaitinfo/5-1.c: In function ‘main’:
    conformance/interfaces/sigwaitinfo/5-1.c:41: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigwaitinfo/5-1.c:41: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigwaitinfo/5-1.c:41: error: for each function it appears in.)
    conformance/interfaces/sigwaitinfo/6-1: build: FAILED: Compiler output: 
    conformance/interfaces/sigwaitinfo/6-1.c: In function ‘main’:
    conformance/interfaces/sigwaitinfo/6-1.c:41: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigwaitinfo/6-1.c:41: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigwaitinfo/6-1.c:41: error: for each function it appears in.)
    conformance/interfaces/sigwaitinfo/7-1: build: FAILED: Compiler output: 
    conformance/interfaces/sigwaitinfo/7-1.c: In function ‘main’:
    conformance/interfaces/sigwaitinfo/7-1.c:48: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigwaitinfo/7-1.c:48: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigwaitinfo/7-1.c:48: error: for each function it appears in.)
    conformance/interfaces/sigwaitinfo/7-1.c:51: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/interfaces/sigwaitinfo/8-1: build: FAILED: Compiler output: 
    conformance/interfaces/sigwaitinfo/8-1.c: In function ‘main’:
    conformance/interfaces/sigwaitinfo/8-1.c:47: error: ‘SA_SIGINFO’ undeclared (first use in this function)
    conformance/interfaces/sigwaitinfo/8-1.c:47: error: (Each undeclared identifier is reported only once
    conformance/interfaces/sigwaitinfo/8-1.c:47: error: for each function it appears in.)
    conformance/interfaces/sigwaitinfo/8-1.c:50: error: ‘SIGRTMIN’ undeclared (first use in this function)
    conformance/definitions/mqueue_h/1-1: execution: UNTESTED: Output: 
    Not Implemented!
    conformance/definitions/mqueue_h/10-1: execution: UNTESTED: Output: 
    Test not implemented!
    conformance/definitions/mqueue_h/11-1: execution: UNTESTED: Output: 
    Test not implemented!
    conformance/definitions/mqueue_h/2-1: execution: UNTESTED: Output: 
    Test not implemented!
    conformance/definitions/mqueue_h/3-1: execution: UNTESTED: Output: 
    Test not implemented!
    conformance/definitions/mqueue_h/4-1: execution: UNTESTED: Output: 
    Test not implemented!
    conformance/definitions/mqueue_h/5-1: execution: UNTESTED: Output: 
    Test not implemented!
    conformance/definitions/mqueue_h/6-1: execution: UNTESTED: Output: 
    Test not implemented!
    conformance/definitions/mqueue_h/7-1: execution: UNTESTED: Output: 
    Test not implemented!
    conformance/definitions/mqueue_h/8-1: execution: UNTESTED: Output: 
    Test not implemented!
    conformance/definitions/mqueue_h/9-1: execution: UNTESTED: Output: 
    Test not implemented!
    conformance/interfaces/aio_cancel/1-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_cancel/10-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_cancel/2-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_cancel/2-2: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_cancel/4-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_cancel/5-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_cancel/6-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_cancel/7-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_cancel/8-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_cancel/9-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_error/1-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_error/2-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_error/3-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_fsync/12-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_fsync/14-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_fsync/2-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_fsync/3-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_fsync/4-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_fsync/4-2: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_fsync/5-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_fsync/8-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_fsync/8-2: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_fsync/8-3: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_fsync/8-4: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_fsync/9-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_read/1-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_read/10-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_read/11-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_read/11-2: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_read/3-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_read/3-2: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_read/4-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_read/5-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_read/7-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_read/8-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_read/9-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_return/1-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_return/2-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_return/3-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_return/3-2: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_return/4-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_suspend/3-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_suspend/4-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_suspend/9-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_write/1-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_write/1-2: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_write/2-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_write/3-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_write/5-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_write/6-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_write/7-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_write/8-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_write/8-2: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_write/9-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/aio_write/9-2: execution: UNSUPPORTED: Output: 
    conformance/interfaces/clock_getcpuclockid/1-1: execution: UNSUPPORTED: Output: 
    _POSIX_CPUTIME unsupported
    conformance/interfaces/clock_getcpuclockid/2-1: execution: UNSUPPORTED: Output: 
    _POSIX_CPUTIME unsupported
    conformance/interfaces/clock_getres/3-1: execution: FAILED: Output: 
    clock_getres() failed
    Test FAILED
    conformance/interfaces/clock_getres/7-1: execution: UNSUPPORTED: Output: 
    _POSIX_CPUTIME not supported
    conformance/interfaces/clock_getres/8-1: execution: UNSUPPORTED: Output: 
    _POSIX_THREAD_CPUTIME not supported
    conformance/interfaces/clock_gettime/3-1: execution: UNSUPPORTED: Output: 
    CLOCK_MONOTONIC unsupported
    conformance/interfaces/clock_gettime/4-1: execution: UNSUPPORTED: Output: 
    _POSIX_CPUTIME unsupported
    conformance/interfaces/clock_nanosleep/10-1: execution: FAILED: Output: 
    In handler
    errno != EINTR
    Test FAILED
    conformance/interfaces/clock_nanosleep/9-1: execution: FAILED: Output: 
    In handler
    clock_nanosleep() did not return EINTR
    Child did not exit normally.
    Test FAILED
    conformance/interfaces/clock_settime/1-1: execution: UNTESTED: Output: 
    Run this test as ROOT, not as a Regular User
    conformance/interfaces/clock_settime/19-1: execution: UNTESTED: Output: 
    Run this test as ROOT, not as a Regular User
    conformance/interfaces/clock_settime/4-1: execution: UNTESTED: Output: 
    Run this test as ROOT, not as a Regular User
    conformance/interfaces/clock_settime/4-2: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/clock_settime/5-1: execution: UNTESTED: Output: 
    Run this test as ROOT, not as a Regular User
    conformance/interfaces/clock_settime/5-2: execution: UNTESTED: Output: 
    Run this test as ROOT, not as a Regular User
    conformance/interfaces/clock_settime/7-1: execution: UNTESTED: Output: 
    Run this test as ROOT, not as a Regular User
    conformance/interfaces/clock_settime/7-2: execution: UNTESTED: Output: 
    Run this test as ROOT, not as a Regular User
    conformance/interfaces/clock_settime/8-1: execution: UNTESTED: Output: 
    Run this test as ROOT, not as a Regular User
    conformance/interfaces/clock_settime/speculative/4-3: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/clock_settime/speculative/4-4: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/fork/1-1: execution: UNRESOLVED: Output: 
    [02:46:23]Test conformance/interfaces/fork/1-1.c unresolved: got 1073741869 (Operation not supported) on line 115 (Failed to open the semaphore)
    [02:46:23]Test conformance/interfaces/fork/1-1.c unresolved: got 1073741869 (Operation not supported) on line 115 (Failed to open the semaphore)
    conformance/interfaces/fork/11-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/fork/12-1: execution: FAILED: Output: 
    [09:57:13]SIGUSR1 and SIGUSR2 are pending, we can fork
    [09:57:13]SIGUSR1 and SIGUSR2 are blocked in child
    [09:57:13]Test conformance/interfaces/fork/12-1.c FAILED: The new process was created with SIGUSR1 pending
    [09:57:13]SIGUSR1 and SIGUSR2 are pending, we can fork
    [09:57:13]Test conformance/interfaces/fork/12-1.c FAILED: Child exited abnormally
    conformance/interfaces/fork/13-1: execution: UNRESOLVED: Output: 
    [09:57:14]Test conformance/interfaces/fork/13-1.c unresolved: got 1073741902 (Function not implemented) on line 117 (Failed to set interval timer for ITIMER_VIRTUAL)
    conformance/interfaces/fork/14-1: execution: UNRESOLVED: Output: 
    [09:57:14]Test conformance/interfaces/fork/14-1.c unresolved: got 1073741869 (Operation not supported) on line 100 (Failed to create the named semaphore)
    conformance/interfaces/fork/17-1: execution: UNRESOLVED: Output: 
    [09:57:15]Test conformance/interfaces/fork/17-1.c unresolved: got 1073741902 (Function not implemented) on line 103 (Failed to get max priority value)
    conformance/interfaces/fork/17-2: execution: UNRESOLVED: Output: 
    [09:57:15]Test conformance/interfaces/fork/17-2.c unresolved: got 1073741902 (Function not implemented) on line 103 (Failed to get max priority value)
    conformance/interfaces/fork/18-1: execution: UNRESOLVED: Output: 
    [09:57:16]Test conformance/interfaces/fork/18-1.c unresolved: got 1073741902 (Function not implemented) on line 128 (Failed to create a timer)
    conformance/interfaces/fork/19-1: execution: UNRESOLVED: Output: 
    [09:57:16]Test conformance/interfaces/fork/19-1.c unresolved: got 1073741902 (Function not implemented) on line 114 (Failed to create the message queue descriptor)
    conformance/interfaces/fork/21-1: execution: UNRESOLVED: Output: 
    [09:57:17]Test conformance/interfaces/fork/21-1.c unresolved: got 1073741869 (Operation not supported) on line 128 (Failed to open the semaphore)
    conformance/interfaces/fork/22-1: execution: UNTESTED: Output: 
    [09:57:17]File conformance/interfaces/fork/22-1.c cannot test: The testcase needs CPUTIME or THREAD_CPUTIME support
    conformance/interfaces/fork/8-1: execution: FAILED: Output: 
    [09:57:20]Test conformance/interfaces/fork/8-1.c FAILED: The process is created with non-zero tms_cutime or tms_cstime
    conformance/interfaces/fsync/7-1: execution: FAILED: Output: 
    fsync/7-1.c Test Fail: Expect EINVAL, get: (ipc/mig) bad request message ID
    conformance/interfaces/lio_listio/12-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/lio_listio/13-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/lio_listio/18-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/lio_listio/5-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/lio_listio/6-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/lio_listio/8-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/lio_listio/9-1: execution: UNSUPPORTED: Output: 
    conformance/interfaces/mlock/10-1: execution: UNRESOLVED: Output: 
    You don't have permission to lock your address space.
    Try to rerun this test as root.
    conformance/interfaces/mlock/5-1: execution: UNRESOLVED: Output: 
    You don't have permission to lock your address space.
    Try to rerun this test as root.
    conformance/interfaces/mlock/8-1: execution: UNRESOLVED: Output: 
    You don't have permission to lock your address space.
    Try to rerun this test as root.
    conformance/interfaces/mlockall/13-1: execution: FAILED: Output: 
    Unexpected error: Function not implemented
    conformance/interfaces/mlockall/13-2: execution: FAILED: Output: 
    Unexpected error: Function not implemented
    conformance/interfaces/mlockall/3-6: execution: UNRESOLVED: Output: 
    An error occurs when calling mlockall(): Function not implemented
    conformance/interfaces/mlockall/3-7: execution: UNRESOLVED: Output: 
    An error occurs when calling mlockall(): Function not implemented
    conformance/interfaces/mlockall/8-1: execution: UNRESOLVED: Output: 
    Unexpected error: Function not implemented
    conformance/interfaces/mlockall/speculative/15-1: execution: UNRESOLVED: Output: 
    Unexpected error: Function not implemented
    conformance/interfaces/mmap/11-4: execution: FAILED: Output: 
    pa: 0x28000
    pa_2: 0x29000
    Test Fail: mmap/11-4.c Modification of the partial page at the end of an object is written out
    conformance/interfaces/mmap/11-5: execution: FAILED: Output: 
    Test Fail: mmap/11-5.c Modification of the partial page at the end of an object is written out
    conformance/interfaces/mmap/13-1: execution: FAILED: Output: 
    Time before write(): 1248767904
    Time before mmap(): 1248767905
    Time before munmap(): 1248767906
    atime1: 1248767904, atime2: 1248767904, atime3: 1248767904
    Test Fail mmap/13-1.c st_atime did not update properly
    conformance/interfaces/mmap/14-1: execution: FAILED: Output: 
    Time before write(): 1248767907
    Time before mmap(): 1248767908
    Time before write reference: 1248767909
    Time before msync(): 1248767910
    ctime1: 1248767909, ctime2: 1248767909
    mtime1: 1248767909, mtime2: 1248767909
    Test Fail mmap/14-1.c st_ctime and st_mtime were not updated properly
    conformance/interfaces/mmap/18-1: execution: UNRESOLVED: Output: 
    mmap/18-1.c Error at mlockall(): Function not implemented
    conformance/interfaces/mmap/21-1: execution: FAILED: Output: 
    Test FAIL

Kernel panic [[!tag open_issue_gnumach]] (at conformance/interfaces/mmap/24-1):

    Assertion `(object == VM_OBJECT_NULL) || (object->ref_count > 0) || ((object->paging_in_progress != 0) && internal)' failed in file "../gnumach-1-branch-Xen-branch/vm/vm_object.c", line 2087
    Kernel Breakpoint trap, eip 0x20020a77
    Stopped at  0x20020a76: int     $3
    db> trace
    0x20020a76(2006abc1,20067354,2006708c,827,2e4e5514)
    0x20020ace(20067354,2006708c,827,2001c900,2e3b54f4)
    0x20035ef2(2e4e5514,1000,0,200194c0,2e3b54f4)
    0x2003929f(2e3b4d64,2fc6ff9c,400,0,1)
    0x200577ea(1,15ff998,400,0,1)
    0x20006838(1,15ff998,400,0,1)
    >>>>> user space <<<<<

    $ addr2line -i -f -e /boot/gnumach-xen 0x20020a76 0x20020ace 0x20035ef2 0x2003929f 0x200577ea 0x20006838
    Debugger
    /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/../gnumach-1-branch-Xen-branch/kern/debug.c:105
    Assert
    ??:0
    vm_object_enter
    /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/../gnumach-1-branch-Xen-branch/vm/vm_object.c:2109
    vm_map
    /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/../gnumach-1-branch-Xen-branch/vm/vm_user.c:326
    syscall_vm_map
    /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/../gnumach-1-branch-Xen-branch/kern/ipc_mig.c:657
    mach_call_call
    /home/tschwinge/tmp/gnumach/gnumach-1-branch-Xen-branch.build/../gnumach-1-branch-Xen-branch/i386/i386/locore.S:1083

Disable the panic-causing test (conformance/interfaces/mmap/24-1) and restart:

    [...]
    conformance/interfaces/mmap/24-2: execution: INTERRUPTED: Output: 
    conformance/interfaces/mmap/27-1: execution: UNTESTED: Output: 
    Test Untested: MAP_FIXED defined
    conformance/interfaces/mmap/28-1: execution: FAILED: Output: 
    Test Fail: mmap/28-1.c Got no error at mmap()
    conformance/interfaces/mmap/31-1: execution: FAILED: Output: 
    Test FAIL: expect EOVERFLOW but get other error: Cannot allocate memory
    off: fffff000, len: fffff000
    conformance/interfaces/mmap/6-4: execution: FAILED: Output: 
    Test Fail: Did not get EACCES as expected
    conformance/interfaces/mmap/6-6: execution: FAILED: Output: 
    Test Fail: Did not get EACCES as expected
    conformance/interfaces/mmap/7-1: execution: UNRESOLVED: Output: 
    mmap/7-1.c Error at msync(): Error in unknown error system: FFFFFFFF
    conformance/interfaces/mmap/7-2: execution: UNRESOLVED: Output: 
    mmap/7-2.c Error at msync(): Error in unknown error system: FFFFFFFF
    conformance/interfaces/mq_close/1-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_close/2-1: execution: UNRESOLVED: Output: 
    unexpected error: mq_close 2-1: mq_open: Function not implemented
    unexpected error: mq_close 2-1: read: EOF
    conformance/interfaces/mq_close/3-1: execution: UNRESOLVED: Output: 
    unexpected error: mq_close 3-1: mq_open: Function not implemented
    conformance/interfaces/mq_close/3-2: execution: FAILED: Output: 
    errno != EBADF on invalid descriptor
    Test FAILED
    conformance/interfaces/mq_close/3-3: execution: FAILED: Output: 
    errno != EBADF on invalid descriptor
    Test FAILED
    conformance/interfaces/mq_close/4-1: execution: UNRESOLVED: Output: 
    unexpected error: mq_close 4-1: mq_open: Function not implemented
    conformance/interfaces/mq_close/5-1: execution: UNTESTED: Output: 
    Functionality of using mqdes after mq_close() and before
    mq_open() will not be tested as POSIX says this is undefined.
    conformance/interfaces/mq_getattr/2-1: execution: UNRESOLVED: Output: 
    unexpected error: mq_getattr 2-1: mq_open(): Function not implemented
    conformance/interfaces/mq_getattr/2-2: execution: UNRESOLVED: Output: 
    unexpected error: mq_getattr 2-2: mq_open(): Function not implemented
    conformance/interfaces/mq_getattr/3-1: execution: UNRESOLVED: Output: 
    unexpected error: mq_getattr 3-1: mq_open(): Function not implemented
    conformance/interfaces/mq_getattr/4-1: execution: UNRESOLVED: Output: 
    unexpected error: mq_getattr 4-1: mq_open(): Function not implemented
    conformance/interfaces/mq_getattr/speculative/7-1: execution: UNRESOLVED: Output: 
    unexpected error: mq_getattr 7-1: mq_open(): Function not implemented
    conformance/interfaces/mq_notify/1-1: execution: UNRESOLVED: Output: 
    unexpected error: mq_notify 1-1: mq_open: Function not implemented
    conformance/interfaces/mq_notify/2-1: execution: UNRESOLVED: Output: 
    unexpected error: mq_notify 2-1: mq_open: Function not implemented
    conformance/interfaces/mq_notify/3-1: execution: UNRESOLVED: Output: 
    unexpected error: mq_notify 3-1: mq_open: Function not implemented
    conformance/interfaces/mq_notify/4-1: execution: UNRESOLVED: Output: 
    unexpected error: mq_notify 4-1: mq_open: Function not implemented
    conformance/interfaces/mq_notify/5-1: execution: UNRESOLVED: Output: 
    unexpected error: mq_notify 5-1: mq_open: Function not implemented
    conformance/interfaces/mq_notify/8-1: execution: UNRESOLVED: Output: 
    unexpected error: mq_notify 8-1: mq_open(): Function not implemented
    conformance/interfaces/mq_notify/9-1: execution: UNRESOLVED: Output: 
    unexpected error: mq_notify 9-1: mq_open: Function not implemented
    conformance/interfaces/mq_open/1-1: execution: FAILED: Output: 
    mq_open() did not return success: Function not implemented
    Test FAILED
    conformance/interfaces/mq_open/10-1: execution: UNTESTED: Output: 
    Will not test the user ID and group ID of a created
    message queue as we would need multiple users and
    groups on the system to test.
    Will not test the file permissions as testing would
    be implementation defined.
    conformance/interfaces/mq_open/11-1: execution: FAILED: Output: 
    mq_open() did not return success: Function not implemented
    Test FAILED
    conformance/interfaces/mq_open/12-1: execution: FAILED: Output: 
    mq_open() did not return success: Function not implemented
    Test FAILED
    conformance/interfaces/mq_open/13-1: execution: FAILED: Output: 
    mq_open() did not return success: Function not implemented
    Test FAILED
    conformance/interfaces/mq_open/14-1: execution: UNTESTED: Output: 
    Will not test calling process privileges on name
    as POSIX does not define when this error occurs.
    conformance/interfaces/mq_open/15-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    Test UNRESOLVED
    conformance/interfaces/mq_open/16-1: execution: FAILED: Output: 
    Test FAILED - mq_open() never succeeded
    conformance/interfaces/mq_open/17-1: execution: UNTESTED: Output: 
    Will not test setting O_EXCL without O_CREAT because
    results are undefined.
    conformance/interfaces/mq_open/18-1: execution: FAILED: Output: 
    mq_open() did not return success w/O_NONBLOCK set: Function not implemented
    Test FAILED
    conformance/interfaces/mq_open/19-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    Test UNRESOLVED
    conformance/interfaces/mq_open/2-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    Test UNRESOLVED
    conformance/interfaces/mq_open/20-1: execution: FAILED: Output: 
    mq_open() did not return success: Function not implemented
    Test FAILED
    conformance/interfaces/mq_open/22-1: execution: UNTESTED: Output: 
    Will not test returning EACCESS when privileges are denied
    as POSIX does not define when this error occurs.
    conformance/interfaces/mq_open/23-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    Test UNRESOLVED
    conformance/interfaces/mq_open/24-1: execution: UNTESTED: Output: 
    Will not test mq_open() being interrupted as it is
    not possible to predictably interrupt an mq_open().
    conformance/interfaces/mq_open/25-1: execution: UNTESTED: Output: 
    Will not test mq_open() failing with EINVAL if mq_open()
    is not supported for the name parameter as
    unsupported names are implementation defined.
    conformance/interfaces/mq_open/25-2: execution: FAILED: Output: 
    errno != EINVAL for mq_maxmsg 0
    errno != EINVAL for mq_maxmsg -1
    errno != EINVAL for mq_maxmsg -2147483648
    errno != EINVAL for mq_msgsize 0
    errno != EINVAL for mq_msgsize -1
    errno != EINVAL for mq_msgsize -2147483648
    Test FAILED
    conformance/interfaces/mq_open/27-2: execution: FAILED: Output: 
    errno != ENAMETOOLONG
    Test FAILED
    conformance/interfaces/mq_open/28-1: execution: UNTESTED: Output: 
    Will not test returning with ENFILE if the system has
    too many message queues as this is beyond this
    test's domain.
    conformance/interfaces/mq_open/29-1: execution: FAILED: Output: 
    errno != ENOENT
    Test FAILED
    conformance/interfaces/mq_open/30-1: execution: UNTESTED: Output: 
    Will not test mq_open() failing with ENOSPC when there
    is not enough space to create the message queue
    as system space cannot be controlled from this test.
    conformance/interfaces/mq_open/4-1: execution: UNTESTED: Output: 
    Will not test that {OPEN_MAX} file and message queues can
    be opened as we cannot determine at run-time if a given
    implementation is implemented with a file descriptor.
    conformance/interfaces/mq_open/7-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    Test UNRESOLVED
    conformance/interfaces/mq_open/7-2: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    Test UNRESOLVED
    conformance/interfaces/mq_open/7-3: execution: FAILED: Output: 
    mq_open() for read-only queue did not return success: Function not implemented
    Test FAILED
    conformance/interfaces/mq_open/8-1: execution: UNRESOLVED: Output: 
    mq_open() for write-only queue did not return success: Function not implemented
    Test UNRESOLVED
    conformance/interfaces/mq_open/8-2: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    Test UNRESOLVED
    conformance/interfaces/mq_open/9-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success on read-write queue: Function not implemented
    Test UNRESOLVED
    conformance/interfaces/mq_open/9-2: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    Test UNRESOLVED
    conformance/interfaces/mq_open/speculative/26-1: execution: FAILED: Output: 
    mq_open() failed before expected
    errno != EMFILE on > _POSIX_OPEN_MAX  or _POSIX_MQ_OPEN_MAX queues
    Test FAILED
    conformance/interfaces/mq_receive/1-1: execution: FAILED: Output: 
    unexpected error: mq_receive 1-1: mq_open: Function not implemented
    unexpected error: mq_receive 1-1: mq_send: Function not implemented
    unexpected error: mq_receive 1-1: mq_send: Function not implemented
    unexpected error: mq_receive 1-1: mq_receive: Function not implemented
    unexpected error: mq_receive 1-1: mq_receive: Function not implemented
    unexpected error: mq_receive 1-1: mq_close: Function not implemented
    unexpected error: mq_receive 1-1: mq_unlink: Function not implemented
    FAIL: mq_receive didn't receive the highest priority message
    FAIL: receive priority 134520252 != send priority 2 
    FAIL: mq_receive didn't receive the correct message
    FAIL: receive priority 134520252 != send priority 1 
    Test FAILED
    conformance/interfaces/mq_receive/10-1: execution: FAILED: Output: 
    unexpected error: mq_receive 10-1: mq_open: Function not implemented
    unexpected error: mq_receive 10-1: mq_close: Function not implemented
    unexpected error: mq_receive 10-1: mq_unlink: Function not implemented
    errno != EAGAIN 
    Test FAILED
    conformance/interfaces/mq_receive/11-1: execution: FAILED: Output: 
    unexpected error: mq_receive 11-1: mq_open(): Function not implemented
    unexpected error: mq_receive 11-1: mq_close(): Function not implemented
    unexpected error: mq_receive 11-1: mq_unlink(): Function not implemented
    errno != EBADF 
    Test FAILED
    conformance/interfaces/mq_receive/11-2: execution: FAILED: Output: 
    unexpected error: mq_receive 11-2: mq_open(): Function not implemented
    unexpected error: mq_receive 11-2: mq_close: Function not implemented
    unexpected error: mq_receive 11-2: mq_unlink(): Function not implemented
    errno != EBADF 
    Test FAILED
    conformance/interfaces/mq_receive/12-1: execution: FAILED: Output: 
    unexpected error: mq_receive 12-1: mq_open: Function not implemented
    unexpected error: mq_receive 12-1: mq_send: Function not implemented
    unexpected error: mq_receive 12-1: mq_close: Function not implemented
    unexpected error: mq_receive 12-1: mq_unlink: Function not implemented
    errno != EMSGSIZE 
    Test FAILED
    conformance/interfaces/mq_receive/13-1: execution: UNRESOLVED: Output: 
    unexpected error: mq_receive 13-1: mq_open: Function not implemented
    mq_close() did not return success: Function not implemented
    mq_unlink() did not return success: Function not implemented
    Test UNRESOLVED
    conformance/interfaces/mq_receive/2-1: execution: UNRESOLVED: Output: 
    unexpected error: mq_receive 2-1: mq_open: Function not implemented
    unexpected error: mq_receive 2-1: mq_send: Function not implemented
    unexpected error: mq_receive 2-1: mq_close: Function not implemented
    unexpected error: mq_receive 2-1: mq_unlink: Function not implemented
    Test UNRESOLVED
    conformance/interfaces/mq_receive/5-1: execution: FAILED: Output: 
    unexpected error: mq_receive 5-1: mq_open: Function not implemented
    unexpected error: mq_receive 5-1: mq_send: Function not implemented
    unexpected error: mq_receive 5-1: mq_receive: Function not implemented
    unexpected error: mq_receive 5-1: mq_close: Function not implemented
    unexpected error: mq_receive 5-1: mq_unlink: Function not implemented
    Test FAILED
    conformance/interfaces/mq_receive/7-1: execution: UNRESOLVED: Output: 
    unexpected error: mq_receive 7-1: mq_open: Function not implemented
    unexpected error: mq_receive 7-1: mq_close: Function not implemented
    unexpected error: mq_receive 7-1: mq_unlink: Function not implemented
    Test UNRESOLVED
    conformance/interfaces/mq_receive/8-1: execution: FAILED: Output: 
    unexpected error: mq_receive 8-1: mq_open: Function not implemented
    unexpected error: mq_receive 8-1: mq_send: Function not implemented
    unexpected error: mq_receive 8-1: mq_send: Function not implemented
    unexpected error: mq_receive 8-1: mq_close: Function not implemented
    unexpected error: mq_receive 8-1: mq_unlink: Function not implemented
    FAIL: mq_receive didn't return the selected message size correctly 
    FAIL: mq_receive didn't return the selected message size correctly 
    Test FAILED
    conformance/interfaces/mq_send/1-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_send/10-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_send/11-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_send/11-2: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_send/12-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_send/14-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_send/2-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_send/3-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_send/3-2: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_send/5-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_send/5-2: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_send/6-1: execution: UNTESTED: Output: 
    Priority Scheduling needed to make a reliable test case
    for this instance.  Will not be tested.
    conformance/interfaces/mq_send/8-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_send/9-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_setattr/1-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_setattr/1-2: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_setattr/2-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_setattr/5-1: execution: UNRESOLVED: Output: 
    unexpected error: mq_setattr 5-1: mq_open(): Function not implemented
    conformance/interfaces/mq_timedreceive/1-1: execution: FAILED: Output: 
    unexpected error: mq_timedreceive 1-1: mq_open: Function not implemented
    unexpected error: mq_timedreceive 1-1: mq_send: Function not implemented
    unexpected error: mq_timedreceive 1-1: mq_send: Function not implemented
    unexpected error: mq_timedreceive 1-1: mq_timedreceive: Function not implemented
    unexpected error: mq_timedreceive 1-1: mq_timedreceive: Function not implemented
    unexpected error: mq_timedreceive 1-1: mq_close: Function not implemented
    unexpected error: mq_timedreceive 1-1: mq_unlink: Function not implemented
    FAIL: mq_timedreceive didn't receive the highest priority message
    FAIL: receive priority 134520424 != send priority 2 
    FAIL: mq_timedreceive didn't receive the correct message
    FAIL: receive priority 134520424 != send priority 1 
    Test FAILED
    conformance/interfaces/mq_timedreceive/10-1: execution: FAILED: Output: 
    unexpected error: mq_timedreceive 10-1: mq_open: Function not implemented
    unexpected error: mq_timedreceive 10-1: mq_send: Function not implemented
    FAIL: mq_receive fails unexpectly 
    : Function not implemented
    unexpected error: mq_timedreceive 10-1: mq_close: Function not implemented
    unexpected error: mq_timedreceive 10-1: mq_unlink: Function not implemented
    Test FAILED
    conformance/interfaces/mq_timedreceive/10-2: execution: FAILED: Output: 
    unexpected error: mq_timedreceive 10-1: mq_open: Function not implemented
    unexpected error: mq_timedreceive 10-1: mq_send: Function not implemented
    Unexpected error at mq_timedreceive: Function not implemented
    unexpected error: mq_timedreceive 10-1: mq_close: Function not implemented
    unexpected error: mq_timedreceive 10-1: mq_unlink: Function not implemented
    Test FAILED
    conformance/interfaces/mq_timedreceive/11-1: execution: FAILED: Output: 
    unexpected error: mq_timedreceive 11-1: mq_open: Function not implemented
    unexpected error: mq_timedreceive 11-1: mq_send: Function not implemented
    unexpected error: mq_timedreceive 11-1: mq_send: Function not implemented
    unexpected error: mq_timedreceive 11-1: mq_close: Function not implemented
    unexpected error: mq_timedreceive 11-1: mq_unlink: Function not implemented
    FAIL: mq_timedreceive didn't return the selected message size correctly 
    FAIL: mq_timedreceive didn't return the selected message size correctly 
    Test FAILED
    conformance/interfaces/mq_timedreceive/13-1: execution: FAILED: Output: 
    unexpected error: mq_timedreceive 13-1: mq_open: Function not implemented
    unexpected error: mq_timedreceive 13-1: mq_close: Function not implemented
    unexpected error: mq_timedreceive 13-1: mq_unlink: Function not implemented
    errno != EAGAIN 
    Test FAILED
    conformance/interfaces/mq_timedreceive/14-1: execution: FAILED: Output: 
    unexpected error: mq_timedreceive 14-1: mq_open(): Function not implemented
    unexpected error: mq_timedreceive 14-1: mq_close(): Function not implemented
    unexpected error: mq_timedreceive 14-1: mq_unlink(): Function not implemented
    errno != EBADF 
    Test FAILED
    conformance/interfaces/mq_timedreceive/15-1: execution: FAILED: Output: 
    unexpected error: mq_timedreceive 15-1: mq_open: Function not implemented
    unexpected error: mq_timedreceive 15-1: mq_send: Function not implemented
    unexpected error: mq_timedreceive 15-1: mq_close: Function not implemented
    unexpected error: mq_timedreceive 15-1: mq_unlink: Function not implemented
    errno != EMSGSIZE 
    Test FAILED
    conformance/interfaces/mq_timedreceive/17-1: execution: FAILED: Output: 
    unexpected error: mq_timedreceive 17-1: mq_open: Function not implemented
    unexpected error: mq_timedreceive 17-1: mq_close: Function not implemented
    unexpected error: mq_timedreceive 17-1: mq_unlink: Function not implemented
    errno != EINVAL 
    Test FAILED
    conformance/interfaces/mq_timedreceive/17-2: execution: FAILED: Output: 
    unexpected error: mq_timedreceive 17-2: mq_open: Function not implemented
    unexpected error: mq_timedreceive 17-2: mq_close: Function not implemented
    unexpected error: mq_timedreceive 17-2: mq_unlink: Function not implemented
    errno != EINVAL 
    Test FAILED
    conformance/interfaces/mq_timedreceive/17-3: execution: FAILED: Output: 
    unexpected error: mq_timedreceive 17-3: mq_open: Function not implemented
    unexpected error: mq_timedreceive 17-3: mq_close: Function not implemented
    unexpected error: mq_timedreceive 17-3: mq_unlink: Function not implemented
    errno != EINVAL 
    Test FAILED
    conformance/interfaces/mq_timedreceive/18-1: execution: FAILED: Output: 
    unexpected error: mq_timedreceive 18-1: mq_open: Function not implemented
    unexpected error: mq_timedreceive 18-1: mq_close: Function not implemented
    unexpected error: mq_timedreceive 18-1: mq_unlink: Function not implemented
    errno != ETIMEDOUT 
    Test FAILED
    conformance/interfaces/mq_timedreceive/18-2: execution: FAILED: Output: 
    unexpected error: mq_timedreceive 18-2: mq_open: Function not implemented
    unexpected error: mq_timedreceive 18-2: mq_close: Function not implemented
    unexpected error: mq_timedreceive 18-2: mq_unlink: Function not implemented
    errno != ETIMEDOUT
    Test FAILED
    conformance/interfaces/mq_timedreceive/2-1: execution: UNRESOLVED: Output: 
    unexpected error: mq_timedreceive 2-1: mq_open: Function not implemented
    unexpected error: mq_timedreceive 2-1: mq_send: Function not implemented
    unexpected error: mq_timedreceive 2-1: mq_close: Function not implemented
    unexpected error: mq_timedreceive 2-1: mq_unlink: Function not implemented
    Test UNRESOLVED
    conformance/interfaces/mq_timedreceive/5-1: execution: FAILED: Output: 
    unexpected error: mq_timedreceive 5-1: mq_open: Function not implemented
    unexpected error: mq_timedreceive 5-1: mq_send: Function not implemented
    unexpected error: mq_timedreceive 5-1: mq_timedreceive: Function not implemented
    unexpected error: mq_timedreceive 5-1: mq_close: Function not implemented
    unexpected error: mq_timedreceive 5-1: mq_unlink: Function not implemented
    mq_timedreceive didn't block on waiting 
    Test FAILED
    conformance/interfaces/mq_timedreceive/5-2: execution: FAILED: Output: 
    unexpected error: mq_timedreceive 5-2: mq_open: Function not implemented
    unexpected error: mq_timedreceive 5-2: mq_close: Function not implemented
    unexpected error: mq_timedreceive 5-2: mq_unlink: Function not implemented
    FAIL: mq_timedreceive didn't block until timout expires
    Test FAILED
    conformance/interfaces/mq_timedreceive/5-3: execution: UNRESOLVED: Output: 
    unexpected error: mq_timedreceive 5-3: mq_open: Function not implemented
    mq_close() did not return success: Function not implemented
    mq_unlink() did not return success: Function not implemented
    Test UNRESOLVED
    conformance/interfaces/mq_timedreceive/7-1: execution: UNRESOLVED: Output: 
    unexpected error: mq_timedreceive 7-1: mq_open: Function not implemented
    unexpected error: mq_timedreceive 7-1: mq_close: Function not implemented
    unexpected error: mq_timedreceive 7-1: mq_unlink: Function not implemented
    Test UNRESOLVED
    conformance/interfaces/mq_timedreceive/8-1: execution: FAILED: Output: 
    unexpected error: mq_timedreceive 8-1: mq_open: Function not implemented
    unexpected error: mq_timedreceive 8-1: mq_close: Function not implemented
    unexpected error: mq_timedreceive 8-1: mq_unlink: Function not implemented
    Using CLOCK_REALTIME
    FAIL: mq_timedreceive didn't block until timout expires
    Test FAILED
    conformance/interfaces/mq_timedreceive/speculative/10-2: execution: UNRESOLVED: Output: 
    unexpected error: mq_timedreceive 10-2: mq_open: Function not implemented
    unexpected error: mq_timedreceive 10-2: mq_send: Function not implemented
    unexpected error: mq_timedreceive 10-2: mq_close: Function not implemented
    unexpected error: mq_timedreceive 10-2: mq_unlink: Function not implemented
    mq_timedreceive() did fail on invalid abs_time
    Test UNRESOLVED
    conformance/interfaces/mq_timedsend/1-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_timedsend/10-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_timedsend/11-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_timedsend/11-2: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_timedsend/12-1: execution: INTERRUPTED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_timedsend/14-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_timedsend/15-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    Test UNRESOLVED
    conformance/interfaces/mq_timedsend/16-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_timedsend/17-1: execution: UNTESTED: Output: 
    Will not test timeout resolution.
    conformance/interfaces/mq_timedsend/18-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    Test UNRESOLVED
    conformance/interfaces/mq_timedsend/19-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    Test UNRESOLVED
    conformance/interfaces/mq_timedsend/2-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_timedsend/20-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    Test UNRESOLVED
    conformance/interfaces/mq_timedsend/3-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_timedsend/3-2: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_timedsend/5-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_timedsend/5-2: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_timedsend/5-3: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_timedsend/6-1: execution: UNTESTED: Output: 
    Priority Scheduling needed to make a reliable test case
    for this instance.  Will not be tested.
    conformance/interfaces/mq_timedsend/7-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_timedsend/8-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_timedsend/9-1: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    conformance/interfaces/mq_timedsend/speculative/18-2: execution: UNRESOLVED: Output: 
    mq_open() did not return success: Function not implemented
    Test UNRESOLVED
    conformance/interfaces/mq_unlink/1-1: execution: UNRESOLVED: Output: 
    unexpected error: mq_unlink 1-1: mq_open: Function not implemented
    conformance/interfaces/mq_unlink/2-1: execution: UNRESOLVED: Output: 
    unexpected error: mq_unlink 2-1: mq_open: Function not implemented
    unexpected error: mq_unlink 2-1: read: EOF 
    conformance/interfaces/mq_unlink/2-2: execution: UNRESOLVED: Output: 
    unexpected error: mq_unlink 2-2: mq_open: Function not implemented
    unexpected error: mq_unlink 2-2: read: EOF
    conformance/interfaces/mq_unlink/2-3: execution: UNTESTED: Output: 
    Difficult to detect whether mq_unlink will block until all the reference have been closed
    for this instance.  Will not be tested.
    conformance/interfaces/mq_unlink/7-1: execution: FAILED: Output: 
    Test FAILED
    conformance/interfaces/mq_unlink/speculative/7-2: execution: FAILED: Output: 
    Test FAILED, error is Function not implemented
    conformance/interfaces/munlock/10-1: execution: UNRESOLVED: Output: 
    Unexpected error: Operation not permitted
    conformance/interfaces/munlock/11-1: execution: UNRESOLVED: Output: 
    Unexpected error: Operation not permitted
    conformance/interfaces/munlock/7-1: execution: UNRESOLVED: Output: 
    You don't have permission to lock your address space.
    Try to rerun this test as root.
    conformance/interfaces/munmap/3-1: execution: FAILED: Output: 
    Test FAILED: munmap/3-1.c munmap returns: No such file or directory
    conformance/interfaces/munmap/4-1: execution: UNRESOLVED: Output: 
    munmap/4-1.c Error at msync(): Error in unknown error system: FFFFFFFF
    conformance/interfaces/munmap/8-1: execution: FAILED: Output: 
    Test FAILED: Expect EINVAL but get: (os/kern) successful
    conformance/interfaces/munmap/9-1: execution: FAILED: Output: 
    Test Fail: Expect EINVAL while get No such file or directory
    conformance/interfaces/nanosleep/10000-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/nanosleep/5-1: execution: FAILED: Output: 
    nanosleep() did not return -1 on failure
    conformance/interfaces/nanosleep/5-2: execution: FAILED: Output: 
    In handler
    Child did not exit normally.
    Test FAILED
    conformance/interfaces/nanosleep/6-1: execution: UNRESOLVED: Output: 
    sleep -1
    nanosleep() did not return -1 on failure
    conformance/interfaces/nanosleep/7-1: execution: FAILED: Output: 
    In handler
    nanosleep did not return -1
    Child did not exit normally.
    Test FAILED
    conformance/interfaces/nanosleep/7-2: execution: FAILED: Output: 
    In handler
    nanosleep() was not interrupted
    Child did not exit normally.
    Test FAILED
    conformance/interfaces/pthread_atfork/1-1: execution: UNRESOLVED: Output: 
    Error in pthread_atfork
    conformance/interfaces/pthread_atfork/1-2: execution: UNRESOLVED: Output: 
    [11:58:02]Test conformance/interfaces/pthread_atfork/1-2.c unresolved: got 1073741902 (Function not implemented) on line 216 (Failed to register the atfork handlers)
    conformance/interfaces/pthread_atfork/2-1: execution: FAILED: Output: 
    Test FAILED: Expected return value success, instead received 1073741902
    conformance/interfaces/pthread_atfork/2-2: execution: UNRESOLVED: Output: 
    [11:58:03]Test conformance/interfaces/pthread_atfork/2-2.c unresolved: got 1073741902 (Function not implemented) on line 244 (Failed to register the atfork handlers(N,N,N))
    conformance/interfaces/pthread_atfork/3-2: execution: UNRESOLVED: Output: 
    [11:58:03]Test conformance/interfaces/pthread_atfork/3-2.c unresolved: got 1073741902 (Function not implemented) on line 213 (Failed to register the atfork handlers)
    conformance/interfaces/pthread_atfork/3-3: execution: INTERRUPTED: Output: 
    conformance/interfaces/pthread_atfork/4-1: execution: UNRESOLVED: Output: 
    [12:10:53]Test conformance/interfaces/pthread_atfork/4-1.c unresolved: got 1073741902 (Function not implemented) on line 244 (Failed to register the atfork handlers)
    conformance/interfaces/pthread_attr_getschedparam/1-1: execution: UNRESOLVED: Output: 
    unexpected error: pthread_attr_getschedparam 1-1: pthread_attr_setschedpolicy
    conformance/interfaces/pthread_attr_getschedpolicy/2-1: execution: UNRESOLVED: Output: 
    unexpected error: pthread_attr_getschedpolicy 1-1: pthread_attr_setschedpolicy
    conformance/interfaces/pthread_attr_setinheritsched/2-1: execution: UNRESOLVED: Output: 
    unexpected error: pthread_attr_setinheritsched 2-1: pthread_attr_setschedpolicy: (os/kern) successful
    conformance/interfaces/pthread_attr_setinheritsched/2-2: execution: UNRESOLVED: Output: 
    unexpected error: pthread_attr_setinheritsched 2-2: pthread_attr_setschedpolicyconformance/interfaces/pthread_attr_setinheritsched/2-3: execution: UNRESOLVED: Output: 
    unexpected error: scheduler 4-1: pthread_setschedparam
    conformance/interfaces/pthread_attr_setinheritsched/2-4: execution: UNRESOLVED: Output: 
    unexpected error: scheduler 4-2: pthread_setschedparam
    conformance/interfaces/pthread_attr_setschedparam/1-1: execution: FAILED: Output: 
    unexpected error: pthread_attr_setschedparam 1-1: pthread_attr_setschedpolicy
    conformance/interfaces/pthread_attr_setschedparam/1-2: execution: FAILED: Output: 
    unexpected error: pthread_attr_setschedparam 1-2: pthread_attr_setschedpolicy
    conformance/interfaces/pthread_attr_setschedparam/1-3: execution: UNRESOLVED: Output: 
    unexpected error: scheduler 3-1: pthread_attr_setschedpolicy
    conformance/interfaces/pthread_attr_setschedparam/1-4: execution: UNRESOLVED: Output: 
    unexpected error: scheduler 3-2: pthread_attr_setschedpolicy
    conformance/interfaces/pthread_attr_setschedparam/speculative/3-1: execution: FAILED: Output: 
    unexpected error: pthread_attr_setschedparam 3-1: pthread_attr_setschedpolicy
    conformance/interfaces/pthread_attr_setschedparam/speculative/3-2: execution: FAILED: Output: 
    unexpected error: pthread_attr_setschedpaarm 3-2: pthread_attr_setschedpolicyconformance/interfaces/pthread_attr_setschedpolicy/1-1: execution: FAILED: Output: 
    Error on pthread_attr_setschedpolicy()	 rc=1073741942
    conformance/interfaces/pthread_attr_setschedpolicy/speculative/5-1: execution: UNRESOLVED: Output: 
    unexpected error: pthread_attr_setschedpolicy 5-1: pthread_attr_setinheritsched
    conformance/interfaces/pthread_attr_setscope/5-1: execution: UNTESTED: Output: 
    Untested for now, cannot find a unsupported inheritsched value
    conformance/interfaces/pthread_barrierattr_getpshared/2-1: execution: UNRESOLVED: Output: 
    Error at pthread_barrierattr_setpshared()
    conformance/interfaces/pthread_barrierattr_setpshared/1-1: execution: FAILED: Output: 
    Test FAILED: Error at pthread_barrierattr_setpshared()
    conformance/interfaces/pthread_cancel/3-1: execution: UNRESOLVED: Output: 
    unexpected error: pthread_cancel 3-1: pthread_setschedparam
    conformance/interfaces/pthread_cancel/5-2: execution: INTERRUPTED: Output: 
    conformance/interfaces/pthread_cond_broadcast/1-2: execution: UNRESOLVED: Output: 
    [12:42:33]Test starting
    [12:42:33]System abilities:
    [12:42:33] TPS : -1
    [12:42:33] CS  : 200112
    [12:42:33] MON : -1
    [12:42:33] MF  : 200112
    [12:42:33]Process-shared attributes won't be tested
    [12:42:33]Alternative clock won't be tested
    [12:42:33]Test conformance/interfaces/pthread_cond_broadcast/1-2.c unresolved: got 1073741846 (Invalid argument) on line 393 ([parent] Failed to set thread stack size)
    conformance/interfaces/pthread_cond_broadcast/2-3: execution: UNRESOLVED: Output: 
    [12:42:36]Test starting
    [12:42:36]System abilities:
    [12:42:36] TPS : -1
    [12:42:36] CS  : 200112
    [12:42:36] MON : -1
    [12:42:36] MF  : 200112
    [12:42:36]Process-shared attributes won't be tested
    [12:42:36]Alternative clock won't be tested
    [12:42:36]Test conformance/interfaces/pthread_cond_broadcast/2-3.c unresolved: got 1073741846 (Invalid argument) on line 384 ([parent] Failed to set thread stack size)
    conformance/interfaces/pthread_cond_broadcast/4-2: execution: INTERRUPTED: Output: 
    conformance/interfaces/pthread_cond_destroy/2-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/pthread_cond_init/1-2: execution: UNTESTED: Output: 
    File conformance/interfaces/pthread_cond_init/1-2.c cannot test: This test requires unsupported features
    conformance/interfaces/pthread_cond_init/1-3: execution: UNTESTED: Output: 
    File conformance/interfaces/pthread_cond_init/1-3.c cannot test: This test requires unsupported features
    conformance/interfaces/pthread_cond_init/2-2: execution: UNTESTED: Output: 
    File conformance/interfaces/pthread_cond_init/2-2.c cannot test: This test requires unsupported features
    conformance/interfaces/pthread_cond_init/4-1: execution: UNRESOLVED: Output: 
    Test conformance/interfaces/pthread_cond_init/4-1.c unresolved: got 1073741942 (Not supported) on line 145 (Cond attribute PSHARED failed)
    conformance/interfaces/pthread_cond_init/4-2: execution: INTERRUPTED: Output: 
    Test conformance/interfaces/pthread_cond_init/4-2.c unresolved: got 1073741942 (Not supported) on line 171 (Cond attribute PSHARED failed)
    conformance/interfaces/pthread_cond_signal/1-2: execution: INTERRUPTED: Output: 
    conformance/interfaces/pthread_cond_signal/4-2: execution: INTERRUPTED: Output: 
    conformance/interfaces/pthread_cond_timedwait/4-3: execution: INTERRUPTED: Output: 
    conformance/interfaces/pthread_cond_wait/4-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/pthread_condattr_getpshared/1-2: execution: UNRESOLVED: Output: 
    Error in pthread_condattr_setpshared(), error: 1073741942
    conformance/interfaces/pthread_condattr_setclock/1-2: execution: UNSUPPORTED: Output: 
    UNSUPPORTED: CLOCK_MONOTONIC is unsupported
    conformance/interfaces/pthread_condattr_setclock/1-3: execution: UNSUPPORTED: Output: 
    _POSIX_CPUTIME unsupported
    conformance/interfaces/pthread_condattr_setpshared/1-2: execution: FAILED: Output: 
    Test FAILED: Could not set pshared to PTHREAD_PROCESS_SHARED, error: 1073741942
    conformance/interfaces/pthread_create/1-4: execution: UNTESTED: Output: 
    [13:44:56]System abilities:
    [13:44:56] TSA: -1
    [13:44:56] TSS: -1
    [13:44:56] TPS: -1
    [13:44:56] pagesize: 4096
    [13:44:56] min stack size: -1
    [13:44:56]File conformance/interfaces/pthread_create/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size
    conformance/interfaces/pthread_create/1-5: execution: UNTESTED: Output: 
    [13:44:56]System abilities:
    [13:44:56] TSA: -1
    [13:44:56] TSS: -1
    [13:44:56] TPS: -1
    [13:44:56] pagesize: 4096
    [13:44:56] min stack size: -1
    [13:44:56]File conformance/interfaces/pthread_create/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size
    conformance/interfaces/pthread_create/1-6: execution: UNTESTED: Output: 
    [13:44:57]System abilities:
    [13:44:57] TSA: -1
    [13:44:57] TSS: -1
    [13:44:57] TPS: -1
    [13:44:57] pagesize: 4096
    [13:44:57] min stack size: -1
    [13:44:57]File conformance/interfaces/pthread_create/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size
    conformance/interfaces/pthread_create/11-1: execution: UNSUPPORTED: Output: 
    _POSIX_THREAD_CPUTIME not supported
    conformance/interfaces/pthread_create/14-1: execution: UNTESTED: Output: 
    [13:45:08]System abilities:
    [13:45:08] TSA: -1
    [13:45:08] TSS: -1
    [13:45:08] TPS: -1
    [13:45:08] pagesize: 4096
    [13:45:08] min stack size: -1
    [13:45:08]File conformance/interfaces/pthread_create/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size
    conformance/interfaces/pthread_create/15-1: execution: UNTESTED: Output: 
    [13:45:09]System abilities:
    [13:45:09] TSA: -1
    [13:45:09] TSS: -1
    [13:45:09] TPS: -1
    [13:45:09] pagesize: 4096
    [13:45:09] min stack size: -1
    [13:45:09]File conformance/interfaces/pthread_create/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size
    conformance/interfaces/pthread_create/3-2: execution: UNTESTED: Output: 
    [13:45:11]Growing down stack started upon 0x19fffa0 and we are currently down to 0x19fff60
    [13:45:11]Test starting
     Stack tests will be executed.
     Sched tests won't be executed.
    [13:45:11]System abilities:
    [13:45:11] TSA: -1
    [13:45:11] TSS: -1
    [13:45:11] TPS: -1
    [13:45:11] pagesize: 4096
    [13:45:11] min stack size: -1
    [13:45:11]File conformance/interfaces/pthread_create/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size
    conformance/interfaces/pthread_create/8-2: execution: UNTESTED: Output: 
    [13:45:13]System abilities:
    [13:45:13] TSA: -1
    [13:45:13] TSS: -1
    [13:45:13] TPS: -1
    [13:45:13] pagesize: 4096
    [13:45:13] min stack size: -1
    [13:45:13]File conformance/interfaces/pthread_create/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size
    conformance/interfaces/pthread_detach/1-2: execution: UNTESTED: Output: 
    [13:45:13]System abilities:
    [13:45:13] TSA: -1
    [13:45:13] TSS: -1
    [13:45:13] TPS: -1
    [13:45:13] pagesize: 4096
    [13:45:13] min stack size: -1
    [13:45:13]File conformance/interfaces/pthread_detach/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size
    conformance/interfaces/pthread_detach/2-2: execution: UNTESTED: Output: 
    [13:45:14]System abilities:
    [13:45:14] TSA: -1
    [13:45:14] TSS: -1
    [13:45:14] TPS: -1
    [13:45:14] pagesize: 4096
    [13:45:14] min stack size: -1
    [13:45:14]File conformance/interfaces/pthread_detach/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size
    conformance/interfaces/pthread_detach/4-3: execution: UNTESTED: Output: 
    [13:45:15]System abilities:
    [13:45:16] TSA: -1
    [13:45:16] TSS: -1
    [13:45:16] TPS: -1
    [13:45:16] pagesize: 4096
    [13:45:16] min stack size: -1
    [13:45:16]File conformance/interfaces/pthread_detach/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size
    conformance/interfaces/pthread_equal/2-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/pthread_exit/1-2: execution: UNTESTED: Output: 
    [15:01:43]System abilities:
    [15:01:43] TSA: -1
    [15:01:43] TSS: -1
    [15:01:43] TPS: -1
    [15:01:43] pagesize: 4096
    [15:01:43] min stack size: -1
    [15:01:43]File conformance/interfaces/pthread_exit/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size
    conformance/interfaces/pthread_exit/2-2: execution: UNTESTED: Output: 
    [15:01:44]System abilities:
    [15:01:44] TSA: -1
    [15:01:44] TSS: -1
    [15:01:44] TPS: -1
    [15:01:44] pagesize: 4096
    [15:01:44] min stack size: -1
    [15:01:44]File conformance/interfaces/pthread_exit/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size
    conformance/interfaces/pthread_exit/3-2: execution: UNTESTED: Output: 
    [15:01:45]System abilities:
    [15:01:45] TSA: -1
    [15:01:45] TSS: -1
    [15:01:45] TPS: -1
    [15:01:45] pagesize: 4096
    [15:01:45] min stack size: -1
    [15:01:45]File conformance/interfaces/pthread_exit/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size
    conformance/interfaces/pthread_exit/4-1: execution: UNTESTED: Output: 
    [15:01:45]System abilities:
    [15:01:45] TSA: -1
    [15:01:45] TSS: -1
    [15:01:45] TPS: -1
    [15:01:45] pagesize: 4096
    [15:01:45] min stack size: -1
    [15:01:45]File conformance/interfaces/pthread_exit/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size
    conformance/interfaces/pthread_exit/5-1: execution: UNTESTED: Output: 
    [15:01:46]System abilities:
    [15:01:46] TSA: -1
    [15:01:46] TSS: -1
    [15:01:46] TPS: -1
    [15:01:46] pagesize: 4096
    [15:01:46] min stack size: -1
    [15:01:46]File conformance/interfaces/pthread_exit/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size
    conformance/interfaces/pthread_exit/6-1: execution: UNTESTED: Output: 
    [15:01:46]System abilities:
    [15:01:46] TSA: -1
    [15:01:46] TSS: -1
    [15:01:46] TPS: -1
    [15:01:46] pagesize: 4096
    [15:01:46] min stack size: -1
    [15:01:46]File conformance/interfaces/pthread_exit/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size
    conformance/interfaces/pthread_exit/6-2: execution: UNTESTED: Output: 
    [15:01:46]System abilities:
    [15:01:46] TSA: -1
    [15:01:46] TSS: -1
    [15:01:46] TPS: -1
    [15:01:46] pagesize: 4096
    [15:01:46] min stack size: -1
    [15:01:46]File conformance/interfaces/pthread_exit/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size
    conformance/interfaces/pthread_getschedparam/1-1: execution: FAILED: Output: 
    Error at pthread_getschedparam: rc=1073741902
    conformance/interfaces/pthread_getschedparam/1-2: execution: UNRESOLVED: Output: 
    Error at pthread_setschedparam: rc=1073741902
    conformance/interfaces/pthread_getschedparam/1-3: execution: UNRESOLVED: Output: 
    [15:01:49]Test conformance/interfaces/pthread_getschedparam/1-3.c unresolved: got 1073741902 (Function not implemented) on line 223 (Failed to get min priority)
    conformance/interfaces/pthread_getschedparam/4-1: execution: UNRESOLVED: Output: 
    [15:01:49]Test conformance/interfaces/pthread_getschedparam/4-1.c unresolved: got 1073741902 (Function not implemented) on line 200 (Unexpected error returned)
    conformance/interfaces/pthread_join/1-2: execution: UNTESTED: Output: 
    [15:01:54]System abilities:
    [15:01:54] TSA: -1
    [15:01:54] TSS: -1
    [15:01:54] TPS: -1
    [15:01:54] pagesize: 4096
    [15:01:54] min stack size: -1
    [15:01:54]File conformance/interfaces/pthread_join/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size
    conformance/interfaces/pthread_join/3-1: execution: UNRESOLVED: Output: 
    Error in pthread_testcancel().  Cancel request timed out.
    : (os/kern) successful
    conformance/interfaces/pthread_join/4-1: execution: UNTESTED: Output: 
    [15:02:06]System abilities:
    [15:02:06] TSA: -1
    [15:02:06] TSS: -1
    [15:02:06] TPS: -1
    [15:02:06] pagesize: 4096
    [15:02:06] min stack size: -1
    [15:02:06]File conformance/interfaces/pthread_join/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size
    conformance/interfaces/pthread_join/6-3: execution: UNTESTED: Output: 
    [15:02:07]System abilities:
    [15:02:07] TSA: -1
    [15:02:07] TSS: -1
    [15:02:07] TPS: -1
    [15:02:07] pagesize: 4096
    [15:02:07] min stack size: -1
    [15:02:07]File conformance/interfaces/pthread_join/threads_scenarii.c cannot test: The min stack size is not a multiple of the page size
    conformance/interfaces/pthread_key_create/2-1: execution: INTERRUPTED: Output: 
    2-1.test: /var/tmp/hurd-20090404/./libpthread/sysdeps/hurd/pt-getspecific.c:30: pthread_getspecific: Assertion `key < __pthread_key_count' failed.
    conformance/interfaces/pthread_kill/2-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/pthread_kill/3-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/pthread_kill/7-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/pthread_kill/8-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/pthread_mutex_getprioceiling/1-1: execution: FAILED: Output: 
    Test FAILED: Error obtaining the priority ceiling

Another system crash, due to conformance/interfaces/pthread_mutex_init/5-1:

    (default pager): dropping data_request because of previous paging errors
    (default pager): dropping data_request because of previous paging errors
    (default pager): dropping data_request because of previous paging errors
    (default pager): dropping data_request because of previous paging errors

Disable the panic-causing test (conformance/interfaces/pthread_mutex_init/5-1)
and restart:

    conformance/interfaces/pthread_mutex_init/speculative/5-2: execution: UNTESTED: Output: 
    Implementation is: 
    	GNU
    	0.3
    	GNU-Mach 1.3.99/Hurd-0.3
    This implementation is not tested yet
    conformance/interfaces/pthread_mutex_timedlock/5-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/pthread_mutex_timedlock/5-2: execution: INTERRUPTED: Output: 
    conformance/interfaces/pthread_mutex_trylock/4-3: execution: INTERRUPTED: Output: 
    conformance/interfaces/pthread_mutexattr_getprioceiling/1-1: execution: UNRESOLVED: Output: 
    Error obtaining the attribute process-shared
    conformance/interfaces/pthread_mutexattr_getprioceiling/1-2: execution: UNRESOLVED: Output: 
    Error setting prioceiling to -1
    conformance/interfaces/pthread_mutexattr_getprioceiling/3-1: execution: FAILED: Output: 
    Test FAILED: Invalid return code 1073741902. Expected EINVAL or 0.
    conformance/interfaces/pthread_mutexattr_getprotocol/1-2: execution: UNRESOLVED: Output: 
    Error setting protocol to 1
    conformance/interfaces/pthread_mutexattr_getpshared/1-2: execution: UNRESOLVED: Output: 
    Error in pthread_mutexattr_setpshared(), error: 1073741942
    conformance/interfaces/pthread_mutexattr_gettype/speculative/3-1: execution: FAILED: Output: 
    Test FAILED: Incorrect return code.  Expected EINVAL, but got: 0
    conformance/interfaces/pthread_mutexattr_setprioceiling/1-1: execution: FAILED: Output: 
    Test FAILED: Error setting prioceiling to -1
    conformance/interfaces/pthread_mutexattr_setprioceiling/3-1: execution: FAILED: Output: 
    Test FAILED: Invalid return code 1073741902. Expected EINVAL or 0.
    conformance/interfaces/pthread_mutexattr_setprioceiling/3-2: execution: FAILED: Output: 
    Test FAILED: Invalid return code 1073741902. Expected EINVAL or 0.
    conformance/interfaces/pthread_mutexattr_setprotocol/1-1: execution: UNRESOLVED: Output: 
    Error setting protocol to 1
    conformance/interfaces/pthread_mutexattr_setpshared/1-1: execution: FAILED: Output: 
    Test FAILED: Cannot set pshared attribute to PTHREAD_PROCESS_SHARED. Error code: 1073741942
    conformance/interfaces/pthread_mutexattr_setpshared/2-2: execution: FAILED: Output: 
    Test FAILED: Expected return code 0, got: 1073741942
    conformance/interfaces/pthread_rwlock_rdlock/2-1: execution: FAILED: Output: 
    main: has priority: 1
    main: attempt read lock
    main: acquired read lock
    main: create wr_thread, with priority: 0
    wr_thread: attempt write lock
    main: create rd_thread, with priority: -1
    rd_thread: attempt read lock
    rd_thread: acquired read lock
    rd_thread: unlock read lock
    Test FAILED: rd_thread did not block on read lock, when a reader owns the lock, and a higher priority writer is waiting for the lock
    conformance/interfaces/pthread_rwlock_rdlock/2-2: execution: FAILED: Output: 
    main: attempt read lock
    main: acquired read lock
    main: create wr_thread, with priority: 0
    wr_thread: attempt write lock
    main: create rd_thread, with priority: 0
    rd_thread: attempt read lock
    rd_thread: acquired read lock
    rd_thread: unlock read lock
    Test FAILED: rd_thread did not block on read lock, when a reader owns the lock, and an equal priority writer is waiting for the lock
    conformance/interfaces/pthread_rwlock_unlock/3-1: execution: FAILED: Output: 
    main: write lock
    main: create writer1, with priority: 1
    writer1: attempt write lock
    main: create reader, with priority: 1
    reader: attempt read lock
    main: create writer2, with priority: -1
    writer2: attempt write lock
    main: release write lock
    writer2: acquired writer lock
    Test fail: writer did not get write lock, when main release the lock
    conformance/interfaces/pthread_rwlock_unlock/4-1: execution: INTERRUPTED: Output: 
    4-1.test: /var/tmp/hurd-20090404/./libpthread/sysdeps/generic/pt-rwlock-unlock.c:34: pthread_rwlock_unlock: Assertion `__pthread_spin_trylock (&rwlock->__held) == ((0x10 << 26) | ((16) & 0x3fff))' failed.
    conformance/interfaces/pthread_rwlock_unlock/4-2: execution: INTERRUPTED: Output: 
    4-2.test: /var/tmp/hurd-20090404/./libpthread/sysdeps/generic/pt-rwlock-unlock.c:34: pthread_rwlock_unlock: Assertion `__pthread_spin_trylock (&rwlock->__held) == ((0x10 << 26) | ((16) & 0x3fff))' failed.
    main: attempt read lock
    main: acquired read lock
    main: create un_thread
    un_thread: unlock read lock
    conformance/interfaces/pthread_rwlock_wrlock/3-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/pthread_rwlockattr_getpshared/2-1: execution: UNRESOLVED: Output: 
    Error at pthread_rwlockattr_setpshared()
    conformance/interfaces/pthread_rwlockattr_setpshared/1-1: execution: FAILED: Output: 
    Test FAILED: Error at pthread_rwlockattr_setpshared(), return error: 1073741942
    conformance/interfaces/pthread_setschedparam/1-1: execution: FAILED: Output: 
    Error at pthread_setschedparam: rc=1073741902
    conformance/interfaces/pthread_setschedparam/1-2: execution: UNTESTED: Output: 
    [08:51:19]File conformance/interfaces/pthread_setschedparam/1-2.c cannot test: Failed to get min SCHED_RR range
    conformance/interfaces/pthread_setschedparam/4-1: execution: UNRESOLVED: Output: 
    [08:51:20]Test conformance/interfaces/pthread_setschedparam/4-1.c unresolved: got 1073741902 (Function not implemented) on line 132 (Failed to set thread policy -- need to be root?)
    conformance/interfaces/pthread_setschedparam/5-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/pthread_setschedprio/1-1: execution: UNRESOLVED: Output: 
    Error at pthread_setschedparam: rc=1073741902
    conformance/interfaces/pthread_sigmask/10-1: execution: FAILED: Output: 
    FAIL: SIGKILL was added to the signal mask
    Test FAILED
    conformance/interfaces/pthread_sigmask/18-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/pthread_sigmask/4-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/pthread_sigmask/5-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/pthread_sigmask/6-1: execution: HUNG: Output: 
    conformance/interfaces/pthread_sigmask/9-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/pthread_spin_lock/1-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/sched_get_priority_max/1-1: execution: FAILED: Output: 
    An error occurs: Function not implemented
    conformance/interfaces/sched_get_priority_max/1-2: execution: FAILED: Output: 
    An error occurs: Function not implemented
    conformance/interfaces/sched_get_priority_max/1-3: execution: UNSUPPORTED: Output: 
    Does not support SS (SPORADIC SERVER)
    conformance/interfaces/sched_get_priority_max/1-4: execution: FAILED: Output: 
    An error occurs: Function not implemented
    conformance/interfaces/sched_get_priority_max/2-1: execution: FAILED: Output: 
    error is not EINVAL: Function not implemented
    conformance/interfaces/sched_get_priority_min/1-1: execution: FAILED: Output: 
    An error occurs: Function not implemented
    conformance/interfaces/sched_get_priority_min/1-2: execution: FAILED: Output: 
    An error occurs: Function not implemented
    conformance/interfaces/sched_get_priority_min/1-3: execution: UNSUPPORTED: Output: 
    Does not support SS (SPORADIC SERVER)
    conformance/interfaces/sched_get_priority_min/1-4: execution: FAILED: Output: 
    An error occurs: Function not implemented
    conformance/interfaces/sched_get_priority_min/2-1: execution: FAILED: Output: 
    error is not EINVAL: Function not implemented
    conformance/interfaces/sched_getparam/1-1: execution: FAILED: Output: 
    Return code is not zero.
    conformance/interfaces/sched_getparam/2-1: execution: FAILED: Output: 
    Different results between pid == 0 and pid == getpid().
    conformance/interfaces/sched_getparam/3-1: execution: FAILED: Output: 
    Unexpected error: Function not implemented
    conformance/interfaces/sched_getparam/4-1: execution: FAILED: Output: 
    errno is not ESRCH: Function not implemented
    conformance/interfaces/sched_getparam/6-1: execution: UNRESOLVED: Output: 
    errno is not EPERM: The system allows a non-rootuser to use sched_getparam(): Function not implemented
    conformance/interfaces/sched_getparam/speculative/7-1: execution: UNRESOLVED: Output: 
    sched_getparam() return -1 and sets errno == 1073741902.
    conformance/interfaces/sched_getscheduler/1-1: execution: FAILED: Output: 
    Unexpected error: Function not implemented
    conformance/interfaces/sched_getscheduler/2-1: execution: UNTESTED: Output: 
    Will not test the behavior of sched_getscheduler() when pid is negative
     because it is unspecified.
    conformance/interfaces/sched_getscheduler/3-1: execution: FAILED: Output: 
    Returned code is -1.
    conformance/interfaces/sched_getscheduler/4-1: execution: FAILED: Output: 
    Unexpected error: Function not implemented
    conformance/interfaces/sched_getscheduler/7-1: execution: FAILED: Output: 
    errno is not EPERM: Function not implemented
    conformance/interfaces/sched_rr_get_interval/1-1: execution: FAILED: Output: 
    Unexpected error: Function not implemented
    conformance/interfaces/sched_rr_get_interval/2-1: execution: FAILED: Output: 
    interval.tv_sec  not updated.
    conformance/interfaces/sched_rr_get_interval/3-1: execution: FAILED: Output: 
    Returned error is not ESRCH: Function not implemented
    conformance/interfaces/sched_rr_get_interval/speculative/5-1: execution: UNRESOLVED: Output: 
    sched_rr_get_interval() return -1 and sets errno == 1073741902.
    conformance/interfaces/sched_setparam/1-1: execution: UNRESOLVED: Output: 
    An error occurs when calling sched_getparam(): Function not implemented
    conformance/interfaces/sched_setparam/10-1: execution: UNRESOLVED: Output: 
    An error occurs when calling shmget(): Invalid argument
    conformance/interfaces/sched_setparam/12-1: execution: UNTESTED: Output: 
    Not yet tested.
    conformance/interfaces/sched_setparam/13-1: execution: UNTESTED: Output: 
    Not yet tested.
    conformance/interfaces/sched_setparam/14-1: execution: UNTESTED: Output: 
    Not yet tested.
    conformance/interfaces/sched_setparam/15-1: execution: UNTESTED: Output: 
    Will not test the effects of the sched_ss_low_priority,
    sched_ss_repl_period, and sched_ss_init_budget members when the scheduling
    policy of the target process is not SCHED_FIFO, SCHED_RR, or SCHED_SPORADIC.
    It is implementation-defined.
    conformance/interfaces/sched_setparam/16-1: execution: UNTESTED: Output: 
     Will not test the result of sched_setparam when the scheduling policy of the
    target process is not SCHED_FIFO, SCHED_RR, or SCHED_SPORADIC.
    It is implementation-defined.
    conformance/interfaces/sched_setparam/17-1: execution: UNTESTED: Output: 
    Will not test that sched_setparam have no effect on the scheduling of threads
     with system scheduling contention scope.
    conformance/interfaces/sched_setparam/18-1: execution: UNTESTED: Output: 
    Will not test that the threads scheduling policy and associated parameters
    are not affected.
    conformance/interfaces/sched_setparam/19-1: execution: UNTESTED: Output: 
    Will not test that the underlying kernel-scheduled entities for the system
    contention scope threads are not be affected by this sched_setparam().
    conformance/interfaces/sched_setparam/2-1: execution: UNRESOLVED: Output: 
    An error occurs when calling sched_setscheduler(): Function not implemented
    conformance/interfaces/sched_setparam/2-2: execution: UNRESOLVED: Output: 
    An error occurs when calling sched_setscheduler(): Function not implemented
    conformance/interfaces/sched_setparam/22-1: execution: UNRESOLVED: Output: 
    An error occurs when calling sched_getparam(): Function not implemented
    conformance/interfaces/sched_setparam/23-1: execution: UNRESOLVED: Output: 
    An error occurs when calling sched_getparam(): Function not implemented
    conformance/interfaces/sched_setparam/23-2: execution: UNSUPPORTED: Output: 
    Does not support SS (SPORADIC SERVER)
    conformance/interfaces/sched_setparam/23-3: execution: UNSUPPORTED: Output: 
    Does not support SS (SPORADIC SERVER)
    conformance/interfaces/sched_setparam/23-4: execution: UNSUPPORTED: Output: 
    Does not support SS (SPORADIC SERVER)
    conformance/interfaces/sched_setparam/23-5: execution: UNSUPPORTED: Output: 
    Does not support SS (SPORADIC SERVER)
    conformance/interfaces/sched_setparam/23-6: execution: UNRESOLVED: Output: 
    An error occurs when calling sched_getparam(): Function not implemented
    conformance/interfaces/sched_setparam/23-7: execution: UNRESOLVED: Output: 
    An error occurs when calling sched_getparam(): Function not implemented
    conformance/interfaces/sched_setparam/25-1: execution: UNRESOLVED: Output: 
    An error occurs when calling sched_getscheduler(): Function not implemented
    conformance/interfaces/sched_setparam/25-2: execution: UNSUPPORTED: Output: 
    Does not support SS (SPORADIC SERVER)
    conformance/interfaces/sched_setparam/26-1: execution: UNRESOLVED: Output: 
    An error occurs when calling sched_getparam(): Function not implemented
    conformance/interfaces/sched_setparam/27-1: execution: UNRESOLVED: Output: 
    An error occurs when calling sched_getparam(): Function not implemented
    conformance/interfaces/sched_setparam/3-1: execution: UNTESTED: Output: 
    Will not test the behavior of sched_setparam() when pid is negative because
    it is unspecified.
    conformance/interfaces/sched_setparam/5-1: execution: UNRESOLVED: Output: 
    An error occurs when calling sched_getparam(): Function not implemented
    conformance/interfaces/sched_setparam/6-1: execution: UNTESTED: Output: 
    Will not test the conditions under which one process has permission to
    change the scheduling parameters of another process, because they are
    implementation-defined.
    conformance/interfaces/sched_setparam/7-1: execution: UNTESTED: Output: 
    Will not test that implementations may require the requesting process to
    have the appropriate privilege to set its own scheduling parameters or those
    of another process.
    conformance/interfaces/sched_setparam/8-1: execution: UNTESTED: Output: 
    Will not test that the target process is moved to the tail of the thread
    list for its priority when it is running.
    conformance/interfaces/sched_setparam/9-1: execution: UNRESOLVED: Output: 
    An error occurs when calling shmget(): Invalid argument
    conformance/interfaces/sched_setscheduler/1-1: execution: UNRESOLVED: Output: 
    Policy: SCHED_FIFO
      Error calling sched_setscheduler() for SCHED_FIFO policy
    Policy: SCHED_RR
      Error calling sched_setscheduler() for SCHED_RR policy
    Policy: SCHED_OTHER
      Error calling sched_setscheduler() for SCHED_OTHER policy
    conformance/interfaces/sched_setscheduler/10-1: execution: UNTESTED: Output: 
    Not yet tested.
    conformance/interfaces/sched_setscheduler/11-1: execution: UNTESTED: Output: 
    Not yet tested.
    conformance/interfaces/sched_setscheduler/12-1: execution: UNTESTED: Output: 
    Will not test that sched_setscheduler have no effect on the scheduling of
     threads with system scheduling contention scope.
    conformance/interfaces/sched_setscheduler/13-1: execution: UNTESTED: Output: 
    Will not test that the threads scheduling policy and associated parameters
    are not affected.
    conformance/interfaces/sched_setscheduler/14-1: execution: UNTESTED: Output: 
    Will not test that the underlying kernel-scheduled entities for the system
    contention scope threads are not be affected by sched_setscheduler().
    conformance/interfaces/sched_setscheduler/15-1: execution: UNSUPPORTED: Output: 
    Process contention scope threads are not supported.
    conformance/interfaces/sched_setscheduler/16-1: execution: UNRESOLVED: Output: 
    An error occurs when calling sched_getscheduler(): Function not implemented
    conformance/interfaces/sched_setscheduler/17-1: execution: UNRESOLVED: Output: 
    Policy: SCHED_FIFO
    An error occurs when calling sched_getparam(): Function not implemented
    conformance/interfaces/sched_setscheduler/17-2: execution: UNSUPPORTED: Output: 
    Does not support SS (SPORADIC SERVER)
    conformance/interfaces/sched_setscheduler/17-3: execution: UNSUPPORTED: Output: 
    Does not support SS (SPORADIC SERVER)
    conformance/interfaces/sched_setscheduler/17-4: execution: UNSUPPORTED: Output: 
    Does not support SS (SPORADIC SERVER)
    conformance/interfaces/sched_setscheduler/17-5: execution: UNRESOLVED: Output: 
    An error occurs when calling sched_getparam(): Function not implemented
    conformance/interfaces/sched_setscheduler/17-6: execution: UNRESOLVED: Output: 
    An error occurs when calling sched_getparam(): Function not implemented
    conformance/interfaces/sched_setscheduler/17-7: execution: UNRESOLVED: Output: 
    An error occurs when calling sched_getparam(): Function not implemented
    conformance/interfaces/sched_setscheduler/19-1: execution: UNRESOLVED: Output: 
    Policy: SCHED_FIFO
    An error occurs when calling sched_get_priority_max(): Function not implemented
    conformance/interfaces/sched_setscheduler/19-2: execution: UNSUPPORTED: Output: 
    Does not support SS (SPORADIC SERVER)
    conformance/interfaces/sched_setscheduler/19-3: execution: UNSUPPORTED: Output: 
    Does not support SS (SPORADIC SERVER)
    conformance/interfaces/sched_setscheduler/19-4: execution: UNSUPPORTED: Output: 
    Does not support SS (SPORADIC SERVER)
    conformance/interfaces/sched_setscheduler/19-5: execution: FAILED: Output: 
    Unknow error: Function not implemented
    conformance/interfaces/sched_setscheduler/2-1: execution: UNTESTED: Output: 
    Will not test the behavior of sched_setscheduler() when pid is negative
     because it is unspecified.
    conformance/interfaces/sched_setscheduler/20-1: execution: FAILED: Output: 
    errno is not EPERM: Function not implemented
    conformance/interfaces/sched_setscheduler/21-1: execution: FAILED: Output: 
    errno is not ESRCH: Function not implemented
    conformance/interfaces/sched_setscheduler/4-1: execution: UNRESOLVED: Output: 
    An error occurs when calling sched_getparam(): Function not implemented
    conformance/interfaces/sched_setscheduler/5-1: execution: UNTESTED: Output: 
    Will not test the condition under which one process has the appropriate
    privilege to change the scheduling parameters of another process because 
    they are implementation-defined.
    conformance/interfaces/sched_setscheduler/6-1: execution: UNTESTED: Output: 
    Will not test that implementations may require that the requesting process
    have permission to set its own scheduling parameters or those of another
    process.
    conformance/interfaces/sched_setscheduler/7-1: execution: UNTESTED: Output: 
    Will not test if implementation-defined restrictions apply as to the
    appropriate privileges required to set a process' own scheduling policy, or
    another process' scheduling policy, to a particular value.
    conformance/interfaces/sched_setscheduler/9-1: execution: UNTESTED: Output: 
    Not yet tested.
    conformance/interfaces/sem_close/1-1: execution: INTERRUPTED: Output: 
    unexpected error: sem_close 1-1: sem_open: Operation not supported
    conformance/interfaces/sem_close/2-1: execution: INTERRUPTED: Output: 
    unexpected error: sem_close 2-1: sem_open: Operation not supported
    conformance/interfaces/sem_close/3-1: execution: INTERRUPTED: Output: 
    unexpected error: sem_close 3-1: sem_open: Operation not supported
    conformance/interfaces/sem_close/3-2: execution: UNRESOLVED: Output: 
    [08:56:54]Test conformance/interfaces/sem_close/3-2.c unresolved: got 1073741869 (Operation not supported) on line 113 (Failed to create the semaphore)
    conformance/interfaces/sem_getvalue/1-1: execution: UNRESOLVED: Output: 
    unexpected error: sem_getvalue 1-1: sem_open: Operation not supported
    conformance/interfaces/sem_getvalue/2-1: execution: UNRESOLVED: Output: 
    unexpected error: sem_getvalue 2-1: sem_open: Operation not supported
    conformance/interfaces/sem_getvalue/4-1: execution: UNRESOLVED: Output: 
    unexpected error: sem_getvalue 4-1: sem_open: Operation not supported
    conformance/interfaces/sem_getvalue/5-1: execution: UNRESOLVED: Output: 
    unexpected error: sem_getvalue 5-1: sem_open: Operation not supported
    conformance/interfaces/sem_init/3-2: execution: UNRESOLVED: Output: 
    [08:56:59]Test conformance/interfaces/sem_init/3-2.c unresolved: got 1073741869 (Operation not supported) on line 135 (Failed to init the semaphore)
    conformance/interfaces/sem_init/3-3: execution: UNRESOLVED: Output: 
    [08:57:00]Test conformance/interfaces/sem_init/3-3.c unresolved: got 1073741869 (Operation not supported) on line 134 (Failed to init the semaphore)
    conformance/interfaces/sem_init/7-1: execution: UNTESTED: Output: 
    [08:57:01]sysconf( _SC_SEM_NSEMS_MAX ) = -1
    [08:57:01]File conformance/interfaces/sem_init/7-1.c cannot test: There is no constraint on SEM_NSEMS_MAX
    conformance/interfaces/sem_open/1-1: execution: FAILED: Output: 
    TEST FAILED
    conformance/interfaces/sem_open/1-3: execution: UNRESOLVED: Output: 
    unexpected error: sem_open 1-3: sem_open: Operation not supported
    conformance/interfaces/sem_open/1-4: execution: UNRESOLVED: Output: 
    unexpected error: sem_open 1-4: sem_open: Operation not supported
    conformance/interfaces/sem_open/10-1: execution: UNRESOLVED: Output: 
    unexpected error: sem_open 10-1: sem_open: Operation not supported
    conformance/interfaces/sem_open/15-1: execution: UNRESOLVED: Output: 
    [08:57:03]Test conformance/interfaces/sem_open/15-1.c unresolved: got 1073741869 (Operation not supported) on line 106 (Failed to sem_open)
    conformance/interfaces/sem_open/2-1: execution: UNRESOLVED: Output: 
    unexpected error: sem_open 2-1: sem_open: Operation not supported
    conformance/interfaces/sem_open/2-2: execution: UNRESOLVED: Output: 
    unexpected error: sem_open 2-2: sem_open: Operation not supported
    conformance/interfaces/sem_open/3-1: execution: FAILED: Output: 
    TEST FAILED
    conformance/interfaces/sem_open/4-1: execution: FAILED: Output: 
    TEST FAILED
    conformance/interfaces/sem_open/6-1: execution: FAILED: Output: 
    TEST FAILED
    conformance/interfaces/sem_post/1-1: execution: UNRESOLVED: Output: 
    unexpected error: sem_post 1-1: sem_open: Operation not supported
    conformance/interfaces/sem_post/1-2: execution: UNRESOLVED: Output: 
    unexpected error: sem_post 1-2: sem_open: Operation not supported
    conformance/interfaces/sem_post/2-1: execution: UNRESOLVED: Output: 
    unexpected error: sem_post 2-1: sem_open: Operation not supported
    conformance/interfaces/sem_post/4-1: execution: UNRESOLVED: Output: 
    unexpected error: sem_post 4-1: sem_open: Operation not supported
    conformance/interfaces/sem_post/5-1: execution: UNRESOLVED: Output: 
    unexpected error: sem_post 5-1: sem_open: Operation not supported
    conformance/interfaces/sem_post/6-1: execution: UNRESOLVED: Output: 
    unexpected error: sem_post 6-1: sem_open: Operation not supported
    conformance/interfaces/sem_post/8-1: execution: UNTESTED: Output: 
    _POSIX_PRIORITY_SCHEDULING not defined
    conformance/interfaces/sem_timedwait/9-1: execution: FAILED: Output: 
    In handler
    TEST FAILED: errno != EINTR
    conformance/interfaces/sem_unlink/1-1: execution: INTERRUPTED: Output: 
    unexpected error: sem_unlink 1-1: sem_open: Operation not supported
    conformance/interfaces/sem_unlink/2-1: execution: INTERRUPTED: Output: 
    unexpected error: sem_unlink 2-1: sem_open: Operation not supported
    conformance/interfaces/sem_unlink/2-2: execution: UNRESOLVED: Output: 
    [08:57:23]Test conformance/interfaces/sem_unlink/2-2.c unresolved: got 1073741869 (Operation not supported) on line 158 (Failed to create the semaphore)
    conformance/interfaces/sem_unlink/3-1: execution: UNRESOLVED: Output: 
    [08:57:23]Test conformance/interfaces/sem_unlink/3-1.c unresolved: got 1073741869 (Operation not supported) on line 156 (Failed to create the semaphore)
    conformance/interfaces/sem_unlink/4-1: execution: FAILED: Output: 
    TEST FAILED: semaphore does exist
    conformance/interfaces/sem_unlink/4-2: execution: FAILED: Output: 
    [08:57:24]Error 1073741869: Operation not supported
    [08:57:24]Test conformance/interfaces/sem_unlink/4-2.c FAILED: The error was not ENOENT
    conformance/interfaces/sem_unlink/6-1: execution: UNRESOLVED: Output: 
    [08:57:25]Test conformance/interfaces/sem_unlink/6-1.c unresolved: got 1073741869 (Operation not supported) on line 107 (Failed to create the semaphore)
    conformance/interfaces/sem_unlink/7-1: execution: UNRESOLVED: Output: 
    [08:57:25]Test conformance/interfaces/sem_unlink/7-1.c unresolved: got 1073741869 (Operation not supported) on line 126 (Failed to create the semaphore)
    conformance/interfaces/sem_unlink/9-1: execution: UNRESOLVED: Output: 
    [08:57:25]Test conformance/interfaces/sem_unlink/9-1.c unresolved: got 1073741869 (Operation not supported) on line 133 (Failed to create the semaphore)
    conformance/interfaces/sem_wait/1-1: execution: UNRESOLVED: Output: 
    unexpected error: sem_wait 1-1: sem_open: Operation not supported
    conformance/interfaces/sem_wait/1-2: execution: UNRESOLVED: Output: 
    unexpected error: sem_wait 2-1: sem_open: Operation not supported
    conformance/interfaces/sem_wait/11-1: execution: UNRESOLVED: Output: 
    unexpected error: sem_trywait 11-1: sem_open: Operation not supported
    conformance/interfaces/sem_wait/12-1: execution: INTERRUPTED: Output: 
    unexpected error: sem_trywait 12-1: sem_open: Operation not supported
    conformance/interfaces/sem_wait/3-1: execution: UNRESOLVED: Output: 
    unexpected error: sem_wait 3-1: sem_open: Operation not supported
    conformance/interfaces/sem_wait/5-1: execution: INTERRUPTED: Output: 
    unexpected errno: sem_trywait 5-1: sem_open: Operation not supported
    conformance/interfaces/sem_wait/7-1: execution: UNRESOLVED: Output: 
    unexpected error: sem_wait 7-1: sem_open: Operation not supported
    conformance/interfaces/shm_open/1-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/shm_open/10-1: execution: UNTESTED: Output: 
    Will not test whether the file offset is set because it is unspecified.
    conformance/interfaces/shm_open/12-1: execution: UNTESTED: Output: 
    Will not test the behavior of implementation when an application does not
    specify exactly one of two values: O_RDONLY and O_RDWR.
    conformance/interfaces/shm_open/14-2: execution: INTERRUPTED: Output: 
    conformance/interfaces/shm_open/19-1: execution: UNTESTED: Output: 
    Will not test the effect of calling shm_open() when the shared memory object
    does not exists, the O_CREAT flags is set, and bits in mode other than the
    file permission bits are set. It is unspecified.
    conformance/interfaces/shm_open/2-1: execution: UNTESTED: Output: 
    Will not test that the shm_open() function create an open file description
    that refers to the shared memory object and a file descriptor that refers to
    conformance/interfaces/shm_open/23-1: execution: UNRESOLVED: Output: 
    error at sem_open: Operation not supported
    conformance/interfaces/shm_open/24-1: execution: UNTESTED: Output: 
    Will not test the result of shm_open() when O_EXCL is set and O_CREAT is not
    set because it is undefined.
    conformance/interfaces/shm_open/26-2: execution: UNRESOLVED: Output: 
    You don't have permission to change your UID.
    Try to rerun this test as root.
    conformance/interfaces/shm_open/27-1: execution: UNTESTED: Output: 
    Will not test the result of shm_open() when using O_TRUNC with O_RDONLY.
    It is undefined.
    conformance/interfaces/shm_open/28-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/shm_open/28-3: execution: INTERRUPTED: Output: 
    conformance/interfaces/shm_open/29-1: execution: UNTESTED: Output: 
    Will not test whether the name and shared memory object state remain valid
    after a system reboot. It is unspecified.
    conformance/interfaces/shm_open/3-1: execution: UNTESTED: Output: 
    Will not test whether the name appears in the file system and is visible to
    other functions that take pathnames as arguments because it is unspecified.
    conformance/interfaces/shm_open/36-1: execution: UNTESTED: Output: 
    It is very difficult to test that the shm_open() function sets errno = EINTR
    when it is interrupted by a signal.
    conformance/interfaces/shm_open/37-1: execution: FAILED: Output: 
    Name: '[GARBAGE]'
       OK: open  with success.
    Name: '[GARBAGE]'
       OK: open  with success.
    Name: '..'
       Unexpected error: Is a directory
    Name: '/'
       OK: errno == EINVAL
    Name: '//'
       OK: errno == EINVAL
    Name: '/abc'
       OK: open  with success.
    Test FAILED
    conformance/interfaces/shm_open/39-2: execution: UNRESOLVED: Output: 
    An error occurs when calling pathconf(): Invalid argument
    conformance/interfaces/shm_open/42-1: execution: UNTESTED: Output: 
    Will not test that the shm_open() function sets errno to ENOSPC if there is
    insufficient space for the creation of the new shared memory object.
    conformance/interfaces/shm_open/5-1: execution: FAILED: Output: 
    Test FAILED
    conformance/interfaces/shm_open/6-1: execution: UNTESTED: Output: 
    Will not test the effect of a name which does not begin with the slash
    character because it is implementation-defined.
    conformance/interfaces/shm_open/7-1: execution: UNTESTED: Output: 
    Will not test the interpretation of slash characters other than the leading
    slash character in name because it is implementation-defined.
    conformance/interfaces/shm_open/9-1: execution: UNTESTED: Output: 
    Will not test that the open file description is new.
    conformance/interfaces/shm_unlink/10-2: execution: UNRESOLVED: Output: 
    An error occurs when calling pathconf(): Invalid argument
    conformance/interfaces/shm_unlink/8-1: execution: UNRESOLVED: Output: 
    You don't have permission to change your UID.
    Try to rerun this test as root.
    conformance/interfaces/shm_unlink/9-1: execution: UNRESOLVED: Output: 
    You don't have permission to change your UID.
    Try to rerun this test as root.
    conformance/interfaces/sigaction/4-37: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/17-23: execution: FAILED: Output: 
    Caught SIGURG
    Test FAILED
    conformance/interfaces/sigaction/12-41: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-4: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/4-28: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/17-26: execution: FAILED: Output: 
    Caught SIGXFSZ
    Test FAILED
    conformance/interfaces/sigaction/12-49: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-8: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-45: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-18: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/4-42: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/12-15: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-25: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/17-7: execution: FAILED: Output: 
    Caught SIGHUP
    Test FAILED
    conformance/interfaces/sigaction/4-48: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/12-23: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/4-34: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/12-24: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/4-43: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/17-22: execution: FAILED: Output: 
    Caught SIGTRAP
    Test FAILED
    conformance/interfaces/sigaction/12-31: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-35: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-46: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-7: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-34: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-3: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/4-52: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/4-30: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/4-51: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/12-13: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/4-36: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/17-21: execution: FAILED: Output: 
    Caught SIGSYS
    Test FAILED
    conformance/interfaces/sigaction/17-11: execution: FAILED: Output: 
    Caught SIGQUIT
    Test FAILED
    conformance/interfaces/sigaction/4-38: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/12-47: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-30: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-44: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/4-50: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/12-27: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-20: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/4-40: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/17-19: execution: FAILED: Output: 
    Caught SIGPOLL
    Test FAILED
    conformance/interfaces/sigaction/12-16: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-51: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-21: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/17-1: execution: FAILED: Output: 
    Caught SIGABRT
    Test FAILED
    conformance/interfaces/sigaction/4-32: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/17-12: execution: FAILED: Output: 
    Caught SIGSEGV
    Test FAILED
    conformance/interfaces/sigaction/12-52: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-10: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-36: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/17-9: execution: FAILED: Output: 
    Caught SIGINT
    Test FAILED
    conformance/interfaces/sigaction/4-47: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/12-11: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/17-10: execution: FAILED: Output: 
    Caught SIGPIPE
    Test FAILED
    conformance/interfaces/sigaction/12-5: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-48: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-19: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/4-46: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/17-17: execution: FAILED: Output: 
    Caught SIGUSR1
    Test FAILED
    conformance/interfaces/sigaction/12-14: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/17-14: execution: FAILED: Output: 
    Caught SIGTSTP
    Test FAILED
    conformance/interfaces/sigaction/17-18: execution: FAILED: Output: 
    Caught SIGUSR2
    Test FAILED
    conformance/interfaces/sigaction/4-41: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/12-43: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-28: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/17-6: execution: FAILED: Output: 
    Caught SIGFPE
    Test FAILED
    conformance/interfaces/sigaction/4-45: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/4-35: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/12-6: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/4-29: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/17-16: execution: FAILED: Output: 
    Caught SIGTTOU
    Test FAILED
    conformance/interfaces/sigaction/4-39: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/12-29: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-9: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/17-25: execution: FAILED: Output: 
    Caught SIGXCPU
    Test FAILED
    conformance/interfaces/sigaction/17-4: execution: FAILED: Output: 
    Caught SIGCHLD
    Test FAILED
    conformance/interfaces/sigaction/12-22: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/17-13: execution: FAILED: Output: 
    Caught SIGTERM
    Test FAILED
    conformance/interfaces/sigaction/4-31: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/12-38: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-12: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/4-44: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/4-49: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/12-40: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-42: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/17-15: execution: FAILED: Output: 
    Caught SIGTTIN
    Test FAILED
    conformance/interfaces/sigaction/17-3: execution: FAILED: Output: 
    Caught SIGBUS
    Test FAILED
    conformance/interfaces/sigaction/12-2: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/17-5: execution: FAILED: Output: 
    Caught SIGCONT
    Test FAILED
    conformance/interfaces/sigaction/12-33: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-17: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/17-2: execution: FAILED: Output: 
    Caught SIGALRM
    Test FAILED
    conformance/interfaces/sigaction/12-37: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/17-20: execution: FAILED: Output: 
    Caught SIGPROF
    Test FAILED
    conformance/interfaces/sigaction/17-8: execution: FAILED: Output: 
    Caught SIGILL
    Test FAILED
    conformance/interfaces/sigaction/4-33: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/12-39: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-50: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/12-32: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaction/4-27: execution: FAILED: Output: 
    About to stop child
    Child has continued
    Test FAILED
    conformance/interfaces/sigaction/17-24: execution: FAILED: Output: 
    Caught SIGVTALRM
    Test FAILED
    conformance/interfaces/sigaction/12-26: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaltstack/1-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaltstack/11-1: execution: FAILED: Output: 
    Test FAILED: Expected return value of -1.
    conformance/interfaces/sigaltstack/12-1: execution: FAILED: Output: 
    Test FAILED: Expected return value of -1.
    conformance/interfaces/sigaltstack/2-1: execution: FAILED: Output: 
    Test FAILED: ss_sp of the handler's stack changed even though SS_DISABLE was set
    conformance/interfaces/sigaltstack/3-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaltstack/6-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigaltstack/7-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigpause/2-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/sigpending/1-2: execution: INTERRUPTED: Output: 
    Not all pending signals found
    conformance/interfaces/sigpending/1-3: execution: INTERRUPTED: Output: 
    Error with send signals
    Test FAILED
    conformance/interfaces/sigqueue/10-1: execution: FAILED: Output: 
    sigqueue() failed on EINVAL but errno not set correctly
    conformance/interfaces/sigqueue/11-1: execution: FAILED: Output: 
    sigqueue() failed on ESRCH but errno not set correctly
    conformance/interfaces/sigqueue/12-1: execution: FAILED: Output: 
    sigqueue() failed but errno not set correctly
    conformance/interfaces/sigqueue/2-1: execution: FAILED: Output: 
    Could not call sigqueue with sig = 0
    conformance/interfaces/sigqueue/2-2: execution: FAILED: Output: 
    sigqueue() failed on ESRCH but errno not set correctly
    At least one test FAILED -- see output for status
    conformance/interfaces/sigqueue/3-1: execution: FAILED: Output: 
    Test FAILED: EPERM error not received
    conformance/interfaces/sigset/6-1: execution: UNRESOLVED: Output: 
    Unexpected error while using sigset(): (os/kern) successful
    conformance/interfaces/sigset/7-1: execution: UNRESOLVED: Output: 
    Unexpected error while using sigset(): (os/kern) successful
    conformance/interfaces/sigset/8-1: execution: FAILED: Output: 
    Test FAILED: sigset() didn't return SIG_HOLD
    conformance/interfaces/sigsuspend/1-1: execution: UNRESOLVED: Output: 
    suspending child
    SIGUSR2 called. Inside handler
    parent sending child a SIGUSR2 signal
    parent sending child a SIGUSR1 signal
    Exit status from child is 1
    Test UNRESOLVED: Either sigsuspend did not successfully block SIGUSR2, OR sigsuspend returned before handling the signal SIGUSR1
    conformance/interfaces/sigtimedwait/1-1: execution: FAILED: Output: 
    Test FAILED: sigtimedwait() did not return in the required time
    conformance/interfaces/sigtimedwait/4-1: execution: FAILED: Output: 
    Call to sigtimedwait() failed
    : Function not implemented
    conformance/interfaces/sigtimedwait/6-1: execution: FAILED: Output: 
    Test FAILED: sigtimedwait() did set errno to EAGAIN
    conformance/interfaces/sigwait/1-1: execution: FAILED: Output: 
    Signal SIGALRM is not pending!
    conformance/interfaces/sigwait/3-1: execution: FAILED: Output: 
    Test FAILED
    conformance/interfaces/sigwait/6-1: execution: FAILED: Output: 
    [09:04:10]0 threads were awaken
    [09:04:10]Test conformance/interfaces/sigwait/6-1.c FAILED: Unexpected number of threads awaken
    conformance/interfaces/sigwaitinfo/1-1: execution: UNRESOLVED: Output: 
    Call to sigwaitinfo() failed
    : Function not implemented
    conformance/interfaces/sigwaitinfo/3-1: execution: FAILED: Output: 
    Call to sigwaitinfo() failed
    : Function not implemented
    Child calling sigwaitinfo()
    parent sending child a SIGUSR1 signal
    Exit status from child is 2
    Test FAILED
    conformance/interfaces/sigwaitinfo/9-1: execution: FAILED: Output: 
    Call to sigwaitinfo() failed
    : Function not implemented
    conformance/interfaces/strftime/2-1: execution: INTERRUPTED: Output: 
    conformance/interfaces/timer_create/1-1: execution: FAILED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_create/10-1: execution: UNRESOLVED: Output: 
    sysconf(_SC_CPUTIME) returns: -1
    conformance/interfaces/timer_create/11-1: execution: UNSUPPORTED: Output: 
    rc = -1
    _POSIX_THREAD_CPUTIME unsupported
    conformance/interfaces/timer_create/16-1: execution: FAILED: Output: 
    errno != EINVAL
    Test FAILED
    conformance/interfaces/timer_create/3-1: execution: FAILED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_create/7-1: execution: UNSUPPORTED: Output: 
    CLOCK_MONOTONIC unsupported
    conformance/interfaces/timer_create/8-1: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_create/9-1: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_create/speculative/2-1: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_create/speculative/5-1: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_delete/1-1: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_delete/1-2: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_delete/speculative/5-1: execution: FAILED: Output: 
    timer_delete() returned -1, but didn't set errno!=EINVAL
    conformance/interfaces/timer_delete/speculative/5-2: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_getoverrun/1-1: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_getoverrun/2-1: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_getoverrun/2-2: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_getoverrun/2-3: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_getoverrun/3-1: execution: UNTESTED: Output: 
    Cannot be tested as DELAYTIMER_MAX is too large.
    DELAYTIMER_MAX is ffffffff
    conformance/interfaces/timer_getoverrun/speculative/6-1: execution: FAILED: Output: 
    fcn returned -1, but errno!=EINVAL
    Test FAILED
    conformance/interfaces/timer_getoverrun/speculative/6-2: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_getoverrun/speculative/6-3: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_gettime/1-1: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_gettime/1-2: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_gettime/1-3: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_gettime/1-4: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_gettime/2-1: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_gettime/2-2: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_gettime/3-1: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_gettime/speculative/6-1: execution: FAILED: Output: 
    fcn returned -1 but errno!=EINVAL
    Test FAILED
    conformance/interfaces/timer_gettime/speculative/6-2: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_gettime/speculative/6-3: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_settime/1-1: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_settime/1-2: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_settime/13-1: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_settime/2-1: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_settime/3-1: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_settime/3-2: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_settime/3-3: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_settime/5-1: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_settime/5-2: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_settime/5-3: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_settime/6-1: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_settime/8-1: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_settime/8-2: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_settime/8-3: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_settime/8-4: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_settime/9-1: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_settime/9-2: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_settime/speculative/12-1: execution: FAILED: Output: 
    fcn returned -1, but errno!=EINVAL
    Test FAILED
    conformance/interfaces/timer_settime/speculative/12-2: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    conformance/interfaces/timer_settime/speculative/12-3: execution: UNRESOLVED: Output: 
    timer_create() did not return success
    : Function not implemented
    functional/threads/schedule/1-1: execution: UNRESOLVED: Output: 
    unexpected error: scheduler 5-4: pthread_attr_setschedpolicy
    functional/threads/schedule/1-2: execution: UNRESOLVED: Output: 
    unexpected error: scheduler 5-5: pthread_setschedparam


# IRC, OFTC, #debin-hurd, 2012-12-28

    <pinotree> [...] saw posixtestsuite being completed too \o/
    <youpi> yep :)
    <pinotree> (still has a number of failures, but at least can be fully run)