1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625
|
<?xml version="1.0" encoding="UTF-8" ?>
<!-- Data taken from descriptions.tests in lcov package
and formatted as XML
Alastair McKinstry <mckinstry@debian.org>
-->
<test name="personality01">
<description>
Check that we can set the personality for a process.
</description>
</test>
<test name="personality02">
<description>
Check that we get EINVAL for a bad personality.
<test name="exit01">
<description>
Check that exit returns the correct values to the waiting parent
<test name="exit02">
<description>
Check that exit flushes output file buffers and closes files upon
exiting
<test name="wait02">
<description>
Basic test for wait(2) system call.
<test name="wait401">
<description>
check that a call to wait4() correctly waits for a child
process to exit
</description>
</test>
<test name="wait402">
<description>
check for ECHILD errno when using an illegal pid value
</description>
</test>
<test name="waitpid01">
<description>
Check that when a child kills itself by generating an alarm
exception, the waiting parent is correctly notified.
</description>
</test>
<test name="waitpid02">
<description>
Check that when a child kills itself by generating an integer zero
divide exception, the waiting parent is correctly notified.
</description>
</test>
<test name="waitpid03">
<description>
Check that parent waits until specific child has returned.
</description>
</test>
<test name="waitpid04">
<description>
test to check the error conditions in waitpid sys call
</description>
</test>
<test name="waitpid05">
<description>
Check that when a child kills itself with a kill statement after
determining its process id by using getpid, the parent receives a
correct report of the cause of its death. This also indirectly
checks that getpid returns the correct process id.
</description>
</test>
<test name="waitpid06">
<description>
Tests to see if pid's returned from fork and waitpid are same.
</description>
</test>
<test name="waitpid07">
<description>
Tests to see if pid's returned from fork and waitpid are same.
</description>
</test>
<test name="waitpid08">
<description>
Tests to see if pid's returned from fork and waitpid are same
</description>
</test>
<test name="waitpid09">
<description>
Check ability of parent to wait until child returns, and that the
child's process id is returned through the waitpid. Check that
waitpid returns immediately if no child is present.
</description>
</test>
<test name="waitpid10">
<description>
Tests to see if pid's returned from fork and waitpid are same
</description>
</test>
<test name="waitpid11">
<description>
Tests to see if pid's returned from fork and waitpid are same
</description>
</test>
<test name="waitpid12">
<description>
Tests to see if pid's returned from fork and waitpid are same
</description>
</test>
<test name="waitpid13">
<description>
Tests to see if pid's returned from fork and waitpid are same
</description>
</test>
<test name="fcntl01">
<description>
Test F_DUPFD, F_SETFL cmds of fcntl
</description>
</test>
<test name="fcntl02">
<description>
Basic test for fcntl(2) using F_DUPFD argument.
</description>
</test>
<test name="fcntl03">
<description>
Basic test for fcntl(2) using F_GETFD argument.
</description>
</test>
<test name="fcntl04">
<description>
Basic test for fcntl(2) using F_GETFL argument.
</description>
</test>
<test name="fcntl05">
<description>
Basic test for fcntl(2) using F_GETLK argument.
</description>
</test>
<test name="fcntl06">
<description>
Error checking conditions for remote locking of regions of a file.
</description>
</test>
<test name="fcntl07">
<description>
Close-On-Exec functional test.
</description>
</test>
<test name="fcntl07B">
<description>
Close-On-Exec of named pipe functional test.
</description>
</test>
<test name="fcntl08">
<description>
Basic test for fcntl(2) using F_SETFL argument.
</description>
</test>
<test name="fcntl09">
<description>
Basic test for fcntl(2) using F_SETLK argument.
</description>
</test>
<test name="fcntl10">
<description>
Basic test for fcntl(2) using F_SETLKW argument.
</description>
</test>
<test name="fcntl11">
<description>
Testcase to check locking of regions of a file
</description>
</test>
<test name="fcntl12">
<description>
Testcase to test that fcntl() sets EMFILE for F_DUPFD command.
</description>
</test>
<test name="fcntl13">
<description>
Testcase to test that fcntl() sets errno correctly.
</description>
</test>
<test name="fcntl14">
<description>
File locking test cases for fcntl. In Linux, S_ENFMT is not implemented
in the kernel. However all standard Unix kernels define S_ENFMT as
S_ISGID. So this test defines S_ENFMT as S_ISGID.
</description>
</test>
<test name="fcntl15">
<description>
Check that file locks are removed when file closed
</description>
</test>
<test name="fcntl16">
<description>
Additional file locking test cases for checking proper notification
of processes on lock change
</description>
</test>
<test name="fcntl17">
<description>
Check deadlock detection for file locking
</description>
</test>
<test name="fcntl18">
<description>
Test to check the error conditions in fcntl system call
</description>
</test>
<test name="fcntl19">
<description>
Testcase to check locking of regions of a file
</description>
</test>
<test name="fcntl20">
<description>
Check locking of regions of a file
</description>
</test>
<test name="fcntl21">
<description>
Check locking of regions of a file
</description>
</test>
<test name="dup01">
<description>
Basic test for dup(2).
</description>
</test>
<test name="dup02">
<description>
Negative test for dup(2) with bad fd.
</description>
</test>
<test name="dup03">
<description>
Negative test for dup(2) (too many fds).
</description>
</test>
<test name="dup04">
<description>
Basic test for dup(2) of a system pipe descriptor.
</description>
</test>
<test name="dup05">
<description>
Basic test for dup(2) of a named pipe descriptor.
</description>
</test>
<test name="dup201">
<description>
Negative tests for dup2() with bad fd (EBADF), and for "too many
open files" (EMFILE)
</description>
</test>
<test name="dup202">
<description>
Is the access mode the same for both file descriptors?
0: read only ? "0444"
1: write only ? "0222"
2: read/write ? "0666"
</description>
</test>
<test name="dup203">
<description>
Testcase to check the basic functionality of dup2().
</description>
</test>
<test name="dup204">
<description>
Testcase to check the basic functionality of dup2(2).
</description>
</test>
<test name="msync01">
<description>
Verify that, msync() succeeds, when the region to synchronize, is part
of, or all of a mapped region.
</description>
</test>
<test name="msync02">
<description>
Verify that msync() succeeds when the region to synchronize is mapped
shared and the flags argument is MS_INVALIDATE.
</description>
</test>
<test name="msync03">
<description>
Verify that, msync() fails, when the region to synchronize, is outside
the address space of the process.
</description>
</test>
<test name="msync04">
<description>
Verify that, msync() fails, when the region to synchronize, is mapped
but the flags argument is invalid.
</description>
</test>
<test name="msync05">
<description>
Verify that, msync() fails, when the region to synchronize, was not
mapped.
</description>
</test>
<test name="sendfile02">
<description>
Testcase to test the basic functionality of the sendfile(2) system call.
</description>
</test>
<test name="sendfile03">
<description>
Testcase to test that sendfile(2) system call returns appropriate
errnos on error.
</description>
</test>
<test name="fork01">
<description>
Basic test for fork(2).
</description>
</test>
<test name="fork02">
<description>
Test correct operation of fork:
pid == 0 in child;
pid > 0 in parent from wait;
</description>
</test>
<test name="fork03">
<description>
Check that child can use a large text space and do a large
number of operations.
</description>
</test>
<test name="fork04">
<description>
Child inheritance of Environment Variables after fork().
</description>
</test>
<test name="fork05">
<description>
Make sure LDT is propagated correctly
</description>
</test>
<test name="fork06">
<description>
Test that a process can fork children a large number of
times in succession
</description>
</test>
<test name="fork07">
<description>
Check that all children inherit parent's file descriptor
</description>
</test>
<test name="fork08">
<description>
Check if the parent's file descriptors are affected by
actions in the child; they should not be.
</description>
</test>
<test name="fork09">
<description>
Check that child has access to a full set of files.
</description>
</test>
<test name="fork10">
<description>
Check inheritance of file descriptor by children, they
should all be referring to the same file.
</description>
</test>
<test name="fork11">
<description>
Test that parent gets a pid from each child when doing wait
</description>
</test>
<test name="vfork01">
<description>
Fork a process using vfork() and verify that, the attribute values like
euid, ruid, suid, egid, rgid, sgid, umask, inode and device number of
root and current working directories are same as that of the parent
process.
</description>
</test>
<test name="vfork02">
<description>
Fork a process using vfork() and verify that, the pending signals in
the parent are not pending in the child process.
</description>
</test>
<test name="ioctl01">
<description>
Testcase to check the errnos set by the ioctl(2) system call.
</description>
</test>
<test name="ioctl02">
<description>
Testcase to test the TCGETA, and TCSETA ioctl implementations for
the tty driver
</description>
</test>
<test name="sockioctl01">
<description>
Verify that ioctl() on sockets returns the proper errno for various
failure cases
</description>
</test>
<test name="getitimer01">
<description>
check that a correct call to getitimer() succeeds
</description>
</test>
<test name="getitimer02">
<description>
check that a getitimer() call fails as expected
with an incorrect second argument.
</description>
</test>
<test name="getitimer03">
<description>
check that a getitimer() call fails as expected
with an incorrect first argument.
</description>
</test>
<test name="setitimer01">
<description>
check that a reasonable setitimer() call succeeds.
</description>
</test>
<test name="setitimer02">
<description>
check that a setitimer() call fails as expected
with incorrect values.
</description>
</test>
<test name="setitimer03">
<description>
check that a setitimer() call fails as expected
with incorrect values.
</description>
</test>
<test name="float_trigo">
<description>
increase CPUs workload - verify that results of some math functions are stable
trigonometric (acos, asin, atan, atan2, cos, sin, tan),
hyperbolic (cosh, sinh, tanh),
</description>
</test>
<test name="float_exp_log">
<description>
increase CPUs workload - verify that results of some math functions are stable
exponential and logarithmic functions (exp, log, log10),
Functions that manipulate floating-point numbers (modf, ldexp, frexp),
Euclidean distance function (hypot),
</description>
</test>
<test name="float_bessel">
<description>
increase CPUs workload - verify that results of some math functions are stable
Bessel (j0, j1, y0, y1),
Computes the natural logarithm of the gamma function (lgamma),
</description>
</test>
<test name="fload_power">
<description>
increase CPUs workload - verify that results of some math functions are stable
Computes sqrt, power, fmod
</description>
</test>
<test name="float_iperb">
<description>
increase CPUs workload - verify that results of some math functions are stable
</description>
</test>
<test name="pth_str01">
<description>
Creates a tree of threads
</description>
</test>
<test name="pth_str02">
<description>
Creates n threads
</description>
</test>
<test name="pth_str03">
<description>
Creates a tree of threads does calculations, and
returns result to parent
</description>
</test>
<test name="asyncio02">
<description>
Write/close flushes data to the file.
</description>
</test>
<test name="fpathconf">
<description>
Basic test for fpathconf(2)
</description>
</test>
<test name="gethostid01">
<description>
Basic test for gethostid(2)
</description>
</test>
<test name="pathconf01">
<description>
Basic test for pathconf(2)
</description>
</test>
<test name="setpgrp01">
<description>
Basic test for the setpgrp(2) system call.
</description>
</test>
<test name="setpgrp02">
<description>
Testcase to check the basic functionality of the setpgrp(2) syscall.
</description>
</test>
<test name="ulimit01">
<description>
Basic test for the ulimit(2) system call.
</description>
</test>
<test name="mmstress">
<description>
Performs General Stress with Race conditions
</description>
</test>
<test name="mmap1">
<description>
Test the LINUX memory manager. The program is aimed at
stressing the memory manager by simultaneous map/unmap/read
by light weight processes, the test is scheduled to run for
a minimum of 24 hours.
</description>
</test>
<test name="mmap2">
<description>
Test the LINUX memory manager. The program is aimed at
stressing the memory manager by repeated map/write/unmap of a
of a large gb size file.
</description>
</test>
<test name="mmap3">
<description>
Test the LINUX memory manager. The program is aimed at
stressing the memory manager by repeated map/write/unmap
of file/memory of random size (maximum 1GB) this is done by
multiple processes.
</description>
</test>
<test name="mmap001">
<description>
Tests mmapping a big file and writing it once
</description>
</test>
<test name="mmap01">
<description>
Verify that, mmap() succeeds when used to map a file where size of the
file is not a multiple of the page size, the memory area beyond the end
of the file to the end of the page is accessible. Also, verify that
this area is all zeroed and the modifications done to this area are
not written to the file.
</description>
</test>
<test name="mmap02">
<description>
Call mmap() with prot parameter set to PROT_READ and with the file
descriptor being open for read, to map a file creating mapped memory
with read access. The minimum file permissions should be 0444.
</description>
</test>
<test name="mmap03">
<description>
Call mmap() to map a file creating a mapped region with execute access
under the following conditions -
- The prot parameter is set to PROT_EXE
- The file descriptor is open for read
- The file being mapped has execute permission bit set.
- The minimum file permissions should be 0555.
The call should succeed to map the file creating mapped memory with the
required attributes.
</description>
</test>
<test name="mmap04">
<description>
Call mmap() to map a file creating a mapped region with read/exec access
under the following conditions -
- The prot parameter is set to PROT_READ|PROT_EXEC
- The file descriptor is open for read
- The file being mapped has read and execute permission bit set.
- The minimum file permissions should be 0555.
The call should succeed to map the file creating mapped memory with the
required attributes.
</description>
</test>
<test name="mmap05">
<description>
Call mmap() to map a file creating mapped memory with no access under
the following conditions -
- The prot parameter is set to PROT_NONE
- The file descriptor is open for read(any mode other than write)
- The minimum file permissions should be 0444.
The call should succeed to map the file creating mapped memory with the
required attributes.
</description>
</test>
<test name="mmap06">
<description>
Call mmap() to map a file creating a mapped region with read access
under the following conditions -
- The prot parameter is set to PROT_READ
- The file descriptor is open for writing.
The call should fail to map the file.
</description>
</test>
<test name="mmap07">
<description>
Call mmap() to map a file creating a mapped region with read access
under the following conditions -
- The prot parameter is set to PROT_WRITE
- The file descriptor is open for writing.
- The flags parameter has MAP_PRIVATE set.
The call should fail to map the file.
</description>
</test>
<test name="mmap08">
<description>
Verify that mmap() fails to map a file creating a mapped region
when the file specified by file descriptor is not valid.
</description>
</test>
<test name="mremap01">
<description>
Verify that, mremap() succeeds when used to expand the existing
virtual memory mapped region to the requested size where the
virtual memory area was previously mapped to a file using mmap().
</description>
</test>
<test name="mremap02">
<description>
Verify that,
mremap() fails when used to expand the existing virtual memory mapped
region to the requested size, if the virtual memory area previously
mapped was not page aligned or invalid argument specified.
</description>
</test>
<test name="mremap03">
<description>
Verify that,
mremap() fails when used to expand the existing virtual memory mapped
region to the requested size, if there already exists mappings that
cover the whole address space requested or the old address specified was
not mapped.
</description>
</test>
<test name="mremap04">
<description>
Verify that,
mremap() fails when used to expand the existing virtual memory mapped
region to the requested size, if the memory area cannot be expanded at
the current virtual address and MREMAP_MAYMOVE flag not set.
</description>
</test>
<test name="munmap01">
<description>
Verify that, munmap call will succeed to unmap a mapped file or
anonymous shared memory region from the calling process's address space
and after successful completion of munmap, the unmapped region is no
longer accessible.
</description>
</test>
<test name="munmap02">
<description>
Verify that, munmap call will succeed to unmap a mapped file or
anonymous shared memory region from the calling process's address space
if the region specified by the address and the length is part or all of
the mapped region.
</description>
</test>
<test name="munmap03">
<description>
Verify that, munmap call will fail to unmap a mapped file or anonymous
shared memory region from the calling process's address space if the
address and the length of the region to be unmapped points outside the
calling process's address space
</description>
</test>
<test name="brk01">
<description>
Test the basic functionality of brk.
</description>
</test>
<test name="sbrk01">
<description>
Basic test for the sbrk(2) system call.
</description>
</test>
<test name="mprotect01">
<description>
Testcase to check the error conditions for mprotect(2)
</description>
</test>
<test name="mprotect02">
<description>
Testcase to check the mprotect(2) system call.
</description>
</test>
<test name="mprotect03">
<description>
Testcase to check the mprotect(2) system call.
</description>
</test>
<test name="msgctl01">
<description>
create a message queue, then issue the IPC_STAT command
and RMID commands to test the functionality
</description>
</test>
<test name="msgctl02">
<description>
create a message queue, then issue the IPC_SET command
to lower the msg_qbytes value.
</description>
</test>
<test name="msgctl03">
<description>
create a message queue, then issue the IPC_RMID command
</description>
</test>
<test name="msgctl04">
<description>
test for EACCES, EFAULT and EINVAL errors using
a variety of incorrect calls.
</description>
</test>
<test name="msgctl05">
<description>
test for EPERM error
</description>
</test>
<test name="msgget01">
<description>
create a message queue, write a message to it and
read it back.
</description>
</test>
<test name="msgget02">
<description>
test for EEXIST and ENOENT errors
</description>
</test>
<test name="msgget03">
<description>
test for an ENOSPC error by using up all available
message queues.
</description>
</test>
<test name="msgget04">
<description>
test for an EACCES error by creating a message queue
with no read or write permission and then attempting
to access it with various permissions.
</description>
</test>
<test name="msgrcv01">
<description>
test that msgrcv() receives the expected message
</description>
</test>
<test name="msgrcv02">
<description>
test for EACCES and EFAULT errors
</description>
</test>
<test name="msgrcv03">
<description>
test for EINVAL error
</description>
</test>
<test name="msgrcv04">
<description>
test for E2BIG and ENOMSG errors
</description>
</test>
<test name="msgrcv05">
<description>
test for EINTR error
</description>
</test>
<test name="msgrcv06">
<description>
test for EIDRM error
</description>
</test>
<test name="msgsnd01">
<description>
test that msgsnd() enqueues a message correctly
</description>
</test>
<test name="msgsnd02">
<description>
test for EACCES and EFAULT errors
</description>
</test>
<test name="msgsnd03">
<description>
test for EINVAL error
</description>
</test>
<test name="msgsnd04">
<description>
test for EAGAIN error
</description>
</test>
<test name="msgsnd05">
<description>
test for EINTR error
</description>
</test>
<test name="msgsnd06">
<description>
test for EIDRM error
</description>
</test>
<test name="link02">
<description>
Basic test for link(2)
</description>
</test>
<test name="link03">
<description>
Multi links tests
</description>
</test>
<test name="link04">
<description>
Negative test cases for link(2)
</description>
</test>
<test name="link05">
<description>
Multi links (EMLINK) negative test
</description>
</test>
<test name="readlink01">
<description>
Verify that, readlink will succeed to read the contents of the symbolic
link created the process.
</description>
</test>
<test name="readlink02">
<description>
Basic test for the readlink(2) system call
</description>
</test>
<test name="readlink03">
<description>
Verify that,
1) readlink(2) returns -1 and sets errno to EACCES if search/write
permission is denied in the directory where the symbolic link
resides.
2) readlink(2) returns -1 and sets errno to EINVAL if the buffer size
is not positive.
3) readlink(2) returns -1 and sets errno to EINVAL if the specified
file is not a symbolic link file.
4) readlink(2) returns -1 and sets errno to ENAMETOOLONG if the
pathname component of symbolic link is too long (ie, > PATH_MAX).
5) readlink(2) returns -1 and sets errno to ENOENT if the component of
symbolic link points to an empty string.
</description>
</test>
<test name="readlink04">
<description>
Verify that, readlink call will succeed to read the contents of the
symbolic link if invoked by non-root user who is not the owner of the
symbolic link.
</description>
</test>
<test name="symlink01">
<description>
Test of various file function calls, such as rename or open, on a symbolic
link file.
</description>
</test>
<test name="symlink02">
<description>
Basic test for the symlink(2) system call.
</description>
</test>
<test name="symlink03">
<description>
Verify that,
1) symlink(2) returns -1 and sets errno to EACCES if search/write
permission is denied in the directory where the symbolic link is
being created.
2) symlink(2) returns -1 and sets errno to EEXIST if the specified
symbolic link already exists.
3) symlink(2) returns -1 and sets errno to EFAULT if the specified
file or symbolic link points to invalid address.
4) symlink(2) returns -1 and sets errno to ENAMETOOLONG if the
pathname component of symbolic link is too long (ie, > PATH_MAX).
5) symlink(2) returns -1 and sets errno to ENOTDIR if the directory
component in pathname of symbolic link is not a directory.
6) symlink(2) returns -1 and sets errno to ENOENT if the component of
symbolic link points to an empty string.
</description>
</test>
<test name="symlink04">
<description>
Verify that, symlink will succeed to create a symbolic link of an existing
object name path.
</description>
</test>
<test name="symlink05">
<description>
Verify that, symlink will succeed to create a symbolic link of an
non-existing object name path.
</description>
</test>
<test name="unlink05">
<description>
Basic test for the unlink(2) system call.
</description>
</test>
<test name="unlink06">
<description>
Test for the unlink(2) system call of a FIFO.
</description>
</test>
<test name="unlink07">
<description>
Tests for error handling for the unlink(2) system call.
</description>
</test>
<test name="unlink08">
<description>
More tests for error handling for the unlink(2) system call.
</description>
</test>
<test name="linktest">
<description>
Regression test for max links per file
</description>
</test>
<test name="rename01">
<description>
This test will verify the rename(2) syscall basic functionality.
Verify rename() works when the "new" file or directory does not exist.
</description>
</test>
<test name="rename02">
<description>
Basic test for the rename(2) system call
</description>
</test>
<test name="rename03">
<description>
This test will verify that rename(2) functions correctly
when the "new" file or directory exists
</description>
</test>
<test name="rename04">
<description>
This test will verify that rename(2) failed when newpath is
a non-empty directory and return EEXIST or ENOTEMPTY
</description>
</test>
<test name="rename05">
<description>
This test will verify that rename(2) fails with EISDIR
</description>
</test>
<test name="rename06">
<description>
This test will verify that rename(2) failed in EINVAL
</description>
</test>
<test name="rename07">
<description>
This test will verify that rename(2) failed in ENOTDIR
</description>
</test>
<test name="rename08">
<description>
This test will verify that rename(2) syscall failed in EFAULT
</description>
</test>
<test name="rename09">
<description>
check rename() fails with EACCES
</description>
</test>
<test name="rename10">
<description>
This test will verify that rename(2) syscall fails with ENAMETOOLONG
and ENOENT
</description>
</test>
<test name="rename11">
<description>
This test will verify that rename(2) failed in EBUSY
</description>
</test>
<test name="rename12">
<description>
check rename() fails with EPERM
</description>
</test>
<test name="rename13">
<description>
Verify rename() return successfully and performs no other action
when "old" file and "new" file link to the same file.
</description>
</test>
<test name="rmdir01">
<description>
This test will verify that rmdir(2) syscall basic functionality.
verify rmdir(2) returns a value of 0 and the directory being
removed.
</description>
</test>
<test name="rmdir02">
<description>
This test will verify that rmdir(2) fail in
1. ENOTEMPTY
2. EBUSY
3. ENAMETOOLONG
4. ENOENT
5. ENOTDIR
6. EFAULT
7. EFAULT
</description>
</test>
<test name="rmdir03">
<description>
check rmdir() fails with EPERM or EACCES
</description>
</test>
<test name="rmdir04">
<description>
Basic test for the rmdir(2) system call
</description>
</test>
<test name="rmdir05">
<description>
Verify that rmdir(2) returns a value of -1 and sets errno to indicate the error.
</description>
</test>
<test name="mkdir01">
<description>
Basic errno test for mkdir(2)
</description>
</test>
<test name="mkdir02">
<description>
This test will verify that new directory created
by mkdir(2) inherits the group ID from the parent
directory and S_ISGID bit, if the S_ISGID bit is set
in the parent directory.
</description>
</test>
<test name="mkdir03">
<description>
Check mkdir() with various error conditions that should produce
EFAULT, ENAMETOOLONG, EEXIST, ENOENT and ENOTDIR
</description>
</test>
<test name="mkdir04">
<description>
Attempt to create a directory in a directory having no permissions.
</description>
</test>
<test name="mkdir05">
<description>
This test will verify the mkdir(2) syscall basic functionality
</description>
</test>
<test name="mkdir08">
<description>
Basic test for mkdir(2)
</description>
</test>
<test name="mknod01">
<description>
Basic test for mknod(2)
</description>
</test>
<test name="mknod02">
<description>
Verify that mknod(2) succeeds when used to create a filesystem
node with set group-ID bit set on a directory without set group-ID bit set.
The node created should have set group-ID bit set and its gid should be
equal to that of its parent directory.
</description>
</test>
<test name="mknod03">
<description>
Verify that mknod(2) succeeds when used to create a filesystem
node with set group-ID bit set on a directory with set group-ID bit set.
The node created should have set group-ID bit set and its gid should be
equal to the effective gid of the process.
</description>
</test>
<test name="mknod04">
<description>
Verify that mknod(2) succeeds when used to create a filesystem
node on a directory with set group-ID bit set.
The node created should not have group-ID bit set and its gid should be
equal to the effective gid of the process.
</description>
</test>
<test name="mknod05">
<description>
Verify that mknod(2) succeeds when used by root to create a filesystem
node with set group-ID bit set on a directory with set group-ID bit set.
The node created should have set group-ID bit set and its gid should be
equal to that of its parent directory.
</description>
</test>
<test name="mknod06">
<description>
Verify that,
1) mknod(2) returns -1 and sets errno to EEXIST if specified path
already exists.
2) mknod(2) returns -1 and sets errno to EFAULT if pathname points
outside user's accessible address space.
3) mknod(2) returns -1 and sets errno to ENOENT if the directory
component in pathname does not exist.
4) mknod(2) returns -1 and sets errno to ENAMETOOLONG if the pathname
component was too long.
5) mknod(2) returns -1 and sets errno to ENOTDIR if the directory
component in pathname is not a directory.
</description>
</test>
<test name="mknod07">
<description>
Verify that,
1) mknod(2) returns -1 and sets errno to EPERM if the process id of
the caller is not super-user.
2) mknod(2) returns -1 and sets errno to EACCES if parent directory
does not allow write permission to the process.
</description>
</test>
<test name="mknod08">
<description>
Verify that mknod(2) succeeds when used to create a filesystem
node on a directory without set group-ID bit set. The node created
should not have set group-ID bit set and its gid should be equal to that
of its parent directory.
</description>
</test>
<test name="access01">
<description>
Basic test for access(2) using F_OK, R_OK, W_OK, and X_OK arguments.
</description>
</test>
<test name="access02">
<description>
Verify that access() succeeds to check the read/write/execute permissions
on a file if the mode argument passed was R_OK/W_OK/X_OK.
Also verify that, access() succeeds to test the accessibility of the file
referred to by symbolic link if the pathname points to a symbolic link.
</description>
</test>
<test name="access03">
<description>
EFAULT error testing for access(2).
</description>
</test>
<test name="access04">
<description>
Verify that,
1. access() fails with -1 return value and sets errno to EACCES
if the permission bits of the file mode do not permit the
requested (Read/Write/Execute) access.
2. access() fails with -1 return value and sets errno to EINVAL
if the specified access mode argument is invalid.
3. access() fails with -1 return value and sets errno to EFAULT
if the pathname points outside allocate address space for the
process.
4. access() fails with -1 return value and sets errno to ENOENT
if the specified file doesn't exist (or pathname is NULL).
5. access() fails with -1 return value and sets errno to ENAMETOOLONG
if the pathname size is > PATH_MAX characters.
</description>
</test>
<test name="access05">
<description>
Verify that access() succeeds to check the existence of a file if
search access is permitted on the pathname of the specified file.
</description>
</test>
<test name="access06">
<description>
EFAULT error testing for access(2).
</description>
</test>
<test name="chroot01">
<description>
Testcase to check the whether chroot sets errno to EPERM.
</description>
</test>
<test name="chroot02">
<description>
Test functionality of chroot(2)
</description>
</test>
<test name="chroot03">
<description>
Testcase to test whether chroot(2) sets errno correctly.
</description>
</test>
<test name="pipeio">
<description>
This tool can be used to beat on system or named pipes.
See the help() function below for user information.
</description>
</test>
<test name="pipe01">
<description>
Testcase to check the basic functionality of the pipe(2) syscall:
Check that both ends of the pipe (both file descriptors) are
available to a process opening the pipe.
</description>
</test>
<test name="pipe05">
<description>
Check what happens when pipe is passed a bad file descriptor.
</description>
</test>
<test name="pipe06">
<description>
Check what happens when the system runs out of pipes.
</description>
</test>
<test name="pipe08">
<description>
Check that a SIGPIPE signal is generated when a write is
attempted on an empty pipe.
</description>
</test>
<test name="pipe09">
<description>
Check that two processes can use the same pipe at the same time.
</description>
</test>
<test name="pipe10">
<description>
Check that parent can open a pipe and have a child read from it
</description>
</test>
<test name="pipe11">
<description>
Check if many children can read what is written to a pipe by the
parent.
</description>
</test>
<test name="sem01">
<description>
Creates a semaphore and two processes. The processes
each go through a loop where they semdown, delay for a
random amount of time, and semup, so they will almost
always be fighting for control of the semaphore.
</description>
</test>
<test name="sem02">
<description>
The application creates several threads using pthread_create().
One thread performs a semop() with the SEM_UNDO flag set. The
change in semaphore value performed by that semop should be
"undone" only when the last pthread exits.
</description>
</test>
<test name="semctl01">
<description>
test the 10 possible semctl() commands
</description>
</test>
<test name="semctl02">
<description>
test for EACCES error
</description>
</test>
<test name="semctl03">
<description>
test for EINVAL and EFAULT errors
</description>
</test>
<test name="semctl04">
<description>
test for EPERM error
</description>
</test>
<test name="semctl05">
<description>
test for ERANGE error
</description>
</test>
<test name="semget01">
<description>
test that semget() correctly creates a semaphore set
</description>
</test>
<test name="semget02">
<description>
test for EACCES and EEXIST errors
</description>
</test>
<test name="semget03">
<description>
test for ENOENT error
</description>
</test>
<test name="semget05">
<description>
test for ENOSPC error
</description>
</test>
<test name="semget06">
<description>
test for EINVAL error
</description>
</test>
<test name="semop01">
<description>
test that semop() basic functionality is correct
</description>
</test>
<test name="semop02">
<description>
test for E2BIG, EACCES, EFAULT and EINVAL errors
</description>
</test>
<test name="semop03">
<description>
test for EFBIG error
</description>
</test>
<test name="semop04">
<description>
test for EAGAIN error
</description>
</test>
<test name="semop05">
<description>
test for EINTR and EIDRM errors
</description>
</test>
<test name="msgctl01">
<description>
create a message queue, then issue the IPC_STAT command
and RMID commands to test the functionality
</description>
</test>
<test name="msgctl02">
<description>
create a message queue, then issue the IPC_SET command
to lower the msg_qbytes value.
</description>
</test>
<test name="msgctl03">
<description>
create a message queue, then issue the IPC_RMID command
</description>
</test>
<test name="msgctl04">
<description>
test for EACCES, EFAULT and EINVAL errors using
a variety of incorrect calls.
</description>
</test>
<test name="msgctl05">
<description>
test for EPERM error
</description>
</test>
<test name="msgget01">
<description>
create a message queue, write a message to it and
read it back.
</description>
</test>
<test name="msgget02">
<description>
test for EEXIST and ENOENT errors
</description>
</test>
<test name="msgget03">
<description>
test for an ENOSPC error by using up all available
message queues.
</description>
</test>
<test name="msgget04">
<description>
test for an EACCES error by creating a message queue
with no read or write permission and then attempting
to access it with various permissions.
</description>
</test>
<test name="msgrcv01">
<description>
test that msgrcv() receives the expected message
</description>
</test>
<test name="msgrcv02">
<description>
test for EACCES and EFAULT errors
</description>
</test>
<test name="msgrcv03">
<description>
test for EINVAL error
</description>
</test>
<test name="msgrcv04">
<description>
test for E2BIG and ENOMSG errors
</description>
</test>
<test name="msgrcv05">
<description>
test for EINTR error
</description>
</test>
<test name="msgrcv06">
<description>
test for EIDRM error
</description>
</test>
<test name="msgsnd01">
<description>
test that msgsnd() enqueues a message correctly
</description>
</test>
<test name="msgsnd02">
<description>
test for EACCES and EFAULT errors
</description>
</test>
<test name="msgsnd03">
<description>
test for EINVAL error
</description>
</test>
<test name="msgsnd04">
<description>
test for EAGAIN error
</description>
</test>
<test name="msgsnd05">
<description>
test for EINTR error
</description>
</test>
<test name="msgsnd06">
<description>
test for EIDRM error
</description>
</test>
<test name="shmat01">
<description>
test that shmat() works correctly
</description>
</test>
<test name="shmat02">
<description>
check for EINVAL and EACCES errors
</description>
</test>
<test name="shmat03">
<description>
test for EACCES error
</description>
</test>
<test name="shmctl01">
<description>
test the IPC_STAT, IPC_SET and IPC_RMID commands as
they are used with shmctl()
</description>
</test>
<test name="shmctl02">
<description>
check for EACCES, EFAULT and EINVAL errors
</description>
</test>
<test name="shmctl03">
<description>
check for EACCES, and EPERM errors
</description>
</test>
<test name="shmdt01">
<description>
check that shared memory is detached correctly
</description>
</test>
<test name="shmdt02">
<description>
check for EINVAL error
</description>
</test>
<test name="shmget01">
<description>
test that shmget() correctly creates a shared memory segment
</description>
</test>
<test name="shmget02">
<description>
check for ENOENT, EEXIST and EINVAL errors
</description>
</test>
<test name="shmget03">
<description>
test for ENOSPC error
</description>
</test>
<test name="shmget04">
<description>
test for EACCES error
</description>
</test>
<test name="shmget05">
<description>
test for EACCES error
</description>
</test>
<test name="openfile">
<description>
Creates files and opens simultaneously
</description>
</test>
<test name="open01">
<description>
Open a file with oflag = O_CREAT set, does it set the sticky bit off?
Open "/tmp" with O_DIRECTORY, does it set the S_IFDIR bit on?
</description>
</test>
<test name="open02">
<description>
Test if open without O_CREAT returns -1 if a file does not exist.
</description>
</test>
<test name="open03">
<description>
Basic test for open(2)
</description>
</test>
<test name="open04">
<description>
Testcase to check that open(2) sets EMFILE if a process opens files
more than its descriptor size
</description>
</test>
<test name="open05">
<description>
Testcase to check open(2) sets errno to EACCES correctly.
</description>
</test>
<test name="open06">
<description>
Testcase to check open(2) sets errno to ENXIO correctly.
</description>
</test>
<test name="open07">
<description>
Test the open(2) system call to ensure that it sets ELOOP correctly.
</description>
</test>
<test name="open08">
<description>
Check for the following errors:
1. EEXIST
2. EISDIR
3. ENOTDIR
4. ENAMETOOLONG
5. EFAULT
6. ETXTBSY
</description>
</test>
<test name="openfile">
<description>
Creates files and opens simultaneously
</description>
</test>
<test name="chdir01">
<description>
Check proper operation of chdir(): tests whether the
system call can it change the current, working directory, and find a
file there? Will it fail on a non-directory entry ?
</description>
</test>
<test name="chdir02">
<description>
Basic test for chdir(2).
</description>
</test>
<test name="chdir03">
<description>
Testcase for testing that chdir(2) sets EACCES errno
</description>
</test>
<test name="chdir04">
<description>
Testcase to test whether chdir(2) sets errno correctly.
</description>
</test>
<test name="chmod01">
<description>
Verify that, chmod(2) succeeds when used to change the mode permissions
of a file.
</description>
</test>
<test name="chmod02">
<description>
Basic test for chmod(2).
</description>
</test>
<test name="chmod03">
<description>
Verify that, chmod(2) will succeed to change the mode of a file
and set the sticky bit on it if invoked by non-root (uid != 0)
process with the following constraints,
- the process is the owner of the file.
- the effective group ID or one of the supplementary group ID's of the
process is equal to the group ID of the file.
</description>
</test>
<test name="chmod04">
<description>
Verify that, chmod(2) will succeed to change the mode of a directory
and set the sticky bit on it if invoked by non-root (uid != 0) process
with the following constraints,
- the process is the owner of the directory.
- the effective group ID or one of the supplementary group ID's of the
process is equal to the group ID of the directory.
</description>
</test>
<test name="chmod05">
<description>
Verify that, chmod(2) will succeed to change the mode of a directory
but fails to set the setgid bit on it if invoked by non-root (uid != 0)
process with the following constraints,
- the process is the owner of the directory.
- the effective group ID or one of the supplementary group ID's of the
process is not equal to the group ID of the directory.
</description>
</test>
<test name="chmod06">
<description>
Verify that,
1) chmod(2) returns -1 and sets errno to EPERM if the effective user id
of process does not match the owner of the file and the process is
not super user.
2) chmod(2) returns -1 and sets errno to EACCES if search permission is
denied on a component of the path prefix.
3) chmod(2) returns -1 and sets errno to EFAULT if pathname points
outside user's accessible address space.
4) chmod(2) returns -1 and sets errno to ENAMETOOLONG if the pathname
component is too long.
5) chmod(2) returns -1 and sets errno to ENOTDIR if the directory
component in pathname is not a directory.
6) chmod(2) returns -1 and sets errno to ENOENT if the specified file
does not exists.
</description>
</test>
<test name="chmod07">
<description>
Verify that, chmod(2) will succeed to change the mode of a file/directory
and sets the sticky bit on it if invoked by root (uid = 0) process with
the following constraints,
- the process is not the owner of the file/directory.
- the effective group ID or one of the supplementary group ID's of the
process is equal to the group ID of the file/directory.
</description>
</test>
<test name="chown01">
<description>
Basic test for chown(2).
</description>
</test>
<test name="chown02">
<description>
Verify that, when chown(2) invoked by super-user to change the owner and
group of a file specified by path to any numeric owner(uid)/group(gid)
values,
- clears setuid and setgid bits set on an executable file.
- preserves setgid bit set on a non-group-executable file.
</description>
</test>
<test name="chown03">
<description>
Verify that, chown(2) succeeds to change the group of a file specified
by path when called by non-root user with the following constraints,
- euid of the process is equal to the owner of the file.
- the intended gid is either egid, or one of the supplementary gids
of the process.
Also, verify that chown() clears the setuid/setgid bits set on the file.
</description>
</test>
<test name="chown04">
<description>
Verify that,
1) chown(2) returns -1 and sets errno to EPERM if the effective user id
of process does not match the owner of the file and the process is
not super user.
2) chown(2) returns -1 and sets errno to EACCES if search permission is
denied on a component of the path prefix.
3) chown(2) returns -1 and sets errno to EFAULT if pathname points
outside user's accessible address space.
4) chown(2) returns -1 and sets errno to ENAMETOOLONG if the pathname
component is too long.
5) chown(2) returns -1 and sets errno to ENOTDIR if the directory
component in pathname is not a directory.
6) chown(2) returns -1 and sets errno to ENOENT if the specified file
does not exists.
</description>
</test>
<test name="chown05">
<description>
Verify that, chown(2) succeeds to change the owner and group of a file
specified by path to any numeric owner(uid)/group(gid) values when invoked
by super-user.
</description>
</test>
<test name="close01">
<description>
Test that closing a regular file and a pipe works correctly
</description>
</test>
<test name="close02">
<description>
Check that an invalid file descriptor returns EBADF
</description>
</test>
<test name="close08">
<description>
Basic test for close(2).
</description>
</test>
<test name="fchdir01">
<description>
create a directory and cd into it.
</description>
</test>
<test name="fchdir02">
<description>
try to cd into a bad directory (bad fd).
</description>
</test>
<test name="fchmod01">
<description>
Basic test for Fchmod(2).
</description>
</test>
<test name="fchmod02">
<description>
Verify that, fchmod(2) will succeed to change the mode of a file/directory
set the sticky bit on it if invoked by root (uid = 0) process with
the following constraints,
- the process is not the owner of the file/directory.
- the effective group ID or one of the supplementary group ID's of the
process is equal to the group ID of the file/directory.
</description>
</test>
<test name="fchmod03">
<description>
Verify that, fchmod(2) will succeed to change the mode of a file
and set the sticky bit on it if invoked by non-root (uid != 0)
process with the following constraints,
- the process is the owner of the file.
- the effective group ID or one of the supplementary group ID's of the
process is equal to the group ID of the file.
</description>
</test>
<test name="fchmod04">
<description>
Verify that, fchmod(2) will succeed to change the mode of a directory
and set the sticky bit on it if invoked by non-root (uid != 0) process
with the following constraints,
- the process is the owner of the directory.
- the effective group ID or one of the supplementary group ID's of the
process is equal to the group ID of the directory.
</description>
</test>
<test name="fchmod05">
<description>
Verify that, fchmod(2) will succeed to change the mode of a directory
but fails to set the setgid bit on it if invoked by non-root (uid != 0)
process with the following constraints,
- the process is the owner of the directory.
- the effective group ID or one of the supplementary group ID's of the
process is not equal to the group ID of the directory.
</description>
</test>
<test name="fchmod06">
<description>
Verify that,
1) fchmod(2) returns -1 and sets errno to EPERM if the effective user id
of process does not match the owner of the file and the process is
not super user.
2) fchmod(2) returns -1 and sets errno to EBADF if the file descriptor
of the specified file is not valid.
</description>
</test>
<test name="fchmod07">
<description>
Verify that, fchmod(2) succeeds when used to change the mode permissions
of a file specified by file descriptor.
</description>
</test>
<test name="fchown01">
<description>
Basic test for fchown(2).
</description>
</test>
<test name="fchown02">
<description>
Verify that, when fchown(2) invoked by super-user to change the owner and
group of a file specified by file descriptor to any numeric
owner(uid)/group(gid) values,
- clears setuid and setgid bits set on an executable file.
- preserves setgid bit set on a non-group-executable file.
</description>
</test>
<test name="fchown03">
<description>
Verify that, fchown(2) succeeds to change the group of a file specified
by path when called by non-root user with the following constraints,
- euid of the process is equal to the owner of the file.
- the intended gid is either egid, or one of the supplementary gids
of the process.
Also, verify that fchown() clears the setuid/setgid bits set on the file.
</description>
</test>
<test name="fchown04">
<description>
Verify that,
1) fchown(2) returns -1 and sets errno to EPERM if the effective user id
of process does not match the owner of the file and the process is
not super user.
2) fchown(2) returns -1 and sets errno to EBADF if the file descriptor
of the specified file is not valid.
</description>
</test>
<test name="fchown05">
<description>
Verify that, fchown(2) succeeds to change the owner and group of a file
specified by file descriptor to any numeric owner(uid)/group(gid) values
when invoked by super-user.
</description>
</test>
<test name="lchown01">
<description>
Verify that, lchown(2) succeeds to change the owner and group of a file
specified by path to any numeric owner(uid)/group(gid) values when invoked
by super-user.
</description>
</test>
<test name="lchown02">
<description>
Verify that,
1) lchown(2) returns -1 and sets errno to EPERM if the effective user id
of process does not match the owner of the file and the process is
not super user.
2) lchown(2) returns -1 and sets errno to EACCES if search permission is
denied on a component of the path prefix.
3) lchown(2) returns -1 and sets errno to EFAULT if pathname points
outside user's accessible address space.
4) lchown(2) returns -1 and sets errno to ENAMETOOLONG if the pathname
component is too long.
5) lchown(2) returns -1 and sets errno to ENOTDIR if the directory
component in pathname is not a directory.
6) lchown(2) returns -1 and sets errno to ENOENT if the specified file
does not exists.
</description>
</test>
<test name="creat01">
<description>
Testcase to check the basic functionality of the creat(2) system call.
</description>
</test>
<test name="creat03">
<description>
Testcase to check whether the sticky bit cleared.
</description>
</test>
<test name="creat04">
<description>
Testcase to check creat(2) fails with EACCES
</description>
</test>
<test name="creat05">
<description>
Testcase to check that creat(2) system call returns EMFILE.
</description>
</test>
<test name="creat06">
<description>
Testcase to check creat(2) sets the following errnos correctly:
1. EISDIR
2. ENAMETOOLONG
3. ENOENT
4. ENOTDIR
5. EFAULT
6. EACCES
</description>
</test>
<test name="creat07">
<description>
Testcase to check creat(2) sets the following errnos correctly:
1. ETXTBSY
</description>
</test>
<test name="creat09">
<description>
Basic test for creat(2) using 0700 argument.
</description>
</test>
<test name="truncate01">
<description>
Verify that, truncate(2) succeeds to truncate a file to a specified
length.
</description>
</test>
<test name="truncate02">
<description>
Verify that, truncate(2) succeeds to truncate a file to a certain length,
but the attempt to read past the truncated length will fail.
</description>
</test>
<test name="truncate03">
<description>
Verify that,
1) truncate(2) returns -1 and sets errno to EACCES if search/write
permission denied for the process on the component of the path prefix
or named file.
2) truncate(2) returns -1 and sets errno to ENOTDIR if the component of
the path prefix is not a directory.
3) truncate(2) returns -1 and sets errno to EFAULT if pathname points
outside user's accessible address space.
4) truncate(2) returns -1 and sets errno to ENAMETOOLONG if the component
of a pathname exceeded 255 characters or entire pathname exceeds 1023
characters.
5) truncate(2) returns -1 and sets errno to ENOENT if the named file
does not exist.
</description>
</test>
<test name="ftruncate01">
<description>
Verify that, ftruncate(2) succeeds to truncate a file to a specified
length if the file indicated by file descriptor opened for writing.
</description>
</test>
<test name="ftruncate02">
<description>
Verify that, ftruncate(2) succeeds to truncate a file to a certain length,
but the attempt to read past the truncated length will fail.
</description>
</test>
<test name="ftruncate03">
<description>
Verify that,
1) ftruncate(2) returns -1 and sets errno to EINVAL if the specified
truncate length is less than 0.
2) ftruncate(2) returns -1 and sets errno to EBADF if the file descriptor
of the specified file is not valid.
</description>
</test>
<test name="vhangup01">
<description>
Check the return value, and errno of vhangup(2)
when a non-root user calls vhangup().
</description>
</test>
<test name="vhangup02">
<description>
To test the basic functionality of vhangup(2)
</description>
</test>
<test name="growfiles">
This program will grow a list of files.
Each file will grow by grow_incr before the same
file grows twice. Each file is open and closed before next file is opened.
</description>
</test>
<test name="pipe01">
<description>
Testcase to check the basic functionality of the pipe(2) syscall:
Check that both ends of the pipe (both file descriptors) are
available to a process opening the pipe.
</description>
</test>
<test name="pipe05">
<description>
Check what happens when pipe is passed a bad file descriptor.
</description>
</test>
<test name="pipe06">
<description>
Check what happens when the system runs out of pipes.
</description>
</test>
<test name="pipe08">
<description>
Check that a SIGPIPE signal is generated when a write is
attempted on an empty pipe.
</description>
</test>
<test name="pipe09">
<description>
Check that two processes can use the same pipe at the same time.
</description>
</test>
<test name="pipe10">
<description>
Check that parent can open a pipe and have a child read from it
</description>
</test>
<test name="pipe11">
<description>
Check if many children can read what is written to a pipe by the
parent.
</description>
</test>
<test name="pipeio">
<description>
This tool can be used to beat on system or named pipes.
See the help() function below for user information.
/ipc_stress/message_queue_test_01.c
/ipc_stress/pipe_test_01.c
/ipc_stress/semaphore_test_01.c
/ipc_stress/single_test_01.c
</description>
</test>
<test name="proc01">
<description>
Recursively reads all files within /proc filesystem.
</description>
</test>
<test name="lftest">
<description>
The purpose of this test is to verify the file size limitations of a filesystem.
It writes one buffer at a time and lseeks from the beginning of the file to the
end of the last write position. The intent is to test lseek64.
</description>
</test>
<test name="llseek01">
<description>
Verify that, llseek() call succeeds to set the file pointer position
to an offset larger than file size. Also, verify that any attempt
to write to this location fails.
</description>
</test>
<test name="llseek02">
<description>
Verify that,
1. llseek() returns -1 and sets errno to EINVAL, if the 'Whence' argument
is not a proper value.
2. llseek() returns -1 and sets errno to EBADF, if the file handle of
the specified file is not valid.
</description>
</test>
<test name="lseek01">
<description>
Basic test for lseek(2)
</description>
</test>
<test name="lseek02">
<description>
Negative test for lseek(2)
</description>
</test>
<test name="lseek03">
<description>
Negative test for lseek(2) whence
</description>
</test>
<test name="lseek04">
<description>
Negative test for lseek(2) of a fifo
</description>
</test>
<test name="lseek05">
<description>
Negative test for lseek(2) of a pipe
</description>
</test>
<test name="lseek06">
<description>
Verify that, lseek() call succeeds to set the file pointer position
to less than or equal to the file size, when a file is opened for
read or write.
</description>
</test>
<test name="lseek07">
<description>
Verify that, lseek() call succeeds to set the file pointer position
to more than the file size, when a file is opened for reading/writing.
</description>
</test>
<test name="lseek08">
<description>
Verify that, lseek() call succeeds to set the file pointer position
to the end of the file when 'whence' value set to SEEK_END and any
attempts to read from that position should fail.
</description>
</test>
<test name="lseek09">
<description>
Verify that, lseek() call succeeds to set the file pointer position
to the current specified location, when 'whence' value is set to
SEEK_CUR and the data read from the specified location should match
the expected data.
</description>
</test>
<test name="lseek10">
<description>
Verify that,
1. lseek() returns -1 and sets errno to ESPIPE, if the file handle of
the specified file is associated with a pipe, socket, or FIFO.
2. lseek() returns -1 and sets errno to EINVAL, if the 'Whence' argument
is not a proper value.
3. lseek() returns -1 and sets errno to EBADF, if the file handle of
the specified file is not valid.
</description>
</test>
<test name="rwtest">
<description>
A wrapper for doio and iogen.
</description>
</test>
<test name="doio">
<description>
a general purpose io initiator with system call and
write logging. See doio.h for the structure which defines
what doio requests should look like.
Currently doio can handle read,write,reada,writea,ssread,
sswrite, and many varieties of listio requests.
For disk io, if the O_SSD flag is set doio will allocate
the appropriate amount of ssd and do the transfer - thus, doio
can handle all of the primitive types of file io.
</description>
</test>
<test name="iogen">
<description>
A tool for generating file/sds io for a doio process
</description>
</test>
<test name="pread01">
<description>
Verify the functionality of pread() by writing known data using pwrite()
to the file at various specified offsets and later read from the file from
various specified offsets, comparing the data read against the data
written.
</description>
</test>
<test name="pread02">
<description>
Verify that,
1) pread() fails when attempted to read from an unnamed pipe.
2) pread() fails if the specified offset position was invalid.
</description>
</test>
<test name="pwrite01">
<description>
Verify the functionality of pwrite() by writing known data using pwrite()
to the file at various specified offsets and later read from the file from
various specified offsets, comparing the data written against the data
read using read().
</description>
</test>
<test name="pwrite02">
<description>
Verify that,
1) pwrite() fails when attempted to write to an unnamed pipe.
2) pwrite() fails if the specified offset position was invalid.
</description>
</test>
<test name="read01">
<description>
Basic test for the read(2) system call
</description>
</test>
<test name="read02">
<description>
test 1: Does read return -1 if file descriptor is not valid, check for EBADF
test 2: Check if read sets EISDIR, if the fd refers to a directory
test 3: Check if read sets EFAULT, if buf is -1.
</description>
</test>
<test name="read03">
<description>
Testcase to check that read() sets errno to EAGAIN
</description>
</test>
<test name="read04">
<description>
Testcase to check if read returns the number of bytes read correctly.
</description>
</test>
<test name="readv01">
<description>
Testcase to check the basic functionality of the readv(2) system call.
</description>
</test>
<test name="readv02">
<description>
Testcase to check the error conditions of the readv(2) system call.
</description>
</test>
<test name="write01">
<description>
Basic test for write(2) system call.
</description>
</test>
<test name="write02">
<description>
Basic functionality test: does the return from write match the count
of the number of bytes written.
</description>
</test>
<test name="write03">
<description>
Testcase to check that write(2) doesn't corrupt a file when it fails
</description>
</test>
<test name="write04">
<description>
Testcase to check that write() sets errno to EAGAIN
</description>
</test>
<test name="write05">
<description>
Check the return value, and errnos of write(2)
- when the file descriptor is invalid - EBADF
- when the buf parameter is invalid - EFAULT
- on an attempt to write to a pipe that is not open for reading - EPIPE
</description>
</test>
<test name="writev01">
<description>
Testcase to check the basic functionality of writev(2) system call.
</description>
</test>
<test name="writev02">
<description>
In these testcases, writev() is called with partially valid data
to be written in a sparse file.
</description>
</test>
<test name="writev03">
<description>
The testcases are written calling writev() with partially valid data
to overwrite the contents, to write in the beginning and to write in
the end of the file.
</description>
</test>
<test name="writev04">
<description>
The testcases are written calling writev() with partially valid data
to overwrite the contents, to write in the beginning and to write in
the end of the file. This is same as writev03, but the length of
buffer used here is 8192 bytes.
</description>
</test>
<test name="writev05">
<description>
These testcases are written to test writev() on sparse files. This
is same as writev02. But the initial write() with valid data is
done at the beginning of the file.
</description>
</test>
<test name="disktest">
<description>
Does repeated accesses to a filespec and optionally writes to, reads from,
and verifies the data. By default, disktest makes assumptions about
the running environment which allows for a quick start of IO generation.
However, Disktest has a large number of command line options which can
be used to adapt the test for a variety of uses including data integrity,
medium integrity, performance, and simple application simulation.
</description>
</test>
<test name="getdents01">
<description>
get a directory entry
</description>
</test>
<test name="getdents02">
<description>
check that we get a failure with a bad file descriptor
</description>
</test>
<test name="getdents03">
<description>
check for an EINVAL error
</description>
</test>
<test name="getdents04">
<description>
check for an ENOTDIR error
</description>
</test>
<test name="getdents05">
<description>
check that we get a failure with a bad dirp address.
</description>
</test>
<test name="process_stress">
<description>
Spawn creates a tree
of processes with Dval depth and Bval breadth. Each parent will spawn
Bval children. Each child will store information about themselves
in shared memory. The leaf nodes will communicate the existence
of one another through message queues, once each leaf node has
received communication from all of her siblings she will reduce
the semaphore count and exit. Meanwhile all parents are waiting
to hear from their children through the use of semaphores. When
the semaphore count reaches zero then the parent knows all the
children have talked to one another. Locking of the connter semaphore
is provided by the use of another (binary) semaphore.
</description>
</test>
<test name="sched_stress">
<description>
Exports required environment variables and runs sched_driver
</description>
</test>
<test name="sched_driver">
<description>
This program uses system calls to change the
priorities of the throughput measurement testcases.
When real-time is in effect, priorities 50 through 64
are used. (MAX_PRI and MIN_PRI) When user-time
(normal) is in effect, 0-14 (corresponding to nice()
calls) is used. The driver only keeps track of
values from 50 to 64, and the testcases will scale
them down to 0 to 14 when needed, to change the
priority of a user-time process.
</description>
</test>
<test name="time-schedule">
<description>
This programme will determine the context switch
(scheduling) overhead on a system. It takes into
account SMP machines. True context switches are
measured.
</description>
</test>
<test name="trace_sched">
<description>
This utility spawns N tasks, each task sets its priority
by making a system call to the scheduler. The thread
function reads the priority that the scheduler sets for
this task and also reads from /proc the processor this
task last executed on the information that is gathered
by the thread function may be in real-time. Its only an
approximation.
</description>
</test>
<test name="sched_getscheduler01">
<description>
Testcase to check sched_getscheduler() returns correct return value
</description>
</test>
<test name="sched_getscheduler02">
<description>
To check for the errno ESRCH
</description>
</test>
<test name="sched_setscheduler01">
<description>
Testcase to test whether sched_setscheduler(2) sets the errnos
correctly.
</description>
</test>
<test name="sched_setscheduler02">
<description>
Testcase to test whether sched_setscheduler(2) sets the errnos
correctly.
</description>
</test>
<test name="sched_yield01">
<description>
Testcase to check that sched_yield returns correct values.
</description>
</test>
<test name="nice01">
<description>
Verify that root can provide a negative value to nice()
and hence root can decrease the nice value of the process
using nice() system call
</description>
</test>
<test name="nice02">
<description>
Verify that any user can successfully increase the nice value of
the process by passing a higher increment value (> max. applicable limits)
to nice() system call.
</description>
</test>
<test name="nice03">
<description>
Verify that any user can successfully increase the nice value of
the process by passing an increment value (< max. applicable limits) to
nice() system call.
</description>
</test>
<test name="nice04">
<description>
Verify that, nice(2) fails when, a non-root user attempts to increase
the priority of a process by specifying a negative increment value.
</description>
</test>
<test name="nice05">
<description>
Basic test for nice(2)
</description>
</test>
<test name="poll01">
<description>
Verify that valid open file descriptor must be provided to poll() to
succeed.
</description>
</test>
<test name="select01">
<description>
Basic test for the select(2) system call to a fd of regular file with no I/O
and small timeout
</description>
</test>
<test name="select02">
<description>
Basic test for the select(2) system call to fd of system pipe with no I/O
and small timeout
</description>
</test>
<test name="select03">
<description>
Basic test for the select(2) system call to fd of a named-pipe (FIFO)
</description>
</test>
<test name="select04">
<description>
Verify that select(2) returns immediately (does not block) if the
timeout value is zero.
</description>
</test>
<test name="select05">
<description>
Verify that select(2) fails when one or more of the file descriptor sets
specify a file descriptor which is not valid.
</description>
</test>
<test name="select06">
<description>
Verify that select(2) fails when a signal is delivered before any of the
selected events occur and before the timeout interval expires.
</description>
</test>
<test name="select07">
<description>
Verify that select(2) fails when an invalid timeout interval is specified.
</description>
</test>
<test name="select08">
<description>
Verify the functionality of select(2) by passing non-null writefds
which points to a regular file, pipes or FIFO's.
</description>
</test>
<test name="select09">
<description>
Verify the functionality of select(2) by passing non-null readfds
which points to a regular file, pipes or FIFO's.
</description>
</test>
<test name="select10">
<description>
Verify that a successful call to select() shall return the desired
number of modified descriptors for which bits are set in the bit masks,
where descriptors points to a regular file, pipes or FIFO's.
</description>
</test>
<test name="sem01">
<description>
Creates a semaphore and two processes. The processes
each go through a loop where they semdown, delay for a
random amount of time, and semup, so they will almost
always be fighting for control of the semaphore.
</description>
</test>
<test name="sem02">
<description>
The application creates several threads using pthread_create().
One thread performs a semop() with the SEM_UNDO flag set. The
change in semaphore value performed by that semop should be
"undone" only when the last pthread exits.
</description>
</test>
<test name="semctl01">
<description>
test the 10 possible semctl() commands
</description>
</test>
<test name="semctl02">
<description>
test for EACCES error
</description>
</test>
<test name="semctl03">
<description>
test for EINVAL and EFAULT errors
</description>
</test>
<test name="semctl04">
<description>
test for EPERM error
</description>
</test>
<test name="semctl05">
<description>
test for ERANGE error
</description>
</test>
<test name="semget01">
<description>
test that semget() correctly creates a semaphore set
</description>
</test>
<test name="semget02">
<description>
test for EACCES and EEXIST errors
</description>
</test>
<test name="semget03">
<description>
test for ENOENT error
</description>
</test>
<test name="semget05">
<description>
test for ENOSPC error
</description>
</test>
<test name="semget06">
<description>
test for EINVAL error
</description>
</test>
<test name="semop01">
<description>
test that semop() basic functionality is correct
</description>
</test>
<test name="semop02">
<description>
test for E2BIG, EACCES, EFAULT and EINVAL errors
</description>
</test>
<test name="semop03">
<description>
test for EFBIG error
<test name="semop04">
<description>
test for EAGAIN error
</description>
</test>
<testi name="semop05">
<description>
test for EINTR and EIDRM errors
</description>
</test>
<test name="shmat01">
<description>
test that shmat() works correctly
</description>
</test>
<test name="shmat02">
<description>
check for EINVAL and EACCES errors
</description>
</test>
<test name="shmat03">
<description>
test for EACCES error
</description>
</test>
<test name="shmctl01">
<description>
test the IPC_STAT, IPC_SET and IPC_RMID commands as
they are used with shmctl()
</description>
</test>
<test name="shmctl02">
<description>
check for EACCES, EFAULT and EINVAL errors
</description>
</test>
<test name="shmctl03">
<description>
check for EACCES, and EPERM errors
</description>
</test>
<test name="shmdt01">
<description>
check that shared memory is detached correctly
</description>
</test>
<test name="shmdt02">
<description>
check for EINVAL error
</description>
</test>
<test name="shmget01">
<description>
test that shmget() correctly creates a shared memory segment
</description>
</test>
<test name="shmget02">
<description>
check for ENOENT, EEXIST and EINVAL errors
</description>
</test>
<test name="shmget03">
<description>
test for ENOSPC error
</description>
</test>
<test name="shmget04">
<description>
test for EACCES error
</description>
</test>
<test name="shmget05">
<description>
test for EACCES error
</description>
</test>
<test name="shmat1">
<description>
Test the LINUX memory manager. The program is aimed at
stressing the memory manager by repeated shmat/write/read/
shmatd of file/memory of random size (maximum 1000 * 4096)
done by multiple processes.
</description>
</test>
<test name="shm_test">
<description>
This program is designed to stress the Memory management sub -
system of Linux. This program will spawn multiple pairs of
reader and writer threads. One thread will create the shared
segment of random size and write to this memory, the other
pair will read from this memory.
</description>
</test>
<test name="sigaction01">
<description>
Test some features of sigaction (see below for more details)
</description>
</test>
<test name="sigaction02">
<description>
Testcase to check the basic errnos set by the sigaction(2) syscall.
</description>
</test>
<test name="sigaltstack01">
<description>
Send a signal using the main stack. While executing the signal handler
compare a variable's address lying on the main stack with the stack
boundaries returned by sigaltstack().
</description>
</test>
<test name="sigaltstack02">
<description>
Verify that,
1. sigaltstack() fails and sets errno to EINVAL when "ss_flags" field
pointed to by 'ss' contains invalid flags.
2. sigaltstack() fails and sets errno to ENOMEM when the size of alternate
stack area is less than MINSIGSTKSZ.
</description>
</test>
<test name="sighold02">
<description>
Basic test for the sighold02(2) system call.
</description>
</test>
<test name="signal01">
<description>
set the signal handler to our own function
</description>
</test>
<test name="signal02">
<description>
Test that we get an error using illegal signals
</description>
</test>
<test name="signal03">
<description>
Boundary value and other invalid value checking of signal setup and signal
sending.
</description>
</test>
<test name="signal04">
<description>
restore signals to default behavior
</description>
</test>
<test name="signal05">
<description>
set signals to be ignored
</description>
</test>
<test name="sigprocmask01">
<description>
Verify that sigprocmask() succeeds to examine and change the calling
process's signal mask.
Also, verify that sigpending() succeeds to store signal mask that are
blocked from delivery and pending for the calling process.
</description>
</test>
<test name="sigrelse01">
<description>
Basic test for the sigrelse(2) system call.
</description>
</test>
<test name="sigsuspend01">
<description>
Verify that sigsuspend() succeeds to change process's current signal
mask with the specified signal mask and suspends the process execution
until the delivery of a signal.
</description>
</test>
<test name="kill01">
<description>
Test case to check the basic functionality of kill().
</description>
</test>
<test name="kill02">
<description>
Sending a signal to processes with the same process group ID
</description>
</test>
<test name="kill03">
<description>
Test case to check that kill fails when given an invalid signal.
</description>
</test>
<test name="kill04">
<description>
Test case to check that kill() fails when passed a non-existent pid.
</description>
</test>
<test name="kill05">
<description>
Test case to check that kill() fails when passed a pid owned by another
user.
</description>
</test>
<test name="kill06">
<description>
Test case to check the basic functionality of kill() when killing an
entire process group with a negative pid.
</description>
</test>
<test name="kill07">
<description>
Test case to check that SIGKILL can not be caught.
</description>
</test>
<test name="kill08">
<description>
Test case to check the basic functionality of kill() when kill an
entire process group.
</description>
</test>
<test name="kill09">
<description>
Basic test for kill(2)
</description>
</test>
<test name="kill10">
<description>
Signal flooding test.
</description>
</test>
<test name="mtest01">
<description>
mallocs memory <chunksize> at a time until malloc fails.
</description>
</test>
<test name="mallocstress">
<description>
This program is designed to stress the VMM by doing repeated */
mallocs and frees, with out using the swap space. This is */
achieved by spawning N threads with repeatedly malloc and free*/
a memory of size M. The stress can be increased by increasing */
the number of repetitions over the default number using the */
-l [num] option.
</description>
</test>
<test name="clisrv">
<description>
Sender: Read contents of data file. Write each line to socket, then
read line back from socket and write to standard output.
Receiver: Read a stream socket one line at a time and write each line
back to the sender.
Usage: pthcli [port number]
</description>
</test>
<test name="socket01">
<description>
Verify that socket() returns the proper errno for various failure cases
</description>
</test>
<test name="socketpair01">
<description>
Verify that socketpair() returns the proper errno for various failure cases
</description>
</test>
<test name="sockioctl01">
<description>
Verify that ioctl() on sockets returns the proper errno for various
failure cases
</description>
</test>
<test name="connect01">
<description>
Verify that connect() returns the proper errno for various failure cases
</description>
</test>
<test name="getpeername01">
<description>
Verify that getpeername() returns the proper errno for various failure cases
</description>
</test>
<test name="getsockname01">
<description>
Verify that getsockname() returns the proper errno for various failure cases
</description>
</test>
<test name="getsockopt01">
<description>
Verify that getsockopt() returns the proper errno for various failure cases
</description>
</test>
<test name="listen01">
<description>
Verify that listen() returns the proper errno for various failure cases
</description>
</test>
<test name="accept01">
<description>
Verify that accept() returns the proper errno for various failure cases
</description>
</test>
<test name="bind01">
<description>
Verify that bind() returns the proper errno for various failure cases
</description>
</test>
<test name="recv01">
<description>
Verify that recv() returns the proper errno for various failure cases
</description>
</test>
<test name="recvfrom01">
<description>
Verify that recvfrom() returns the proper errno for various failure cases
</description>
</test>
<test name="recvmsg01">
<description>
Verify that recvmsg() returns the proper errno for various failure cases
</description>
</test>
<test name="send01">
<description>
Verify that send() returns the proper errno for various failure cases
</description>
</test>
<test name="sendmsg01">
<description>
Verify that sendmsg() returns the proper errno for various failure cases
</description>
</test>
<test name="sendto01">
<description>
Verify that sendto() returns the proper errno for various failure cases
</description>
</test>
<test name="setsockopt01">
<description>
Verify that setsockopt() returns the proper errno for various failure cases
</description>
</test>
<test name="fstat01">
<description>
Basic test for fstat(2)
</description>
</test>
<test name="fstat02">
<description>
Verify that, fstat(2) succeeds to get the status of a file and fills
the stat structure elements though file pointed to by file descriptor
not opened for reading.
</description>
</test>
<test name="fstat03">
<description>
Verify that, fstat(2) returns -1 and sets errno to EBADF if the file
pointed to by file descriptor is not valid.
</description>
</test>
<test name="fstat04">
<description>
Verify that, fstat(2) succeeds to get the status of a file pointed by
file descriptor and fills the stat structure elements.
</description>
</test>
<test name="fstatfs01">
<description>
Basic test for fstatfs(2)
</description>
</test>
<test name="fstatfs02">
<description>
Testcase to check fstatfs() sets errno correctly.
</description>
</test>
<test name="lstat01">
<description>
Verify that, lstat(2) succeeds to get the status of a file pointed to by
symlink and fills the stat structure elements.
</description>
</test>
<test name="lstat02">
<description>
Basic test for lstat(2)
</description>
</test>
<test name="lstat03">
<description>
Verify that,
1) lstat(2) returns -1 and sets errno to EACCES if search permission is
denied on a component of the path prefix.
2) lstat(2) returns -1 and sets errno to ENOENT if the specified file
does not exists or empty string.
3) lstat(2) returns -1 and sets errno to EFAULT if pathname points
outside user's accessible address space.
4) lstat(2) returns -1 and sets errno to ENAMETOOLONG if the pathname
component is too long.
5) lstat(2) returns -1 and sets errno to ENOTDIR if the directory
component in pathname is not a directory.
</description>
</test>
<test name="stat01">
<description>
Verify that, stat(2) succeeds to get the status of a file and fills the
stat structure elements.
</description>
</test>
<test name="stat02">
<description>
Verify that, stat(2) succeeds to get the status of a file and fills the
stat structure elements though process doesn't have read access to the
file.
</description>
</test>
<test name="stat03">
<description>
Verify that,
1) stat(2) returns -1 and sets errno to EACCES if search permission is
denied on a component of the path prefix.
2) stat(2) returns -1 and sets errno to ENOENT if the specified file
does not exists or empty string.
3) stat(2) returns -1 and sets errno to EFAULT if pathname points
outside user's accessible address space.
4) stat(2) returns -1 and sets errno to ENAMETOOLONG if the pathname
component is too long.
5) stat(2) returns -1 and sets errno to ENOTDIR if the directory
component in pathname is not a directory.
</description>
</test>
<test name="stat05">
<description>
Basic test for the stat05(2) system call.
</description>
</test>
<test name="statfs01">
<description>
Basic test for the statfs(2) system call.
</description>
</test>
<test name="statfs02">
<description>
Testcase to check that statfs(2) sets errno correctly.
</description>
</test>
<test name="read01">
<description>
Basic test for the read(2) system call
</description>
</test>
<test name="read02">
<description>
test 1: Does read return -1 if file descriptor is not valid, check for EBADF
test 2: Check if read sets EISDIR, if the fd refers to a directory
test 3: Check if read sets EFAULT, if buf is -1.
</description>
</test>
<test name="read03">
<description>
Testcase to check that read() sets errno to EAGAIN
</description>
</test>
<test name="read04">
<description>
Testcase to check if read returns the number of bytes read correctly.
</description>
</test>
<test name="umask01">
<description>
Basic test for the umask(2) system call.
</description>
</test>
<test name="umask02">
<description>
Check that umask changes the mask, and that the previous
value of the mask is returned correctly for each value.
</description>
</test>
<test name="umask03">
<description>
Check that umask changes the mask, and that the previous
value of the mask is returned correctly for each value.
</description>
</test>
<test name="getgroups01">
<description>
Getgroups system call critical test
</description>
</test>
<test name="getgroups02">
<description>
Basic test for getgroups(2)
</description>
</test>
<test name="getgroups03">
<description>
Verify that, getgroups() system call gets the supplementary group IDs
of the calling process.
</description>
</test>
<test name="getgroups04">
<description>
Verify that,
getgroups() fails with -1 and sets errno to EINVAL if the size
argument value is -ve.
</description>
</test>
<test name="gethostname01">
<description>
Basic test for gethostname(2)
</description>
</test>
<test name="getpgid01">
<description>
Testcase to check the basic functionality of getpgid().
</description>
</test>
<test name="getpgid02">
<description>
Testcase to check the basic functionality of getpgid().
</description>
</test>
<test name="getpgrp01">
<description>
Basic test for getpgrp(2)
</description>
</test>
<test name="getpriority01">
<description>
Verify that getpriority() succeeds get the scheduling priority of
the current process, process group or user.
</description>
</test>
<test name="getpriority02">
<description>
Verify that,
1) getpriority() sets errno to ESRCH if no process was located
was located for 'which' and 'who' arguments.
2) getpriority() sets errno to EINVAL if 'which' argument was
not one of PRIO_PROCESS, PRIO_PGRP, or PRIO_USER.
</description>
</test>
<test name="getresgid01">
<description>
Verify that getresgid() will be successful to get the real, effective
and saved user id of the calling process.
</description>
</test>
<test name="getresgid02">
<description>
Verify that getresgid() will be successful to get the real, effective
and saved user ids after calling process invokes setregid() to change
the effective/saved gids to that of specified user.
</description>
</test>
<test name="getresgid03">
<description>
Verify that getresgid() will be successful to get the real, effective
and saved user ids after calling process invokes setresgid() to change
the effective gid to that of specified user.
</description>
</test>
<test name="getresuid01">
<description>
Verify that getresuid() will be successful to get the real, effective
and saved user id of the calling process.
</desciption>
</test>
<test name="getresuid02">
<description>
Verify that getresuid() will be successful to get the real, effective
and saved user ids after calling process invokes setreuid() to change
the effective/saved uids to that of specified user.
</description>
</test>
<test name="getresuid03">
<description>
Verify that getresuid() will be successful to get the real, effective
and saved user ids after calling process invokes setresuid() to change
the effective uid to that of specified user.
</description>
</test>
<test name="getsid01">
<description>
call getsid() and make sure it succeeds
</description>
</test>
<test name="getsid02">
<description>
call getsid() with an invalid PID to produce a failure
</description>
</test>
<test name="setfsgid01">
<description>
Testcase to check the basic functionality of setfsgid(2) system
call.
</description>
</test>
<test name="setfsuid01">
<description>
Testcase to test the basic functionality of the setfsuid(2) system
call.
</description>
</test>
<test name="setgid01">
<description>
Basic test for the setgid(2) system call.
</description>
</test>
<test name="setgid02">
<description>
Testcase to ensure that the setgid() system call sets errno to EPERM
</description>
</test>
<test name="setgroups01">
<description>
Basic test for the setgroups(2) system call.
</description>
</test>
<test name="setgroups02">
<description>
Verify that,
1. setgroups() fails with -1 and sets errno to EINVAL if the size
argument value is > NGROUPS
2. setgroups() fails with -1 and sets errno to EPERM if the
calling process is not super-user.
</description>
</test>
<test name="setgroups03">
<description>
Verify that, only root process can invoke setgroups() system call to
set the supplementary group IDs of the process.
</description>
</test>
<test name="setpgid01">
<description>
Basic test for setpgid(2) system call.
</description>
</test>
<test name="setpgid02">
<description>
Testcase to check that setpgid() sets errno correctly.
</description>
</test>
<test name="setpgid03">
<description>
Test to check the error and trivial conditions in setpgid system call
</description>
</test>
<test name="setpriority01">
<description>
set the priority for the test process lower.
</description>
</test>
<test name="setpriority02">
<description>
test for an expected failure by trying to raise
the priority for the test process while not having
permissions to do so.
</description>
</test>
<test name="setpriority03">
<description>
test for an expected failure by using an invalid
PRIO value
setpriority04
</description>
</test>
<test name="setpriority04">
<description>
test for an expected failure by using an invalid
process id
</description>
</test>
<test name="setpriority05">
<description>
test for an expected failure by trying to change
a process with an ID that is different from the
test process
</description>
</test>
<test name="setregid01">
<description>
Basic test for the setregid(2) system call.
</description>
</test>
<test name="setregid02">
<description>
Test that setregid() fails and sets the proper errno values when a
non-root user attempts to change the real or effective group id to a
value other than the current gid or the current effective gid.
</description>
</test>
<test name="setregid03">
<description>
Test setregid() when executed by a non-root user.
</description>
</test>
<test name="setregid04">
<description>
Test setregid() when executed by root.
</description>
</test>
<test name="setresuid01">
<description>
Test setresuid() when executed by root.
</description>
</test>
<test name="setresuid02">
<description>
Test that a non-root user can change the real, effective and saved
uid values through the setresuid system call.
</description>
</test>
<test name="setresuid03">
<description>
Test that the setresuid system call sets the proper errno
values when a non-root user attempts to change the real, effective or
saved uid to a value other than one of the current uid, the current
effective uid of the current saved uid. Also verify that setresuid
fails if an invalid uid value is given.
</description>
</test>
<test name="setreuid01">
<description>
Basic test for the setreuid(2) system call.
</description>
</test>
<test name="setreuid02">
<description>
Test setreuid() when executed by root.
</description>
</test>
<test name="setreuid03">
<description>
Test setreuid() when executed by an unprivileged user.
</description>
</test>
<test name="setreuid04">
<description>
Test that root can change the real and effective uid to an
unprivileged user.
</description>
</test>
<test name="setreuid05">
<description>
Test the setreuid() feature, verifying the role of the saved-set-uid
and setreuid's effect on it.
</description>
</test>
<test name="setreuid06">
<description>
Test that EINVAL is set when setreuid is given an invalid user id.
</description>
</test>
<test name="setrlimit01">
<description>
Testcase to check the basic functionality of the setrlimit system call.
</description>
</test>
<test name="setrlimit02">
<description>
Testcase to test the different errnos set by setrlimit(2) system call.
</description>
</test>
<test name="setrlimit03">
<description>
Test for EPERM when the super-user tries to increase RLIMIT_NOFILE
beyond the system limit.
</description>
</test>
<test name="setsid01">
<description>
Test to check the error and trivial conditions in setsid system call
</description>
</test>
<test name="setuid01">
<description>
Basic test for the setuid(2) system call.
</description>
</test>
<test name="setuid02">
<description>
Basic test for the setuid(2) system call as root.
</description>
</test>
<test name="setuid03">
<description>
Test to check the error and trivial conditions in setuid
</description>
</test>
<test name="fs_perms">
<description>
Regression test for Linux filesystem permissions.
</description>
</test>
<test name="uname01">
<description>
Basic test for the uname(2) system call.
</description>
</test>
<test name="uname02">
<description>
Call uname() with an invalid address to produce a failure
</description>
</test>
<test name="uname03">
<description>
Call uname() and make sure it succeeds
</description>
</test>
<test name="sysctl01">
<description>
Testcase for testing the basic functionality of sysctl(2) system call.
This testcase attempts to read the kernel parameters using
sysctl({CTL_KERN, KERN_ }, ...) and compares it with the known
values.
</test>
<test name="sysctl03">
Testcase to check that sysctl(2) sets errno to EPERM correctly.
</description>
</test>
<test name="sysctl04">
<description>
Testcase to check that sysctl(2) sets errno to ENOTDIR
</description>
</test>
<test name="sysctl05">
<description>
Testcase to check that sysctl(2) sets errno to EFAULT
</description>
</test>
<test name="time01">
<description>
Basic test for the time(2) system call.
</description>
</test>
<test name="time02">
<description>
Verify that time(2) returns the value of time in seconds since
the Epoch and stores this value in the memory pointed to by the parameter.
</description>
</test>
<test name="times01">
<description>
Basic test for the times(2) system call.
</description>
</test>
<test name="times02">
<description>
Testcase to test that times() sets errno correctly
</description>
</test>
<test name="times03">
<description>
Testcase to check the basic functionality of the times() system call.
</description>
</test>
<test name="utime01">
<description>
Verify that the system call utime() successfully sets the modification
and access times of a file to the current time, if the times argument
is null, and the user ID of the process is "root".
</description>
</test>
<test name="utime02">
<description>
Verify that the system call utime() successfully sets the modification
and access times of a file to the current time, under the following
constraints,
- The times argument is null.
- The user ID of the process is not "root".
- The file is owned by the user ID of the process.
</description>
</test>
<test name="utime03">
<description>
Verify that the system call utime() successfully sets the modification
and access times of a file to the current time, under the following
constraints,
- The times argument is null.
- The user ID of the process is not "root".
- The file is not owned by the user ID of the process.
- The user ID of the process has write access to the file.
</description>
</test>
<test name="utime04">
<description>
Verify that the system call utime() successfully sets the modification
and access times of a file to the time specified by times argument, if
the times argument is not null, and the user ID of the process is "root".
</description>
</test>
<test name="utime05">
<description>
Verify that the system call utime() successfully sets the modification
and access times of a file to the value specified by the times argument
under the following constraints,
- The times argument is not null,
- The user ID of the process is not "root".
- The file is owned by the user ID of the process.
</description>
</test>
<test name="utime06">
<description>
1. Verify that the system call utime() fails to set the modification
and access times of a file to the current time, under the following
constraints,
- The times argument is null.
- The user ID of the process is not "root".
- The file is not owned by the user ID of the process.
- The user ID of the process does not have write access to the
file.
2. Verify that the system call utime() fails to set the modification
and access times of a file if the specified file doesn't exist.
</description>
</test>
<test name="settimeofday01">
<description>
Testcase to check the basic functionality of settimeofday().
</description>
</test>
<test name="settimeofday02">
<description>
Testcase to check that settimeofday() sets errnos correctly.
</description>
</test>
<test name="stime01">
<description>
Verify that the system call stime() successfully sets the system's idea
of data and time if invoked by "root" user.
</description>
</test>
<test name="stime02">
<description>
Verify that the system call stime() fails to set the system's idea
of data and time if invoked by "non-root" user.
</description>
</test>
<test name="gettimeofday01">
<description>
Testcase to check that gettimeofday(2) sets errno to EFAULT.
</description>
</test>
<test name="alarm01">
<description>
Basic test for alarm(2).
</description>
</test>
<test name="alarm02">
<description>
Boundary Value Test for alarm(2).
</description>
</test>
<test name="alarm03">
<description>
Alarm(2) cleared by a fork.
</description>
</test>
<test name="alarm04">
<description>
Check that when an alarm request is made, the signal SIGALRM is received
even after the process has done an exec().
</description>
</test>
<test name="alarm05">
<description>
Check the functionality of the Alarm system call when the time input
parameter is non zero.
</description>
</test>
<test name="alarm06">
<description>
Check the functionality of the Alarm system call when the time input
parameter is zero.
</description>
</test>
<test name="alarm07">
<description>
Check the functionality of the alarm() when the time input
parameter is non-zero and the process does a fork.
</description>
</test>
<test name="getegid01">
<description>
Basic test for getegid(2)
</description>
</test>
<test name="geteuid01">
<description>
Basic test for geteuid(2)
</description>
</test>
<test name="getgid01">
<description>
Basic test for getgid(2)
</description>
</test>
<test name="getgid02">
<description>
Testcase to check the basic functionality of getgid().
</description>
</test>
<test name="getgid03">
<description>
Testcase to check the basic functionality of getegid().
</description>
</test>
<test name="getpid01">
<description>
Basic test for getpid(2)
</description>
</test>
<test name="getpid02">
<description>
Verify that getpid() system call gets the process ID of the of the
calling process.
</description>
</test>
<test name="getppid01">
<description>
Testcase to check the basic functionality of the getppid() syscall.
</description>
</test>
<test name="getuid01">
<description>
Basic test for getuid(2)
</description>
</test>
<test name="getuid02">
<description>
Testcase to check the basic functionality of the geteuid() system call.
</description>
</test>
<test name="getuid03">
<description>
Testcase to check the basic functionality of the getuid() system call.
</description>
</test>
<test name="nanosleep01">
<description>
Verify that nanosleep() will be successful to suspend the execution
of a process for a specified time.
</description>
</test>
<test name="nanosleep02">
<description>
Verify that nanosleep() will be successful to suspend the execution
of a process, returns after the receipt of a signal and writes the
remaining sleep time into the structure.
</description>
</test>
<test name="nanosleep03">
<description>
Verify that nanosleep() will fail to suspend the execution
of a process for a specified time if interrupted by a non-blocked signal.
</description>
</test>
<test name="nanosleep04">
<description>
Verify that nanosleep() will fail to suspend the execution
of a process if the specified pause time is invalid.
</description>
</test>
|