1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735
|
## DO NOT EDIT! GENERATED AUTOMATICALLY!
## Process this file with automake to produce Makefile.in.
# Copyright (C) 2002-2026 Free Software Foundation, Inc.
#
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This file is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this file. If not, see <https://www.gnu.org/licenses/>.
#
# As a special exception to the GNU General Public License,
# this file may be distributed as part of a program that
# contains a configuration script generated by Autoconf, under
# the same distribution terms as the rest of that program.
#
# Generated by gnulib-tool.
AUTOMAKE_OPTIONS = 1.14 foreign subdir-objects
SUBDIRS = .
TESTS =
XFAIL_TESTS =
TESTS_ENVIRONMENT =
noinst_PROGRAMS =
check_PROGRAMS =
EXTRA_PROGRAMS =
noinst_HEADERS =
noinst_LIBRARIES =
check_LIBRARIES = libtests.a
pkgdata_DATA =
EXTRA_DIST =
BUILT_SOURCES =
SUFFIXES =
MOSTLYCLEANFILES = core *.stackdump
MOSTLYCLEANDIRS =
CLEANFILES =
DISTCLEANFILES =
MAINTAINERCLEANFILES =
AM_CFLAGS += @GL_CFLAG_ALLOW_WARNINGS@ $(GL_CFLAG_GNULIB_WARNINGS)
CFLAGS = @GL_CFLAG_ALLOW_WARNINGS@ $(GL_CFLAG_GNULIB_WARNINGS) @CFLAGS@
AM_CPPFLAGS = \
-D@gltests_WITNESS@=1 \
-I. -I$(srcdir) \
-I.. -I$(srcdir)/.. \
-I../lib -I$(srcdir)/../lib
LDADD = libtests.a ../lib/libcoreutils.a libtests.a ../lib/libcoreutils.a libtests.a $(LIBTESTS_LIBDEPS)
libtests_a_SOURCES =
libtests_a_LIBADD = $(gltests_LIBOBJS)
libtests_a_DEPENDENCIES = $(gltests_LIBOBJS)
EXTRA_libtests_a_SOURCES =
AM_LIBTOOLFLAGS = --preserve-dup-deps
TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' srcdir='$(srcdir)'
IGNORE_SKIPPED_LOGS = 1
## begin gnulib module accept
if GL_COND_OBJ_ACCEPT
libtests_a_SOURCES += accept.c
endif
EXTRA_DIST += w32sock.h
## end gnulib module accept
## begin gnulib module accept-tests
TESTS += test-accept
check_PROGRAMS += test-accept
test_accept_LDADD = $(LDADD) @LIBSOCKET@
EXTRA_DIST += test-accept.c signature.h macros.h
## end gnulib module accept-tests
## begin gnulib module access-tests
TESTS += test-access
check_PROGRAMS += test-access
EXTRA_DIST += test-access.c test-access.h signature.h macros.h
## end gnulib module access-tests
## begin gnulib module acl-tests
TESTS += \
test-set-mode-acl.sh test-set-mode-acl-1.sh test-set-mode-acl-2.sh \
test-copy-acl.sh test-copy-acl-1.sh test-copy-acl-2.sh
TESTS_ENVIRONMENT += USE_ACL=$(USE_ACL)
check_PROGRAMS += test-set-mode-acl test-copy-acl test-sameacls
test_set_mode_acl_LDADD = $(LDADD) $(LIB_ACL) $(LIBUNISTRING) @LIBINTL@ $(MBRTOWC_LIB) $(LIBC32CONV)
test_copy_acl_LDADD = $(LDADD) $(LIB_ACL) $(QCOPY_ACL_LIB) $(LIBUNISTRING) @LIBINTL@ $(MBRTOWC_LIB) $(LIBC32CONV)
test_sameacls_LDADD = $(LDADD) $(LIB_ACL) @LIBINTL@ $(MBRTOWC_LIB)
EXTRA_DIST += test-set-mode-acl.sh test-set-mode-acl-1.sh test-set-mode-acl-2.sh test-copy-acl.sh test-copy-acl-1.sh test-copy-acl-2.sh test-set-mode-acl.c test-copy-acl.c test-sameacls.c macros.h
## end gnulib module acl-tests
## begin gnulib module alignalloc-tests
TESTS += test-alignalloc
check_PROGRAMS += test-alignalloc
EXTRA_DIST += test-alignalloc.c signature.h macros.h
## end gnulib module alignalloc-tests
## begin gnulib module alignasof-tests
TESTS += test-alignasof
check_PROGRAMS += test-alignasof
EXTRA_DIST += test-alignasof.c macros.h
## end gnulib module alignasof-tests
## begin gnulib module alloca-opt-tests
TESTS += test-alloca-opt
check_PROGRAMS += test-alloca-opt
EXTRA_DIST += test-alloca-opt.c
## end gnulib module alloca-opt-tests
## begin gnulib module areadlink-tests
TESTS += test-areadlink
check_PROGRAMS += test-areadlink
EXTRA_DIST += test-areadlink.h test-areadlink.c macros.h
## end gnulib module areadlink-tests
## begin gnulib module areadlink-with-size-tests
TESTS += test-areadlink-with-size
check_PROGRAMS += test-areadlink-with-size
EXTRA_DIST += test-areadlink.h test-areadlink-with-size.c macros.h
## end gnulib module areadlink-with-size-tests
## begin gnulib module areadlinkat-tests
TESTS += test-areadlinkat
check_PROGRAMS += test-areadlinkat
test_areadlinkat_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-areadlink.h test-areadlinkat.c macros.h
## end gnulib module areadlinkat-tests
## begin gnulib module areadlinkat-with-size-tests
TESTS += test-areadlinkat-with-size
check_PROGRAMS += test-areadlinkat-with-size
test_areadlinkat_with_size_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-areadlink.h test-areadlinkat-with-size.c macros.h
## end gnulib module areadlinkat-with-size-tests
## begin gnulib module argmatch-tests
TESTS += test-argmatch
check_PROGRAMS += test-argmatch
test_argmatch_LDADD = $(LDADD) $(LIBUNISTRING) @LIBINTL@ $(MBRTOWC_LIB) $(LIBC32CONV)
EXTRA_DIST += test-argmatch.c macros.h
## end gnulib module argmatch-tests
## begin gnulib module argv-iter-tests
TESTS += test-argv-iter
check_PROGRAMS += test-argv-iter
test_argv_iter_LDADD = $(LDADD) $(GETRANDOM_LIB)
EXTRA_DIST += test-argv-iter.c macros.h
## end gnulib module argv-iter-tests
## begin gnulib module arpa_inet-h-tests
TESTS += test-arpa_inet-h
check_PROGRAMS += test-arpa_inet-h
EXTRA_DIST += test-arpa_inet-h.c
## end gnulib module arpa_inet-h-tests
## begin gnulib module array-mergesort
EXTRA_DIST += array-mergesort.h
## end gnulib module array-mergesort
## begin gnulib module array-mergesort-tests
TESTS += test-array-mergesort
check_PROGRAMS += test-array-mergesort
EXTRA_DIST += test-array-mergesort.c macros.h
## end gnulib module array-mergesort-tests
## begin gnulib module assert-h-tests
TESTS += test-assert
check_PROGRAMS += test-assert
EXTRA_DIST += test-assert.c
## end gnulib module assert-h-tests
## begin gnulib module atoll
if GL_COND_OBJ_ATOLL
libtests_a_SOURCES += atoll.c
endif
## end gnulib module atoll
## begin gnulib module base32-tests
TESTS += test-base32
check_PROGRAMS += test-base32
EXTRA_DIST += test-base32.c macros.h
## end gnulib module base32-tests
## begin gnulib module base64-tests
TESTS += test-base64
check_PROGRAMS += test-base64
EXTRA_DIST += test-base64.c macros.h
## end gnulib module base64-tests
## begin gnulib module binary-io-tests
TESTS += test-binary-io.sh
check_PROGRAMS += test-binary-io
EXTRA_DIST += test-binary-io.sh test-binary-io.c macros.h
## end gnulib module binary-io-tests
## begin gnulib module bind
if GL_COND_OBJ_BIND
libtests_a_SOURCES += bind.c
endif
EXTRA_DIST += w32sock.h
## end gnulib module bind
## begin gnulib module bind-tests
TESTS += test-bind
check_PROGRAMS += test-bind
test_bind_LDADD = $(LDADD) @LIBSOCKET@ $(INET_PTON_LIB)
test_bind_LDFLAGS = $(LDFLAGS) @LIBSOCKET@ $(INET_PTON_LIB)
EXTRA_DIST += test-bind.c signature.h macros.h
## end gnulib module bind-tests
## begin gnulib module bitrotate-tests
TESTS += test-bitrotate
check_PROGRAMS += test-bitrotate
EXTRA_DIST += test-bitrotate.c macros.h
## end gnulib module bitrotate-tests
## begin gnulib module bool-tests
TESTS += test-bool
check_PROGRAMS += test-bool
EXTRA_DIST += test-bool.c
## end gnulib module bool-tests
## begin gnulib module btoc32-tests
TESTS += test-btoc32-1.sh test-btoc32-2.sh test-btoc32-3.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@'
check_PROGRAMS += test-btoc32
test_btoc32_LDADD = $(LDADD) $(LIBUNISTRING) $(SETLOCALE_LIB) $(LIBC32CONV)
EXTRA_DIST += test-btoc32-1.sh test-btoc32-2.sh test-btoc32-3.sh test-btoc32.c signature.h macros.h
## end gnulib module btoc32-tests
## begin gnulib module btowc-tests
TESTS += test-btowc-1.sh test-btowc-2.sh test-btowc-3.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@'
check_PROGRAMS += test-btowc
test_btowc_LDADD = $(LDADD) $(SETLOCALE_LIB)
EXTRA_DIST += test-btowc-1.sh test-btowc-2.sh test-btowc-3.sh test-btowc.c signature.h macros.h
## end gnulib module btowc-tests
## begin gnulib module byteswap-tests
TESTS += test-byteswap
check_PROGRAMS += test-byteswap
EXTRA_DIST += test-byteswap.c macros.h
## end gnulib module byteswap-tests
## begin gnulib module c-ctype-tests
TESTS += test-c-ctype
check_PROGRAMS += test-c-ctype
test_c_ctype_LDADD = $(LDADD) $(SETLOCALE_LIB)
EXTRA_DIST += test-c-ctype.c macros.h
## end gnulib module c-ctype-tests
## begin gnulib module c-strcasecmp-tests
TESTS += test-c-strcasecmp.sh
TESTS_ENVIRONMENT += LOCALE_FR='@LOCALE_FR@' LOCALE_TR_UTF8='@LOCALE_TR_UTF8@'
check_PROGRAMS += test-c-strcasecmp
test_c_strcasecmp_LDADD = $(LDADD) $(SETLOCALE_LIB)
EXTRA_DIST += test-c-strcasecmp.sh test-c-strcasecmp.c macros.h
## end gnulib module c-strcasecmp-tests
## begin gnulib module c-strcasestr
libtests_a_SOURCES += c-strcasestr.h c-strcasestr.c
EXTRA_DIST += str-two-way.h
## end gnulib module c-strcasestr
## begin gnulib module c-strcasestr-tests
TESTS += test-c-strcasestr
check_PROGRAMS += test-c-strcasestr
EXTRA_DIST += test-c-strcasestr.c macros.h
## end gnulib module c-strcasestr-tests
## begin gnulib module c-strncasecmp-tests
TESTS += test-c-strncasecmp.sh
TESTS_ENVIRONMENT += LOCALE_FR='@LOCALE_FR@' LOCALE_TR_UTF8='@LOCALE_TR_UTF8@'
check_PROGRAMS += test-c-strncasecmp
test_c_strncasecmp_LDADD = $(LDADD) $(SETLOCALE_LIB)
EXTRA_DIST += test-c-strncasecmp.sh test-c-strncasecmp.c macros.h
## end gnulib module c-strncasecmp-tests
## begin gnulib module c-strtod-tests
TESTS += test-c-strtod
check_PROGRAMS += test-c-strtod
TESTS += test-c-strtod1.sh test-c-strtod-mt.sh
TESTS_ENVIRONMENT += \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LC_NUMERIC_IMPLEMENTED='@LC_NUMERIC_IMPLEMENTED@'
check_PROGRAMS += test-c-strtod1 test-c-strtod-mt
test_c_strtod1_LDADD = $(LDADD) $(SETLOCALE_LIB)
test_c_strtod_mt_LDADD = $(LDADD) $(SETLOCALE_LIB) $(LIBMULTITHREAD) $(NANOSLEEP_LIB)
EXTRA_DIST += test-c-strtod.c test-strtod.h test-c-strtod1.sh test-c-strtod1.c test-c-strtod-mt.sh test-c-strtod-mt.c minus-zero.h macros.h
## end gnulib module c-strtod-tests
## begin gnulib module c-strtold-tests
TESTS += test-c-strtold
check_PROGRAMS += test-c-strtold
TESTS += test-c-strtold1.sh test-c-strtold-mt.sh
TESTS_ENVIRONMENT += \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LC_NUMERIC_IMPLEMENTED='@LC_NUMERIC_IMPLEMENTED@'
check_PROGRAMS += test-c-strtold1 test-c-strtold-mt
test_c_strtold1_LDADD = $(LDADD) $(SETLOCALE_LIB)
test_c_strtold_mt_LDADD = $(LDADD) $(SETLOCALE_LIB) $(LIBMULTITHREAD) $(NANOSLEEP_LIB)
EXTRA_DIST += test-c-strtold.c test-strtold.h test-c-strtold1.sh test-c-strtold1.c test-c-strtold-mt.sh test-c-strtold-mt.c minus-zero.h macros.h
## end gnulib module c-strtold-tests
## begin gnulib module c32_apply_type_test-tests
TESTS += test-c32_apply_type_test
check_PROGRAMS += test-c32_apply_type_test
test_c32_apply_type_test_LDADD = $(LDADD) $(LIBUNISTRING) $(LIBC32CONV)
EXTRA_DIST += test-c32_apply_type_test.c signature.h macros.h
## end gnulib module c32_apply_type_test-tests
## begin gnulib module c32_get_type_test-tests
TESTS += test-c32_get_type_test
check_PROGRAMS += test-c32_get_type_test
test_c32_get_type_test_LDADD = $(LDADD) $(LIBUNISTRING) $(LIBC32CONV)
EXTRA_DIST += test-c32_get_type_test.c signature.h macros.h
## end gnulib module c32_get_type_test-tests
## begin gnulib module c32isalnum-tests
TESTS += test-c32isalnum.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_JA='@LOCALE_JA@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-c32isalnum
test_c32isalnum_LDADD = $(LDADD) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBUNISTRING) $(LIBC32CONV)
EXTRA_DIST += test-c32isalnum.sh test-c32isalnum.c signature.h macros.h
## end gnulib module c32isalnum-tests
## begin gnulib module c32isalpha-tests
TESTS += test-c32isalpha.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_JA='@LOCALE_JA@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-c32isalpha
test_c32isalpha_LDADD = $(LDADD) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBUNISTRING) $(LIBC32CONV)
EXTRA_DIST += test-c32isalpha.sh test-c32isalpha.c signature.h macros.h
## end gnulib module c32isalpha-tests
## begin gnulib module c32isblank-tests
TESTS += test-c32isblank.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_JA='@LOCALE_JA@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-c32isblank
test_c32isblank_LDADD = $(LDADD) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBUNISTRING) $(LIBC32CONV)
EXTRA_DIST += test-c32isblank.sh test-c32isblank.c signature.h macros.h
## end gnulib module c32isblank-tests
## begin gnulib module c32iscntrl-tests
TESTS += test-c32iscntrl.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_JA='@LOCALE_JA@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-c32iscntrl
test_c32iscntrl_LDADD = $(LDADD) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBUNISTRING) $(LIBC32CONV)
EXTRA_DIST += test-c32iscntrl.sh test-c32iscntrl.c signature.h macros.h
## end gnulib module c32iscntrl-tests
## begin gnulib module c32isdigit-tests
TESTS += test-c32isdigit.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_JA='@LOCALE_JA@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-c32isdigit
test_c32isdigit_LDADD = $(LDADD) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBUNISTRING) $(LIBC32CONV)
EXTRA_DIST += test-c32isdigit.sh test-c32isdigit.c signature.h macros.h
## end gnulib module c32isdigit-tests
## begin gnulib module c32isgraph-tests
TESTS += test-c32isgraph.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_JA='@LOCALE_JA@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-c32isgraph
test_c32isgraph_LDADD = $(LDADD) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBUNISTRING) $(LIBC32CONV)
EXTRA_DIST += test-c32isgraph.sh test-c32isgraph.c signature.h macros.h
## end gnulib module c32isgraph-tests
## begin gnulib module c32islower-tests
TESTS += test-c32islower.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_JA='@LOCALE_JA@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-c32islower
test_c32islower_LDADD = $(LDADD) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBUNISTRING) $(LIBC32CONV)
EXTRA_DIST += test-c32islower.sh test-c32islower.c signature.h macros.h
## end gnulib module c32islower-tests
## begin gnulib module c32isprint-tests
TESTS += test-c32isprint.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_JA='@LOCALE_JA@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-c32isprint
test_c32isprint_LDADD = $(LDADD) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBUNISTRING) $(LIBC32CONV)
EXTRA_DIST += test-c32isprint.sh test-c32isprint.c signature.h macros.h
## end gnulib module c32isprint-tests
## begin gnulib module c32ispunct-tests
TESTS += test-c32ispunct.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_JA='@LOCALE_JA@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-c32ispunct
test_c32ispunct_LDADD = $(LDADD) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBUNISTRING) $(LIBC32CONV)
EXTRA_DIST += test-c32ispunct.sh test-c32ispunct.c signature.h macros.h
## end gnulib module c32ispunct-tests
## begin gnulib module c32isspace-tests
TESTS += test-c32isspace.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_JA='@LOCALE_JA@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-c32isspace
test_c32isspace_LDADD = $(LDADD) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBUNISTRING) $(LIBC32CONV)
EXTRA_DIST += test-c32isspace.sh test-c32isspace.c signature.h macros.h
## end gnulib module c32isspace-tests
## begin gnulib module c32isupper-tests
TESTS += test-c32isupper.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_JA='@LOCALE_JA@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-c32isupper
test_c32isupper_LDADD = $(LDADD) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBUNISTRING) $(LIBC32CONV)
EXTRA_DIST += test-c32isupper.sh test-c32isupper.c signature.h macros.h
## end gnulib module c32isupper-tests
## begin gnulib module c32isxdigit-tests
TESTS += test-c32isxdigit.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_JA='@LOCALE_JA@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-c32isxdigit
test_c32isxdigit_LDADD = $(LDADD) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBUNISTRING) $(LIBC32CONV)
EXTRA_DIST += test-c32isxdigit.sh test-c32isxdigit.c signature.h macros.h
## end gnulib module c32isxdigit-tests
## begin gnulib module c32rtomb
if GL_COND_OBJ_C32RTOMB
libtests_a_SOURCES += c32rtomb.c
endif
## end gnulib module c32rtomb
## begin gnulib module c32rtomb-tests
TESTS += \
test-c32rtomb.sh \
test-c32rtomb-w32-2.sh test-c32rtomb-w32-3.sh test-c32rtomb-w32-4.sh \
test-c32rtomb-w32-5.sh test-c32rtomb-w32-6.sh test-c32rtomb-w32-7.sh \
test-c32rtomb-w32-8.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_JA='@LOCALE_JA@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-c32rtomb test-c32rtomb-w32
test_c32rtomb_LDADD = $(LDADD) $(LIBUNISTRING) $(SETLOCALE_LIB) $(LIBC32CONV)
EXTRA_DIST += test-c32rtomb.sh test-c32rtomb.c test-c32rtomb-w32-2.sh test-c32rtomb-w32-3.sh test-c32rtomb-w32-4.sh test-c32rtomb-w32-5.sh test-c32rtomb-w32-6.sh test-c32rtomb-w32-7.sh test-c32rtomb-w32-8.sh test-c32rtomb-w32.c signature.h macros.h
## end gnulib module c32rtomb-tests
## begin gnulib module c32tob
libtests_a_SOURCES += c32tob.c
## end gnulib module c32tob
## begin gnulib module c32tolower-tests
TESTS += test-c32tolower.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_JA='@LOCALE_JA@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-c32tolower
test_c32tolower_LDADD = $(LDADD) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBUNISTRING) $(LIBC32CONV)
EXTRA_DIST += test-c32tolower.sh test-c32tolower.c signature.h macros.h
## end gnulib module c32tolower-tests
## begin gnulib module c32width-tests
TESTS += test-c32width
check_PROGRAMS += test-c32width
test_c32width_LDADD = $(LDADD) $(SETLOCALE_LIB) $(LIBUNISTRING) $(LIBC32CONV)
EXTRA_DIST += test-c32width.c signature.h macros.h
## end gnulib module c32width-tests
## begin gnulib module calloc-gnu-tests
TESTS += test-calloc-gnu
check_PROGRAMS += test-calloc-gnu
EXTRA_DIST += test-calloc-gnu.c macros.h
## end gnulib module calloc-gnu-tests
## begin gnulib module calloc-posix-tests
TESTS += test-calloc-posix
check_PROGRAMS += test-calloc-posix
EXTRA_DIST += test-calloc-posix.c macros.h
## end gnulib module calloc-posix-tests
## begin gnulib module canonicalize-tests
TESTS += test-canonicalize
check_PROGRAMS += test-canonicalize
test_canonicalize_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-canonicalize.c null-ptr.h macros.h
## end gnulib module canonicalize-tests
## begin gnulib module chdir-tests
TESTS += test-chdir
check_PROGRAMS += test-chdir
EXTRA_DIST += test-chdir.c signature.h macros.h
## end gnulib module chdir-tests
## begin gnulib module chmod-tests
TESTS += test-chmod
check_PROGRAMS += test-chmod
test_chmod_LDADD = $(LDADD) $(LIBINTL)
EXTRA_DIST += test-chmod.c signature.h macros.h
## end gnulib module chmod-tests
## begin gnulib module chown-tests
TESTS += test-chown
check_PROGRAMS += test-chown
test_chown_LDADD = $(LDADD) $(NANOSLEEP_LIB) @LIBINTL@
EXTRA_DIST += nap.h test-chown.h test-chown.c signature.h macros.h
## end gnulib module chown-tests
## begin gnulib module cloexec-tests
TESTS += test-cloexec
check_PROGRAMS += test-cloexec
EXTRA_DIST += test-cloexec.c macros.h
## end gnulib module cloexec-tests
## begin gnulib module close-tests
TESTS += test-close
check_PROGRAMS += test-close
EXTRA_DIST += test-close.c signature.h macros.h
## end gnulib module close-tests
## begin gnulib module closein-tests
TESTS += test-closein.sh
check_PROGRAMS += test-closein
test_closein_LDADD = $(LDADD) $(LIBUNISTRING) @LIBINTL@ $(MBRTOWC_LIB) $(LIBC32CONV)
EXTRA_DIST += test-closein.sh test-closein.c
## end gnulib module closein-tests
## begin gnulib module connect
if GL_COND_OBJ_CONNECT
libtests_a_SOURCES += connect.c
endif
EXTRA_DIST += w32sock.h
## end gnulib module connect
## begin gnulib module connect-tests
TESTS += test-connect
check_PROGRAMS += test-connect
test_connect_LDADD = $(LDADD) @LIBSOCKET@ $(INET_PTON_LIB)
EXTRA_DIST += test-connect.c signature.h macros.h
## end gnulib module connect-tests
## begin gnulib module cpu-supports-tests
TESTS += test-cpu-supports
check_PROGRAMS += test-cpu-supports
EXTRA_DIST += test-cpu-supports.c macros.h
## end gnulib module cpu-supports-tests
## begin gnulib module crc-tests
TESTS += test-crc
check_PROGRAMS += test-crc
noinst_PROGRAMS += bench-crc
test_crc_SOURCES = test-crc.c randomb.c
bench_crc_SOURCES = bench-crc.c randomb.c
bench_crc_CPPFLAGS = $(AM_CPPFLAGS) -DNDEBUG
EXTRA_DIST += test-crc.c macros.h bench-crc.c bench.h randomb.c
## end gnulib module crc-tests
## begin gnulib module creat
if GL_COND_OBJ_CREAT
libtests_a_SOURCES += creat.c
endif
## end gnulib module creat
## begin gnulib module creat-tests
TESTS += test-creat
check_PROGRAMS += test-creat
EXTRA_DIST += test-creat.c signature.h macros.h
## end gnulib module creat-tests
## begin gnulib module crypto/md5-buffer-tests
TESTS += test-md5-buffer
check_PROGRAMS += test-md5-buffer
noinst_PROGRAMS += bench-md5
test_md5_buffer_LDADD = $(LDADD) @LIB_CRYPTO@
bench_md5_CPPFLAGS = $(AM_CPPFLAGS) -DNDEBUG
bench_md5_LDADD = $(LDADD) @LIB_CRYPTO@
EXTRA_DIST += test-md5-buffer.c bench-md5.c bench-digest.h bench.h
## end gnulib module crypto/md5-buffer-tests
## begin gnulib module crypto/md5-tests
TESTS += test-md5-stream
check_PROGRAMS += test-md5-stream
test_md5_stream_LDADD = $(LDADD) @LIB_CRYPTO@
EXTRA_DIST += test-md5-stream.c test-digest.h macros.h
## end gnulib module crypto/md5-tests
## begin gnulib module crypto/sha1-buffer-tests
TESTS += test-sha1-buffer
check_PROGRAMS += test-sha1-buffer
noinst_PROGRAMS += bench-sha1
test_sha1_buffer_LDADD = $(LDADD) @LIB_CRYPTO@
bench_sha1_CPPFLAGS = $(AM_CPPFLAGS) -DNDEBUG
bench_sha1_LDADD = $(LDADD) @LIB_CRYPTO@
EXTRA_DIST += test-sha1-buffer.c bench-sha1.c bench-digest.h bench.h
## end gnulib module crypto/sha1-buffer-tests
## begin gnulib module crypto/sha1-tests
TESTS += test-sha1-stream
check_PROGRAMS += test-sha1-stream
test_sha1_stream_LDADD = $(LDADD) @LIB_CRYPTO@
EXTRA_DIST += test-sha1-stream.c test-digest.h macros.h
## end gnulib module crypto/sha1-tests
## begin gnulib module crypto/sha256-buffer-tests
TESTS += test-sha224-buffer test-sha256-buffer
check_PROGRAMS += test-sha224-buffer test-sha256-buffer
noinst_PROGRAMS += bench-sha224 bench-sha256
test_sha224_buffer_LDADD = $(LDADD) @LIB_CRYPTO@
test_sha256_buffer_LDADD = $(LDADD) @LIB_CRYPTO@
bench_sha224_CPPFLAGS = $(AM_CPPFLAGS) -DNDEBUG
bench_sha224_LDADD = $(LDADD) @LIB_CRYPTO@
bench_sha256_CPPFLAGS = $(AM_CPPFLAGS) -DNDEBUG
bench_sha256_LDADD = $(LDADD) @LIB_CRYPTO@
EXTRA_DIST += test-sha224-buffer.c test-sha256-buffer.c bench-sha224.c bench-sha256.c bench-digest.h bench.h
## end gnulib module crypto/sha256-buffer-tests
## begin gnulib module crypto/sha256-tests
TESTS += test-sha256-stream
check_PROGRAMS += test-sha256-stream
test_sha256_stream_LDADD = $(LDADD) @LIB_CRYPTO@
EXTRA_DIST += test-sha256-stream.c test-digest.h macros.h
## end gnulib module crypto/sha256-tests
## begin gnulib module crypto/sha3-buffer-tests
TESTS += test-sha3-224-buffer test-sha3-256-buffer
TESTS += test-sha3-384-buffer test-sha3-512-buffer
check_PROGRAMS += test-sha3-224-buffer test-sha3-256-buffer
check_PROGRAMS += test-sha3-384-buffer test-sha3-512-buffer
noinst_PROGRAMS += bench-sha3-224 bench-sha3-256
noinst_PROGRAMS += bench-sha3-384 bench-sha3-512
test_sha3_224_buffer_LDADD = $(LDADD) @LIB_CRYPTO@
test_sha3_256_buffer_LDADD = $(LDADD) @LIB_CRYPTO@
test_sha3_384_buffer_LDADD = $(LDADD) @LIB_CRYPTO@
test_sha3_512_buffer_LDADD = $(LDADD) @LIB_CRYPTO@
bench_sha3_224_CPPFLAGS = $(AM_CPPFLAGS) -DNDEBUG
bench_sha3_224_LDADD = $(LDADD) @LIB_CRYPTO@
bench_sha3_256_CPPFLAGS = $(AM_CPPFLAGS) -DNDEBUG
bench_sha3_256_LDADD = $(LDADD) @LIB_CRYPTO@
bench_sha3_384_CPPFLAGS = $(AM_CPPFLAGS) -DNDEBUG
bench_sha3_384_LDADD = $(LDADD) @LIB_CRYPTO@
bench_sha3_512_CPPFLAGS = $(AM_CPPFLAGS) -DNDEBUG
bench_sha3_512_LDADD = $(LDADD) @LIB_CRYPTO@
EXTRA_DIST += test-sha3-224-buffer.c test-sha3-256-buffer.c test-sha3-384-buffer.c test-sha3-512-buffer.c bench-sha3-224.c bench-sha3-256.c bench-sha3-384.c bench-sha3-512.c bench-digest.h bench.h
## end gnulib module crypto/sha3-buffer-tests
## begin gnulib module crypto/sha512-buffer-tests
TESTS += test-sha384-buffer test-sha512-buffer
check_PROGRAMS += test-sha384-buffer test-sha512-buffer
noinst_PROGRAMS += bench-sha384 bench-sha512
test_sha384_buffer_LDADD = $(LDADD) @LIB_CRYPTO@
test_sha512_buffer_LDADD = $(LDADD) @LIB_CRYPTO@
bench_sha384_CPPFLAGS = $(AM_CPPFLAGS) -DNDEBUG
bench_sha384_LDADD = $(LDADD) @LIB_CRYPTO@
bench_sha512_CPPFLAGS = $(AM_CPPFLAGS) -DNDEBUG
bench_sha512_LDADD = $(LDADD) @LIB_CRYPTO@
EXTRA_DIST += test-sha384-buffer.c test-sha512-buffer.c bench-sha384.c bench-sha512.c bench-digest.h bench.h
## end gnulib module crypto/sha512-buffer-tests
## begin gnulib module crypto/sha512-tests
TESTS += test-sha512-stream
check_PROGRAMS += test-sha512-stream
test_sha512_stream_LDADD = $(LDADD) @LIB_CRYPTO@
EXTRA_DIST += test-sha512-stream.c test-digest.h macros.h
## end gnulib module crypto/sha512-tests
## begin gnulib module crypto/sm3-buffer-tests
TESTS += test-sm3-buffer
check_PROGRAMS += test-sm3-buffer
test_sm3_buffer_LDADD = $(LDADD) @LIB_CRYPTO@
EXTRA_DIST += test-sm3-buffer.c
## end gnulib module crypto/sm3-buffer-tests
## begin gnulib module ctype-h-tests
TESTS += test-ctype-h
check_PROGRAMS += test-ctype-h
EXTRA_DIST += test-ctype-h.c
## end gnulib module ctype-h-tests
## begin gnulib module di-set-tests
TESTS += test-di-set
check_PROGRAMS += test-di-set
EXTRA_DIST += test-di-set.c macros.h
## end gnulib module di-set-tests
## begin gnulib module dirent-h-tests
TESTS += test-dirent-h
check_PROGRAMS += test-dirent-h
EXTRA_DIST += test-dirent-h.c
## end gnulib module dirent-h-tests
## begin gnulib module dirfd-tests
TESTS += test-dirfd
check_PROGRAMS += test-dirfd
EXTRA_DIST += test-dirfd.c macros.h
## end gnulib module dirfd-tests
## begin gnulib module dirname-tests
TESTS += test-dirname
check_PROGRAMS += test-dirname
test_dirname_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-dirname.c
## end gnulib module dirname-tests
## begin gnulib module dup-tests
TESTS += test-dup
check_PROGRAMS += test-dup
EXTRA_DIST += test-dup.c signature.h macros.h
## end gnulib module dup-tests
## begin gnulib module dup2-tests
TESTS += test-dup2
check_PROGRAMS += test-dup2
EXTRA_DIST += test-dup2.c signature.h macros.h
## end gnulib module dup2-tests
## begin gnulib module endian-tests
TESTS += test-endian
check_PROGRAMS += test-endian
EXTRA_DIST += test-endian.c macros.h
## end gnulib module endian-tests
## begin gnulib module environ-tests
TESTS += test-environ
check_PROGRAMS += test-environ
EXTRA_DIST += test-environ.c
## end gnulib module environ-tests
## begin gnulib module errno-h-tests
TESTS += test-errno-h
check_PROGRAMS += test-errno-h
EXTRA_DIST += test-errno-h.c
## end gnulib module errno-h-tests
## begin gnulib module error-tests
TESTS += test-error.sh
check_PROGRAMS += test-error
test_error_LDADD = $(LDADD) $(LIBINTL)
EXTRA_DIST += test-error.sh test-error.c macros.h
## end gnulib module error-tests
## begin gnulib module euidaccess-tests
TESTS += test-euidaccess
check_PROGRAMS += test-euidaccess
EXTRA_DIST += test-euidaccess.c test-access.h signature.h macros.h
## end gnulib module euidaccess-tests
## begin gnulib module exclude-tests
TESTS += \
test-exclude1.sh\
test-exclude2.sh\
test-exclude3.sh\
test-exclude4.sh\
test-exclude5.sh\
test-exclude6.sh\
test-exclude7.sh\
test-exclude8.sh
check_PROGRAMS += test-exclude
test_exclude_LDADD = $(LDADD) $(LIBUNISTRING) @LIBINTL@ $(MBRTOWC_LIB) $(LIBTHREAD) $(LIBC32CONV)
EXTRA_DIST += test-exclude.c test-exclude1.sh test-exclude2.sh test-exclude3.sh test-exclude4.sh test-exclude5.sh test-exclude6.sh test-exclude7.sh test-exclude8.sh
## end gnulib module exclude-tests
## begin gnulib module explicit_bzero-tests
TESTS += test-explicit_bzero
check_PROGRAMS += test-explicit_bzero
EXTRA_DIST += test-explicit_bzero.c signature.h macros.h
## end gnulib module explicit_bzero-tests
## begin gnulib module faccessat-tests
TESTS += test-faccessat
check_PROGRAMS += test-faccessat
test_faccessat_LDADD = $(LDADD) $(EUIDACCESS_LIBGEN) @LIBINTL@
EXTRA_DIST += test-faccessat.c signature.h macros.h
## end gnulib module faccessat-tests
## begin gnulib module fadvise-tests
TESTS += test-fadvise
check_PROGRAMS += test-fadvise
EXTRA_DIST += test-fadvise.c
## end gnulib module fadvise-tests
## begin gnulib module fchdir-tests
TESTS += test-fchdir
check_PROGRAMS += test-fchdir
test_fchdir_LDADD = $(LDADD) $(LIBINTL)
EXTRA_DIST += test-fchdir.c signature.h macros.h
## end gnulib module fchdir-tests
## begin gnulib module fchmodat-tests
TESTS += test-fchmodat
check_PROGRAMS += test-fchmodat
test_fchmodat_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-fchmodat.c signature.h macros.h
## end gnulib module fchmodat-tests
## begin gnulib module fchownat-tests
TESTS += test-fchownat
check_PROGRAMS += test-fchownat
test_fchownat_LDADD = $(LDADD) $(NANOSLEEP_LIB) @LIBINTL@
EXTRA_DIST += nap.h test-chown.h test-lchown.h test-fchownat.c signature.h macros.h
## end gnulib module fchownat-tests
## begin gnulib module fclose-tests
TESTS += test-fclose
check_PROGRAMS += test-fclose
EXTRA_DIST += test-fclose.c macros.h
## end gnulib module fclose-tests
## begin gnulib module fcntl-h-tests
TESTS += test-fcntl-h
check_PROGRAMS += test-fcntl-h
EXTRA_DIST += test-fcntl-h.c
## end gnulib module fcntl-h-tests
## begin gnulib module fcntl-safer-tests
TESTS += test-fcntl-safer
check_PROGRAMS += test-fcntl-safer
EXTRA_DIST += test-open.h test-fcntl-safer.c macros.h
## end gnulib module fcntl-safer-tests
## begin gnulib module fcntl-tests
TESTS += test-fcntl
check_PROGRAMS += test-fcntl
EXTRA_DIST += test-fcntl.c signature.h macros.h
## end gnulib module fcntl-tests
## begin gnulib module fdatasync-tests
TESTS += test-fdatasync
check_PROGRAMS += test-fdatasync
test_fdatasync_LDADD = $(LDADD) $(FDATASYNC_LIB)
EXTRA_DIST += test-fdatasync.c signature.h macros.h
## end gnulib module fdatasync-tests
## begin gnulib module fdopen-tests
TESTS += test-fdopen
check_PROGRAMS += test-fdopen
EXTRA_DIST += test-fdopen.c signature.h macros.h
## end gnulib module fdopen-tests
## begin gnulib module fdopendir-tests
TESTS += test-fdopendir
check_PROGRAMS += test-fdopendir
test_fdopendir_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-fdopendir.c signature.h macros.h
## end gnulib module fdopendir-tests
## begin gnulib module fdutimensat-tests
TESTS += test-fdutimensat
check_PROGRAMS += test-fdutimensat
test_fdutimensat_LDADD = $(LDADD) $(CLOCK_TIME_LIB) \
$(NANOSLEEP_LIB) @LIBINTL@
EXTRA_DIST += nap.h test-futimens.h test-lutimens.h test-utimens.h test-utimens-common.h test-fdutimensat.c macros.h
## end gnulib module fdutimensat-tests
## begin gnulib module fflush-tests
TESTS += test-fflush test-fflush2.sh
check_PROGRAMS += test-fflush test-fflush2
MOSTLYCLEANFILES += test-fflush.txt
EXTRA_DIST += test-fflush.c test-fflush2.sh test-fflush2.c signature.h macros.h
## end gnulib module fflush-tests
## begin gnulib module fgetc-tests
TESTS += test-fgetc
check_PROGRAMS += test-fgetc
EXTRA_DIST += test-fgetc.c signature.h macros.h
## end gnulib module fgetc-tests
## begin gnulib module file-has-acl-tests
TESTS += \
test-file-has-acl.sh test-file-has-acl-1.sh test-file-has-acl-2.sh
TESTS_ENVIRONMENT += \
USE_ACL=$(USE_ACL) \
host_os='@host_os@'
check_PROGRAMS += test-file-has-acl
test_file_has_acl_LDADD = $(LDADD) $(FILE_HAS_ACL_LIB)
EXTRA_DIST += test-file-has-acl.sh test-file-has-acl-1.sh test-file-has-acl-2.sh test-file-has-acl.c macros.h
## end gnulib module file-has-acl-tests
## begin gnulib module filemode-tests
TESTS += test-filemode
check_PROGRAMS += test-filemode
EXTRA_DIST += test-filemode.c macros.h
## end gnulib module filemode-tests
## begin gnulib module filenamecat-tests
TESTS += test-filenamecat
check_PROGRAMS += test-filenamecat
test_filenamecat_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-filenamecat.c
## end gnulib module filenamecat-tests
## begin gnulib module filevercmp-tests
TESTS += test-filevercmp
check_PROGRAMS += test-filevercmp
EXTRA_DIST += test-filevercmp.c macros.h
## end gnulib module filevercmp-tests
## begin gnulib module float-h-tests
TESTS += test-float-h
check_PROGRAMS += test-float-h
test_float_h_LDADD = $(LDADD) @FREXPL_LIBM@ @TRUNCL_LIBM@
EXTRA_DIST += test-float-h.c macros.h
## end gnulib module float-h-tests
## begin gnulib module fnmatch-h-tests
TESTS += test-fnmatch-h
check_PROGRAMS += test-fnmatch-h
EXTRA_DIST += test-fnmatch-h.c
## end gnulib module fnmatch-h-tests
## begin gnulib module fnmatch-tests
TESTS += \
test-fnmatch-1.sh test-fnmatch-2.sh test-fnmatch-3.sh test-fnmatch-4.sh \
test-fnmatch-5.sh \
test-fnmatch-w32-2.sh test-fnmatch-w32-3.sh test-fnmatch-w32-4.sh \
test-fnmatch-w32-5.sh test-fnmatch-w32-6.sh test-fnmatch-w32-7.sh \
test-fnmatch-w32-8.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_JA='@LOCALE_JA@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-fnmatch test-fnmatch-w32
test_fnmatch_LDADD = $(LDADD) $(SETLOCALE_LIB) $(LIBUNISTRING) $(MBRTOWC_LIB)
test_fnmatch_w32_LDADD = $(LDADD) $(SETLOCALE_LIB) $(LIBUNISTRING) $(MBRTOWC_LIB)
EXTRA_DIST += test-fnmatch-1.sh test-fnmatch-2.sh test-fnmatch-3.sh test-fnmatch-4.sh test-fnmatch-5.sh test-fnmatch.c test-fnmatch-w32-2.sh test-fnmatch-w32-3.sh test-fnmatch-w32-4.sh test-fnmatch-w32-5.sh test-fnmatch-w32-6.sh test-fnmatch-w32-7.sh test-fnmatch-w32-8.sh test-fnmatch-w32.c signature.h macros.h
## end gnulib module fnmatch-tests
## begin gnulib module fopen-gnu-tests
TESTS += test-fopen-gnu
check_PROGRAMS += test-fopen-gnu
EXTRA_DIST += test-fopen-gnu.c macros.h
## end gnulib module fopen-gnu-tests
## begin gnulib module fopen-safer-tests
TESTS += test-fopen-safer
check_PROGRAMS += test-fopen-safer
EXTRA_DIST += test-fopen.h test-fopen-safer.c macros.h
## end gnulib module fopen-safer-tests
## begin gnulib module fopen-tests
TESTS += test-fopen
check_PROGRAMS += test-fopen
EXTRA_DIST += test-fopen.h test-fopen.c signature.h macros.h
## end gnulib module fopen-tests
## begin gnulib module fpending-tests
TESTS += test-fpending.sh
check_PROGRAMS += test-fpending
MOSTLYCLEANFILES += test-fpending.t
EXTRA_DIST += test-fpending.c test-fpending.sh macros.h
## end gnulib module fpending-tests
## begin gnulib module fpurge-tests
TESTS += test-fpurge
check_PROGRAMS += test-fpurge
MOSTLYCLEANFILES += t-fpurge.tmp
EXTRA_DIST += test-fpurge.c macros.h
## end gnulib module fpurge-tests
## begin gnulib module fputc-tests
TESTS += test-fputc
check_PROGRAMS += test-fputc
EXTRA_DIST += test-fputc.c signature.h macros.h
## end gnulib module fputc-tests
## begin gnulib module fread-tests
TESTS += test-fread
check_PROGRAMS += test-fread
EXTRA_DIST += test-fread.c signature.h macros.h
## end gnulib module fread-tests
## begin gnulib module freadahead-tests
TESTS += test-freadahead.sh
check_PROGRAMS += test-freadahead
EXTRA_DIST += test-freadahead.c test-freadahead.sh macros.h
## end gnulib module freadahead-tests
## begin gnulib module freading-tests
TESTS += test-freading
check_PROGRAMS += test-freading
MOSTLYCLEANFILES += t-freading.tmp
EXTRA_DIST += test-freading.c macros.h
## end gnulib module freading-tests
## begin gnulib module freadptr-tests
TESTS += test-freadptr.sh test-freadptr2.sh
check_PROGRAMS += test-freadptr test-freadptr2
EXTRA_DIST += test-freadptr.c test-freadptr.sh test-freadptr2.c test-freadptr2.sh macros.h
## end gnulib module freadptr-tests
## begin gnulib module freadseek-tests
TESTS += test-freadseek.sh
check_PROGRAMS += test-freadseek
EXTRA_DIST += test-freadseek.c test-freadseek.sh macros.h
## end gnulib module freadseek-tests
## begin gnulib module free-posix-tests
TESTS += test-free
check_PROGRAMS += test-free
EXTRA_DIST += test-free.c macros.h
## end gnulib module free-posix-tests
## begin gnulib module freopen-safer-tests
TESTS += test-freopen-safer
check_PROGRAMS += test-freopen-safer
EXTRA_DIST += test-freopen-safer.c macros.h
## end gnulib module freopen-safer-tests
## begin gnulib module freopen-tests
TESTS += test-freopen
check_PROGRAMS += test-freopen
EXTRA_DIST += test-freopen.c signature.h macros.h
## end gnulib module freopen-tests
## begin gnulib module frexp
EXTRA_DIST += frexp.c
EXTRA_libtests_a_SOURCES += frexp.c
## end gnulib module frexp
## begin gnulib module frexp-nolibm-tests
TESTS += test-frexp-nolibm
check_PROGRAMS += test-frexp-nolibm
test_frexp_nolibm_SOURCES = test-frexp.c randomd.c
EXTRA_DIST += test-frexp.c test-frexp.h minus-zero.h infinity.h signature.h macros.h randomd.c
## end gnulib module frexp-nolibm-tests
## begin gnulib module frexp-tests
TESTS += test-frexp
check_PROGRAMS += test-frexp
test_frexp_SOURCES = test-frexp.c randomd.c
test_frexp_LDADD = $(LDADD) @FREXP_LIBM@
EXTRA_DIST += test-frexp.c test-frexp.h minus-zero.h infinity.h signature.h macros.h randomd.c
## end gnulib module frexp-tests
## begin gnulib module frexpl
EXTRA_DIST += frexp.c frexpl.c
EXTRA_libtests_a_SOURCES += frexp.c frexpl.c
## end gnulib module frexpl
## begin gnulib module frexpl-nolibm-tests
TESTS += test-frexpl-nolibm
check_PROGRAMS += test-frexpl-nolibm
test_frexpl_nolibm_SOURCES = test-frexpl.c randoml.c
EXTRA_DIST += test-frexpl.c test-frexp.h minus-zero.h infinity.h signature.h macros.h randoml.c
## end gnulib module frexpl-nolibm-tests
## begin gnulib module frexpl-tests
TESTS += test-frexpl
check_PROGRAMS += test-frexpl
test_frexpl_SOURCES = test-frexpl.c randoml.c
test_frexpl_LDADD = $(LDADD) @FREXPL_LIBM@
EXTRA_DIST += test-frexpl.c test-frexp.h minus-zero.h infinity.h signature.h macros.h randoml.c
## end gnulib module frexpl-tests
## begin gnulib module fseek-tests
TESTS += test-fseek.sh test-fseek2.sh
check_PROGRAMS += test-fseek
EXTRA_DIST += test-fseek.c test-fseek.sh test-fseek2.sh signature.h macros.h
## end gnulib module fseek-tests
## begin gnulib module fseeko-tests
TESTS += test-fseeko.sh test-fseeko2.sh test-fseeko3.sh test-fseeko4.sh
check_PROGRAMS += test-fseeko test-fseeko3 test-fseeko4
EXTRA_DIST += test-fseeko.c test-fseeko.sh test-fseeko2.sh test-fseeko3.c test-fseeko3.sh test-fseeko4.c test-fseeko4.sh signature.h macros.h
## end gnulib module fseeko-tests
## begin gnulib module fseterr-tests
TESTS += test-fseterr
check_PROGRAMS += test-fseterr
EXTRA_DIST += test-fseterr.c
## end gnulib module fseterr-tests
## begin gnulib module fstat-tests
TESTS += test-fstat
check_PROGRAMS += test-fstat
EXTRA_DIST += test-fstat.c signature.h macros.h
## end gnulib module fstat-tests
## begin gnulib module fstatat-tests
TESTS += test-fstatat
check_PROGRAMS += test-fstatat
test_fstatat_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-fstatat.c test-lstat.h test-stat.h signature.h macros.h
## end gnulib module fstatat-tests
## begin gnulib module fsync-tests
TESTS += test-fsync
check_PROGRAMS += test-fsync
EXTRA_DIST += test-fsync.c signature.h macros.h
## end gnulib module fsync-tests
## begin gnulib module ftell-tests
TESTS += test-ftell.sh test-ftell2.sh test-ftell3
check_PROGRAMS += test-ftell test-ftell3
MOSTLYCLEANFILES += t-ftell3.tmp
EXTRA_DIST += test-ftell.c test-ftell.sh test-ftell2.sh test-ftell3.c signature.h macros.h
## end gnulib module ftell-tests
## begin gnulib module ftello-tests
TESTS += test-ftello.sh test-ftello2.sh test-ftello3 test-ftello4.sh
check_PROGRAMS += test-ftello test-ftello3 test-ftello4
MOSTLYCLEANFILES += t-ftello3.tmp
EXTRA_DIST += test-ftello.c test-ftello.sh test-ftello2.sh test-ftello3.c test-ftello4.c test-ftello4.sh signature.h macros.h
## end gnulib module ftello-tests
## begin gnulib module ftruncate-tests
TESTS += test-ftruncate.sh
check_PROGRAMS += test-ftruncate
EXTRA_DIST += test-ftruncate.c test-ftruncate.sh signature.h macros.h
## end gnulib module ftruncate-tests
## begin gnulib module futimens-tests
TESTS += test-futimens
check_PROGRAMS += test-futimens
test_futimens_LDADD = $(LDADD) $(CLOCK_TIME_LIB) $(NANOSLEEP_LIB) @LIBINTL@
EXTRA_DIST += nap.h test-futimens.h test-utimens-common.h test-futimens.c signature.h macros.h
## end gnulib module futimens-tests
## begin gnulib module fwrite-tests
TESTS += test-fwrite
check_PROGRAMS += test-fwrite
EXTRA_DIST += test-fwrite.c signature.h macros.h
## end gnulib module fwrite-tests
## begin gnulib module gen-header
# In 'sed', replace the pattern space with a "DO NOT EDIT" comment.
SED_HEADER_NOEDIT = s,.*,/* DO NOT EDIT! GENERATED AUTOMATICALLY! */,
# '$(SED_HEADER_STDOUT) -e "..."' runs 'sed' but first outputs "DO NOT EDIT".
SED_HEADER_STDOUT = sed -e 1h -e '1$(SED_HEADER_NOEDIT)' -e 1G
# '$(SED_HEADER_TO_AT_t) FILE' copies FILE to $@-t, prepending a leading
# "DO_NOT_EDIT". Although this could be done more simply via:
# SED_HEADER_TO_AT_t = $(SED_HEADER_STDOUT) > $@-t
# the -n and 'w' avoid a fork+exec, at least when GNU Make is used.
SED_HEADER_TO_AT_t = $(SED_HEADER_STDOUT) -n -e 'w $@-t'
# Use $(gl_V_at) instead of $(AM_V_GEN) or $(AM_V_at) on a line that
# is its recipe's first line if and only if @NMD@ lines are absent.
gl_V_at = $(AM_V_GEN)
## end gnulib module gen-header
## begin gnulib module getaddrinfo-tests
TESTS += test-getaddrinfo
check_PROGRAMS += test-getaddrinfo
test_getaddrinfo_LDADD = $(LDADD) @GETADDRINFO_LIB@ @LIBINTL@
EXTRA_DIST += signature.h test-getaddrinfo.c
## end gnulib module getaddrinfo-tests
## begin gnulib module getcwd-lgpl-tests
TESTS += test-getcwd-lgpl
check_PROGRAMS += test-getcwd-lgpl
test_getcwd_lgpl_LDADD = $(LDADD) $(LIBINTL)
EXTRA_DIST += test-getcwd-lgpl.c signature.h macros.h
## end gnulib module getcwd-lgpl-tests
## begin gnulib module getcwd-tests
TESTS += test-getcwd.sh
check_PROGRAMS += test-getcwd
test_getcwd_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-getcwd.sh test-getcwd.c qemu.h macros.h
## end gnulib module getcwd-tests
## begin gnulib module getdelim-tests
TESTS += test-getdelim
check_PROGRAMS += test-getdelim
MOSTLYCLEANFILES += test-getdelim.txt
EXTRA_DIST += test-getdelim.c signature.h macros.h
## end gnulib module getdelim-tests
## begin gnulib module getdtablesize-tests
TESTS += test-getdtablesize
check_PROGRAMS += test-getdtablesize
EXTRA_DIST += test-getdtablesize.c signature.h macros.h
## end gnulib module getdtablesize-tests
## begin gnulib module getgroups-tests
TESTS += test-getgroups
check_PROGRAMS += test-getgroups
EXTRA_DIST += test-getgroups.c signature.h macros.h
## end gnulib module getgroups-tests
## begin gnulib module gethostname-tests
TESTS += test-gethostname
check_PROGRAMS += test-gethostname
test_gethostname_LDADD = $(LDADD) @GETHOSTNAME_LIB@
EXTRA_DIST += signature.h test-gethostname.c
## end gnulib module gethostname-tests
## begin gnulib module getline-tests
TESTS += test-getline
check_PROGRAMS += test-getline
MOSTLYCLEANFILES += test-getline.txt
EXTRA_DIST += test-getline.c signature.h macros.h
## end gnulib module getline-tests
## begin gnulib module getloadavg-tests
TESTS += test-getloadavg
check_PROGRAMS += test-getloadavg
test_getloadavg_LDADD = $(LDADD) @GETLOADAVG_LIBS@
EXTRA_DIST += test-getloadavg.c signature.h
## end gnulib module getloadavg-tests
## begin gnulib module getlogin-tests
TESTS += test-getlogin
check_PROGRAMS += test-getlogin
test_getlogin_LDADD = $(LDADD) $(GETLOGIN_LIB) $(LIBINTL)
EXTRA_DIST += test-getlogin.c test-getlogin.h signature.h macros.h
## end gnulib module getlogin-tests
## begin gnulib module getndelim2-tests
TESTS += test-getndelim2
check_PROGRAMS += test-getndelim2
MOSTLYCLEANFILES += test-getndelim2.txt
EXTRA_DIST += test-getndelim2.c macros.h
## end gnulib module getndelim2-tests
## begin gnulib module getopt-gnu-tests
TESTS += test-getopt-gnu
check_PROGRAMS += test-getopt-gnu
test_getopt_gnu_LDADD = $(LDADD) $(LIBINTL)
EXTRA_DIST += macros.h signature.h test-getopt-gnu.c test-getopt-main.h test-getopt.h test-getopt_long.h
## end gnulib module getopt-gnu-tests
## begin gnulib module getopt-posix-tests
TESTS += test-getopt-posix
check_PROGRAMS += test-getopt-posix
test_getopt_posix_LDADD = $(LDADD) $(LIBINTL)
EXTRA_DIST += macros.h signature.h test-getopt-posix.c test-getopt-main.h test-getopt.h
## end gnulib module getopt-posix-tests
## begin gnulib module getprogname-tests
DEFS += -DEXEEXT=\"@EXEEXT@\"
TESTS += test-getprogname
check_PROGRAMS += test-getprogname
test_getprogname_LDADD = $(LDADD)
EXTRA_DIST += test-getprogname.c
## end gnulib module getprogname-tests
## begin gnulib module getrandom-tests
TESTS += test-getrandom
check_PROGRAMS += test-getrandom
test_getrandom_LDADD = $(LDADD) @GETRANDOM_LIB@
EXTRA_DIST += test-getrandom.c signature.h macros.h
## end gnulib module getrandom-tests
## begin gnulib module getrusage
if GL_COND_OBJ_GETRUSAGE
libtests_a_SOURCES += getrusage.c
endif
## end gnulib module getrusage
## begin gnulib module getrusage-tests
TESTS += test-getrusage
check_PROGRAMS += test-getrusage
EXTRA_DIST += test-getrusage.c signature.h macros.h
## end gnulib module getrusage-tests
## begin gnulib module gettext-h-tests
TESTS += test-gettext-h
check_PROGRAMS += test-gettext-h
test_gettext_h_LDADD = $(LDADD) $(LIBINTL)
EXTRA_DIST += test-gettext-h.c
## end gnulib module gettext-h-tests
## begin gnulib module gettime-res-tests
TESTS += test-gettime-res
check_PROGRAMS += test-gettime-res
test_gettime_res_LDADD = $(LDADD) $(CLOCK_TIME_LIB)
EXTRA_DIST += signature.h test-gettime-res.c
## end gnulib module gettime-res-tests
## begin gnulib module gettimeofday-tests
TESTS += test-gettimeofday
check_PROGRAMS += test-gettimeofday
EXTRA_DIST += test-gettimeofday.c signature.h macros.h
## end gnulib module gettimeofday-tests
## begin gnulib module glibc-internal/dynarray-tests
TESTS += test-dynarray
check_PROGRAMS += test-dynarray
EXTRA_DIST += test-dynarray.c macros.h
## end gnulib module glibc-internal/dynarray-tests
## begin gnulib module glibc-internal/scratch_buffer-tests
TESTS += test-scratch-buffer
check_PROGRAMS += test-scratch-buffer
test_scratch_buffer_SOURCES = test-scratch-buffer.c
EXTRA_DIST += test-scratch-buffer.c macros.h
## end gnulib module glibc-internal/scratch_buffer-tests
## begin gnulib module gperf
GPERF = gperf
V_GPERF = $(V_GPERF_@AM_V@)
V_GPERF_ = $(V_GPERF_@AM_DEFAULT_V@)
V_GPERF_0 = @echo " GPERF " $@;
## end gnulib module gperf
## begin gnulib module hard-locale-tests
TESTS += test-hard-locale
check_PROGRAMS += test-hard-locale
test_hard_locale_LDADD = $(LDADD) $(SETLOCALE_LIB) @HARD_LOCALE_LIB@
# We cannot call this program 'locale', because the C++ compiler on Mac OS X
# would then barf upon '#include <locale>'. So, call it 'current-locale'.
noinst_PROGRAMS += current-locale
current_locale_SOURCES = locale.c
EXTRA_DIST += test-hard-locale.c locale.c
## end gnulib module hard-locale-tests
## begin gnulib module hash-tests
TESTS += test-hash
check_PROGRAMS += test-hash
EXTRA_DIST += test-hash.c macros.h
## end gnulib module hash-tests
## begin gnulib module htonl-tests
TESTS += test-htonl
check_PROGRAMS += test-htonl
test_htonl_LDADD = $(LDADD) @HTONL_LIB@
EXTRA_DIST += test-htonl.c macros.h
## end gnulib module htonl-tests
## begin gnulib module i-ring-tests
TESTS += test-i-ring
check_PROGRAMS += test-i-ring
EXTRA_DIST += test-i-ring.c macros.h
## end gnulib module i-ring-tests
## begin gnulib module iconv-h-tests
TESTS += test-iconv-h
check_PROGRAMS += test-iconv-h
EXTRA_DIST += test-iconv-h.c
## end gnulib module iconv-h-tests
## begin gnulib module iconv-tests
TESTS += test-iconv
check_PROGRAMS += test-iconv
test_iconv_LDADD = $(LDADD) @LIBICONV@
EXTRA_DIST += test-iconv.c signature.h macros.h
## end gnulib module iconv-tests
## begin gnulib module ignore-value-tests
TESTS += test-ignore-value
check_PROGRAMS += test-ignore-value
EXTRA_DIST += test-ignore-value.c
## end gnulib module ignore-value-tests
## begin gnulib module inet_ntop-tests
TESTS += test-inet_ntop
check_PROGRAMS += test-inet_ntop
test_inet_ntop_LDADD = $(LDADD) @INET_NTOP_LIB@
EXTRA_DIST += test-inet_ntop.c signature.h macros.h
## end gnulib module inet_ntop-tests
## begin gnulib module inet_pton-tests
TESTS += test-inet_pton
check_PROGRAMS += test-inet_pton
test_inet_pton_LDADD = $(LDADD) @INET_PTON_LIB@
EXTRA_DIST += test-inet_pton.c signature.h macros.h
## end gnulib module inet_pton-tests
## begin gnulib module ino-map-tests
TESTS += test-ino-map
check_PROGRAMS += test-ino-map
EXTRA_DIST += test-ino-map.c macros.h
## end gnulib module ino-map-tests
## begin gnulib module intprops-tests
TESTS += test-intprops
check_PROGRAMS += test-intprops
EXTRA_DIST += test-intprops.c macros.h
## end gnulib module intprops-tests
## begin gnulib module inttostr-tests
TESTS += test-inttostr
check_PROGRAMS += test-inttostr
EXTRA_DIST += macros.h test-inttostr.c
## end gnulib module inttostr-tests
## begin gnulib module inttypes-h-tests
TESTS += test-inttypes-h
check_PROGRAMS += test-inttypes-h
EXTRA_DIST += test-inttypes-h.c
## end gnulib module inttypes-h-tests
## begin gnulib module ioctl
if GL_COND_OBJ_IOCTL
libtests_a_SOURCES += ioctl.c
endif
EXTRA_DIST += w32sock.h
## end gnulib module ioctl
## begin gnulib module ioctl-tests
TESTS += test-ioctl
check_PROGRAMS += test-ioctl
EXTRA_DIST += test-ioctl.c signature.h macros.h
## end gnulib module ioctl-tests
## begin gnulib module isatty-tests
TESTS += test-isatty
check_PROGRAMS += test-isatty
EXTRA_DIST += test-isatty.c signature.h macros.h
## end gnulib module isatty-tests
## begin gnulib module isblank-tests
TESTS += test-isblank
check_PROGRAMS += test-isblank
EXTRA_DIST += test-isblank.c signature.h macros.h
## end gnulib module isblank-tests
## begin gnulib module isinf-no-c++-tests
TESTS += test-isinf
check_PROGRAMS += test-isinf
test_isinf_LDADD = $(LDADD) @ISINF_LIBM@
EXTRA_DIST += test-isinf.c infinity.h macros.h
## end gnulib module isinf-no-c++-tests
## begin gnulib module isnand-nolibm-tests
TESTS += test-isnand-nolibm
check_PROGRAMS += test-isnand-nolibm
EXTRA_DIST += test-isnand-nolibm.c test-isnand.h minus-zero.h infinity.h macros.h
## end gnulib module isnand-nolibm-tests
## begin gnulib module isnanf-nolibm-tests
TESTS += test-isnanf-nolibm
check_PROGRAMS += test-isnanf-nolibm
EXTRA_DIST += test-isnanf-nolibm.c test-isnanf.h minus-zero.h infinity.h macros.h
## end gnulib module isnanf-nolibm-tests
## begin gnulib module isnanl-nolibm-tests
TESTS += test-isnanl-nolibm
check_PROGRAMS += test-isnanl-nolibm
EXTRA_DIST += test-isnanl-nolibm.c test-isnanl.h minus-zero.h infinity.h macros.h
## end gnulib module isnanl-nolibm-tests
## begin gnulib module iswblank-tests
TESTS += test-iswblank
check_PROGRAMS += test-iswblank
EXTRA_DIST += test-iswblank.c macros.h
## end gnulib module iswblank-tests
## begin gnulib module iswctype-tests
TESTS += test-iswctype
check_PROGRAMS += test-iswctype
EXTRA_DIST += test-iswctype.c signature.h macros.h
## end gnulib module iswctype-tests
## begin gnulib module iswdigit-tests
TESTS += test-iswdigit.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_JA='@LOCALE_JA@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-iswdigit
test_iswdigit_LDADD = $(LDADD) $(SETLOCALE_LIB) $(MBRTOWC_LIB)
EXTRA_DIST += test-iswdigit.sh test-iswdigit.c signature.h macros.h
## end gnulib module iswdigit-tests
## begin gnulib module iswpunct-tests
TESTS += test-iswpunct.sh
check_PROGRAMS += test-iswpunct
test_iswpunct_LDADD = $(LDADD) $(SETLOCALE_LIB) $(MBRTOWC_LIB)
EXTRA_DIST += test-iswpunct.sh test-iswpunct.c signature.h macros.h
## end gnulib module iswpunct-tests
## begin gnulib module iswxdigit-tests
TESTS += test-iswxdigit.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_JA='@LOCALE_JA@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-iswxdigit
test_iswxdigit_LDADD = $(LDADD) $(SETLOCALE_LIB) $(MBRTOWC_LIB)
EXTRA_DIST += test-iswxdigit.sh test-iswxdigit.c signature.h macros.h
## end gnulib module iswxdigit-tests
## begin gnulib module langinfo-h-tests
TESTS += test-langinfo-h
check_PROGRAMS += test-langinfo-h
EXTRA_DIST += test-langinfo-h.c
## end gnulib module langinfo-h-tests
## begin gnulib module largefile-tests
TESTS += test-largefile
check_PROGRAMS += test-largefile
EXTRA_DIST += test-largefile.c
## end gnulib module largefile-tests
## begin gnulib module lchmod-tests
TESTS += test-lchmod
check_PROGRAMS += test-lchmod
test_lchmod_LDADD = $(LDADD) $(LIBINTL)
EXTRA_DIST += test-lchmod.c signature.h macros.h
## end gnulib module lchmod-tests
## begin gnulib module lchown-tests
TESTS += test-lchown
check_PROGRAMS += test-lchown
test_lchown_LDADD = $(LDADD) $(NANOSLEEP_LIB) @LIBINTL@
EXTRA_DIST += nap.h test-lchown.h test-lchown.c signature.h macros.h
## end gnulib module lchown-tests
## begin gnulib module libgmp-mpq-tests
TESTS += test-libgmp-mpq
check_PROGRAMS += test-libgmp-mpq
test_libgmp_mpq_LDADD = $(LDADD) @LIBGMP@
EXTRA_DIST += macros.h test-libgmp-mpq.c
## end gnulib module libgmp-mpq-tests
## begin gnulib module libgmp-mpz-tests
TESTS += test-libgmp-mpz
check_PROGRAMS += test-libgmp-mpz
test_libgmp_mpz_LDADD = $(LDADD) @LIBGMP@
EXTRA_DIST += macros.h test-libgmp-mpz.c
## end gnulib module libgmp-mpz-tests
## begin gnulib module limits-h-tests
TESTS += test-limits-h
check_PROGRAMS += test-limits-h
EXTRA_DIST += test-limits-h.c
## end gnulib module limits-h-tests
## begin gnulib module link-tests
TESTS += test-link
check_PROGRAMS += test-link
test_link_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-link.h test-link.c signature.h macros.h
## end gnulib module link-tests
## begin gnulib module linkat-tests
TESTS += test-linkat
check_PROGRAMS += test-linkat
test_linkat_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-link.h test-linkat.c signature.h macros.h
## end gnulib module linkat-tests
## begin gnulib module listen
if GL_COND_OBJ_LISTEN
libtests_a_SOURCES += listen.c
endif
EXTRA_DIST += w32sock.h
## end gnulib module listen
## begin gnulib module listen-tests
TESTS += test-listen
check_PROGRAMS += test-listen
test_listen_LDADD = $(LDADD) @LIBSOCKET@
EXTRA_DIST += test-listen.c signature.h macros.h
## end gnulib module listen-tests
## begin gnulib module localcharset-tests
noinst_PROGRAMS += test-localcharset
test_localcharset_LDADD = $(LDADD) $(SETLOCALE_LIB)
if OS_IS_NATIVE_WINDOWS
TESTS += test-localcharset-w32utf8.sh
noinst_PROGRAMS += test-localcharset-w32utf8
test_localcharset_w32utf8_LDADD = $(LDADD) test-localcharset-windows-utf8.res $(SETLOCALE_LIB)
test-localcharset-windows-utf8.res : $(srcdir)/windows-utf8.rc
$(WINDRES) -i $(srcdir)/windows-utf8.rc -o test-localcharset-windows-utf8.res --output-format=coff
MOSTLYCLEANFILES += test-localcharset-windows-utf8.res
endif
EXTRA_DIST += test-localcharset.c test-localcharset-w32utf8.sh test-localcharset-w32utf8.c windows-utf8.rc windows-utf8.manifest
## end gnulib module localcharset-tests
## begin gnulib module locale-h-tests
TESTS += test-locale-h
check_PROGRAMS += test-locale-h
EXTRA_DIST += test-locale-h.c
## end gnulib module locale-h-tests
## begin gnulib module localeconv-tests
TESTS += test-localeconv test-localeconv-mt
check_PROGRAMS += test-localeconv test-localeconv-mt
test_localeconv_mt_LDADD = $(LDADD) $(SETLOCALE_LIB) $(LIBMULTITHREAD) $(NANOSLEEP_LIB)
EXTRA_DIST += test-localeconv.c test-localeconv-mt.c signature.h macros.h
## end gnulib module localeconv-tests
## begin gnulib module localename
libtests_a_SOURCES += localename.c
EXTRA_DIST += localename.h struniq.h
## end gnulib module localename
## begin gnulib module localename-tests
TESTS += test-localename
check_PROGRAMS += test-localename
test_localename_LDADD = $(LDADD) $(SETLOCALE_LIB) @INTL_MACOSX_LIBS@ $(LIBTHREAD)
if OS_IS_NATIVE_WINDOWS
TESTS += test-localename-w32utf8.sh
noinst_PROGRAMS += test-localename-w32utf8
test_localename_w32utf8_LDADD = $(LDADD) test-localename-windows-utf8.res $(SETLOCALE_LIB)
test-localename-windows-utf8.res : $(srcdir)/windows-utf8.rc
$(WINDRES) -i $(srcdir)/windows-utf8.rc -o test-localename-windows-utf8.res --output-format=coff
MOSTLYCLEANFILES += test-localename-windows-utf8.res
endif
EXTRA_DIST += test-localename.c test-localename-w32utf8.sh test-localename-w32utf8.c windows-utf8.rc windows-utf8.manifest macros.h
## end gnulib module localename-tests
## begin gnulib module lock-tests
TESTS += test-rwlock1 test-lock
check_PROGRAMS += test-rwlock1 test-lock
test_rwlock1_LDADD = $(LDADD) @LIBMULTITHREAD@ @YIELD_LIB@
test_lock_LDADD = $(LDADD) @LIBMULTITHREAD@ @YIELD_LIB@ @LIB_SEMAPHORE@
EXTRA_DIST += test-rwlock1.c test-lock.c atomic-int-gnulib.h macros.h
## end gnulib module lock-tests
## begin gnulib module lseek-tests
TESTS += test-lseek.sh
check_PROGRAMS += test-lseek
EXTRA_DIST += test-lseek.c test-lseek.sh signature.h macros.h
## end gnulib module lseek-tests
## begin gnulib module lstat-tests
TESTS += test-lstat
check_PROGRAMS += test-lstat
EXTRA_DIST += test-lstat.h test-lstat.c signature.h macros.h
## end gnulib module lstat-tests
## begin gnulib module malloc-gnu-tests
TESTS += test-malloc-gnu
check_PROGRAMS += test-malloc-gnu
EXTRA_DIST += test-malloc-gnu.c macros.h
## end gnulib module malloc-gnu-tests
## begin gnulib module malloc-posix-tests
TESTS += test-malloc-posix
check_PROGRAMS += test-malloc-posix
EXTRA_DIST += test-malloc-posix.c macros.h
## end gnulib module malloc-posix-tests
## begin gnulib module malloca-tests
TESTS += test-malloca
check_PROGRAMS += test-malloca
EXTRA_DIST += test-malloca.c
## end gnulib module malloca-tests
## begin gnulib module math-h-tests
TESTS += test-math-h
check_PROGRAMS += test-math-h
EXTRA_DIST += test-math-h.c macros.h
## end gnulib module math-h-tests
## begin gnulib module mbrlen-tests
TESTS += \
test-mbrlen-1.sh test-mbrlen-2.sh test-mbrlen-3.sh test-mbrlen-4.sh \
test-mbrlen-5.sh \
test-mbrlen-w32-2.sh test-mbrlen-w32-3.sh test-mbrlen-w32-4.sh \
test-mbrlen-w32-5.sh test-mbrlen-w32-6.sh test-mbrlen-w32-7.sh \
test-mbrlen-w32-8.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_JA='@LOCALE_JA@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-mbrlen test-mbrlen-w32
test_mbrlen_LDADD = $(LDADD) $(SETLOCALE_LIB) $(MBRTOWC_LIB)
EXTRA_DIST += test-mbrlen-1.sh test-mbrlen-2.sh test-mbrlen-3.sh test-mbrlen-4.sh test-mbrlen-5.sh test-mbrlen.c test-mbrlen-w32-2.sh test-mbrlen-w32-3.sh test-mbrlen-w32-4.sh test-mbrlen-w32-5.sh test-mbrlen-w32-6.sh test-mbrlen-w32-7.sh test-mbrlen-w32-8.sh test-mbrlen-w32.c signature.h macros.h
## end gnulib module mbrlen-tests
## begin gnulib module mbrtoc32-tests
TESTS += \
test-mbrtoc32-1.sh test-mbrtoc32-2.sh test-mbrtoc32-3.sh test-mbrtoc32-4.sh \
test-mbrtoc32-5.sh \
test-mbrtoc32-w32-2.sh test-mbrtoc32-w32-3.sh test-mbrtoc32-w32-4.sh \
test-mbrtoc32-w32-5.sh test-mbrtoc32-w32-6.sh test-mbrtoc32-w32-7.sh \
test-mbrtoc32-w32-8.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_JA='@LOCALE_JA@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-mbrtoc32 test-mbrtoc32-w32
test_mbrtoc32_LDADD = $(LDADD) $(LIBUNISTRING) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBC32CONV)
EXTRA_DIST += test-mbrtoc32-1.sh test-mbrtoc32-2.sh test-mbrtoc32-3.sh test-mbrtoc32-4.sh test-mbrtoc32-5.sh test-mbrtoc32.c test-mbrtoc32-w32-2.sh test-mbrtoc32-w32-3.sh test-mbrtoc32-w32-4.sh test-mbrtoc32-w32-5.sh test-mbrtoc32-w32-6.sh test-mbrtoc32-w32-7.sh test-mbrtoc32-w32-8.sh test-mbrtoc32-w32.c signature.h macros.h
## end gnulib module mbrtoc32-tests
## begin gnulib module mbrtowc-tests
TESTS += \
test-mbrtowc-1.sh test-mbrtowc-2.sh test-mbrtowc-3.sh test-mbrtowc-4.sh \
test-mbrtowc-5.sh \
test-mbrtowc-w32-2.sh test-mbrtowc-w32-3.sh test-mbrtowc-w32-4.sh \
test-mbrtowc-w32-5.sh test-mbrtowc-w32-6.sh test-mbrtowc-w32-7.sh \
test-mbrtowc-w32-8.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_JA='@LOCALE_JA@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-mbrtowc test-mbrtowc-w32
test_mbrtowc_LDADD = $(LDADD) $(SETLOCALE_LIB) $(MBRTOWC_LIB)
if OS_IS_NATIVE_WINDOWS
TESTS += test-mbrtowc-w32utf8.sh
noinst_PROGRAMS += test-mbrtowc-w32utf8
test_mbrtowc_w32utf8_LDADD = $(LDADD) test-mbrtowc-windows-utf8.res $(SETLOCALE_LIB)
test-mbrtowc-windows-utf8.res : $(srcdir)/windows-utf8.rc
$(WINDRES) -i $(srcdir)/windows-utf8.rc -o test-mbrtowc-windows-utf8.res --output-format=coff
MOSTLYCLEANFILES += test-mbrtowc-windows-utf8.res
endif
EXTRA_DIST += test-mbrtowc-1.sh test-mbrtowc-2.sh test-mbrtowc-3.sh test-mbrtowc-4.sh test-mbrtowc-5.sh test-mbrtowc.c test-mbrtowc-w32-2.sh test-mbrtowc-w32-3.sh test-mbrtowc-w32-4.sh test-mbrtowc-w32-5.sh test-mbrtowc-w32-6.sh test-mbrtowc-w32-7.sh test-mbrtowc-w32-8.sh test-mbrtowc-w32.c test-mbrtowc-w32utf8.sh test-mbrtowc-w32utf8.c windows-utf8.rc windows-utf8.manifest signature.h macros.h
## end gnulib module mbrtowc-tests
## begin gnulib module mbs_endswith-tests
TESTS += test-mbs_endswith1 test-mbs_endswith2.sh test-mbs_endswith3.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-mbs_endswith1 test-mbs_endswith2 test-mbs_endswith3
test_mbs_endswith1_LDADD = $(LDADD) $(LIBUNISTRING) $(MBRTOWC_LIB) $(LIBC32CONV)
test_mbs_endswith2_LDADD = $(LDADD) $(LIBUNISTRING) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBC32CONV)
test_mbs_endswith3_LDADD = $(LDADD) $(LIBUNISTRING) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBC32CONV)
EXTRA_DIST += test-mbs_endswith1.c test-mbs_endswith2.sh test-mbs_endswith2.c test-mbs_endswith3.sh test-mbs_endswith3.c macros.h
## end gnulib module mbs_endswith-tests
## begin gnulib module mbscasecmp-tests
TESTS += test-mbscasecmp.sh
TESTS_ENVIRONMENT += LOCALE_TR_UTF8='@LOCALE_TR_UTF8@'
check_PROGRAMS += test-mbscasecmp
test_mbscasecmp_LDADD = $(LDADD) $(LIBUNISTRING) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBC32CONV)
EXTRA_DIST += test-mbscasecmp.sh test-mbscasecmp.c macros.h
## end gnulib module mbscasecmp-tests
## begin gnulib module mbschr-tests
TESTS += test-mbschr.sh
TESTS_ENVIRONMENT += LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-mbschr
test_mbschr_LDADD = $(LDADD) $(LIBUNISTRING) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBC32CONV)
EXTRA_DIST += test-mbschr.sh test-mbschr.c macros.h
## end gnulib module mbschr-tests
## begin gnulib module mbsinit-tests
TESTS += test-mbsinit.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@'
check_PROGRAMS += test-mbsinit
test_mbsinit_LDADD = $(LDADD) $(SETLOCALE_LIB) $(MBRTOWC_LIB)
EXTRA_DIST += test-mbsinit.sh test-mbsinit.c signature.h macros.h
## end gnulib module mbsinit-tests
## begin gnulib module mbslen-tests
TESTS += test-mbslen.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@'
check_PROGRAMS += test-mbslen
test_mbslen_LDADD = $(LDADD) $(LIBUNISTRING) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBC32CONV)
EXTRA_DIST += test-mbslen.sh test-mbslen.c macros.h
## end gnulib module mbslen-tests
## begin gnulib module mbsnlen-tests
TESTS += test-mbsnlen.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@'
check_PROGRAMS += test-mbsnlen
test_mbsnlen_LDADD = $(LDADD) $(LIBUNISTRING) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBC32CONV)
EXTRA_DIST += test-mbsnlen.sh test-mbsnlen.c macros.h
## end gnulib module mbsnlen-tests
## begin gnulib module mbsrtoc32s-tests
TESTS += \
test-mbsrtoc32s-1.sh test-mbsrtoc32s-2.sh test-mbsrtoc32s-3.sh \
test-mbsrtoc32s-4.sh test-mbsrtoc32s-5.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_JA='@LOCALE_JA@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-mbsrtoc32s
test_mbsrtoc32s_LDADD = $(LDADD) $(LIBUNISTRING) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBC32CONV)
EXTRA_DIST += test-mbsrtoc32s-1.sh test-mbsrtoc32s-2.sh test-mbsrtoc32s-3.sh test-mbsrtoc32s-4.sh test-mbsrtoc32s-5.sh test-mbsrtoc32s.c signature.h macros.h
## end gnulib module mbsrtoc32s-tests
## begin gnulib module mbsrtowcs-tests
TESTS += \
test-mbsrtowcs-1.sh test-mbsrtowcs-2.sh test-mbsrtowcs-3.sh \
test-mbsrtowcs-4.sh test-mbsrtowcs-5.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_JA='@LOCALE_JA@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-mbsrtowcs
test_mbsrtowcs_LDADD = $(LDADD) $(SETLOCALE_LIB) $(MBRTOWC_LIB)
EXTRA_DIST += test-mbsrtowcs-1.sh test-mbsrtowcs-2.sh test-mbsrtowcs-3.sh test-mbsrtowcs-4.sh test-mbsrtowcs-5.sh test-mbsrtowcs.c signature.h macros.h
## end gnulib module mbsrtowcs-tests
## begin gnulib module mbsstr-tests
TESTS += test-mbsstr1 test-mbsstr2.sh test-mbsstr3.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-mbsstr1 test-mbsstr2 test-mbsstr3
test_mbsstr1_LDADD = $(LDADD) $(LIBUNISTRING) $(MBRTOWC_LIB) $(LIBC32CONV)
test_mbsstr2_LDADD = $(LDADD) $(LIBUNISTRING) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBC32CONV)
test_mbsstr3_LDADD = $(LDADD) $(LIBUNISTRING) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBC32CONV)
EXTRA_DIST += test-mbsstr1.c test-mbsstr2.sh test-mbsstr2.c test-mbsstr3.sh test-mbsstr3.c macros.h
## end gnulib module mbsstr-tests
## begin gnulib module mcel-tests
TESTS += \
test-mcel-1.sh test-mcel-2.sh test-mcel-3.sh test-mcel-4.sh test-mcel-5.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_JA='@LOCALE_JA@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-mcel
test_mcel_LDADD = $(LDADD) $(LIBUNISTRING) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBC32CONV)
EXTRA_DIST += test-mcel-1.sh test-mcel-2.sh test-mcel-3.sh test-mcel-4.sh test-mcel-5.sh test-mcel.c macros.h
## end gnulib module mcel-tests
## begin gnulib module memcasecmp-tests
TESTS += test-memcasecmp
check_PROGRAMS += test-memcasecmp
EXTRA_DIST += test-memcasecmp.c zerosize-ptr.h macros.h
## end gnulib module memcasecmp-tests
## begin gnulib module memchr-tests
TESTS += test-memchr
check_PROGRAMS += test-memchr
EXTRA_DIST += test-memchr.c zerosize-ptr.h signature.h macros.h
## end gnulib module memchr-tests
## begin gnulib module memchr2-tests
TESTS += test-memchr2
check_PROGRAMS += test-memchr2
EXTRA_DIST += test-memchr2.c zerosize-ptr.h macros.h
## end gnulib module memchr2-tests
## begin gnulib module memcoll-tests
TESTS += test-memcoll
check_PROGRAMS += test-memcoll
EXTRA_DIST += test-memcoll.c macros.h
## end gnulib module memcoll-tests
## begin gnulib module memrchr-tests
TESTS += test-memrchr
check_PROGRAMS += test-memrchr
EXTRA_DIST += test-memrchr.c zerosize-ptr.h signature.h macros.h
## end gnulib module memrchr-tests
## begin gnulib module memset_explicit-tests
TESTS += test-memset_explicit
check_PROGRAMS += test-memset_explicit
EXTRA_DIST += test-memset_explicit.c signature.h macros.h
## end gnulib module memset_explicit-tests
## begin gnulib module mkdir-tests
TESTS += test-mkdir
check_PROGRAMS += test-mkdir
EXTRA_DIST += test-mkdir.h test-mkdir.c signature.h macros.h
## end gnulib module mkdir-tests
## begin gnulib module mkdirat-tests
TESTS += test-mkdirat
check_PROGRAMS += test-mkdirat
test_mkdirat_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-mkdirat.c test-mkdir.h signature.h macros.h
## end gnulib module mkdirat-tests
## begin gnulib module mkfifo-tests
TESTS += test-mkfifo
check_PROGRAMS += test-mkfifo
EXTRA_DIST += test-mkfifo.h test-mkfifo.c signature.h macros.h
## end gnulib module mkfifo-tests
## begin gnulib module mkfifoat-tests
TESTS += test-mkfifoat
check_PROGRAMS += test-mkfifoat
test_mkfifoat_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-mkfifo.h test-mkfifoat.c signature.h macros.h
## end gnulib module mkfifoat-tests
## begin gnulib module mknod-tests
TESTS += test-mknod
check_PROGRAMS += test-mknod
EXTRA_DIST += test-mkfifo.h test-mknod.c signature.h macros.h
## end gnulib module mknod-tests
## begin gnulib module mountlist-tests
TESTS += test-mountlist
check_PROGRAMS += test-mountlist
test_mountlist_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-mountlist.c macros.h
## end gnulib module mountlist-tests
## begin gnulib module nan
libtests_a_SOURCES += nan.h
## end gnulib module nan
## begin gnulib module nanosleep-tests
TESTS += test-nanosleep
check_PROGRAMS += test-nanosleep
test_nanosleep_LDADD = $(LDADD) $(NANOSLEEP_LIB)
EXTRA_DIST += test-nanosleep.c signature.h macros.h
## end gnulib module nanosleep-tests
## begin gnulib module netdb-h-tests
TESTS += test-netdb-h
check_PROGRAMS += test-netdb-h
EXTRA_DIST += test-netdb-h.c
## end gnulib module netdb-h-tests
## begin gnulib module netinet_in-h-tests
TESTS += test-netinet_in-h
check_PROGRAMS += test-netinet_in-h
EXTRA_DIST += test-netinet_in-h.c
## end gnulib module netinet_in-h-tests
## begin gnulib module next-prime-tests
TESTS += test-next-prime
check_PROGRAMS += test-next-prime
EXTRA_DIST += test-next-prime.c macros.h
## end gnulib module next-prime-tests
## begin gnulib module nl_langinfo-tests
TESTS += test-nl_langinfo1.sh test-nl_langinfo2.sh test-nl_langinfo-mt
TESTS_ENVIRONMENT += LOCALE_FR='@LOCALE_FR@' LOCALE_FR_UTF8='@LOCALE_FR_UTF8@'
check_PROGRAMS += test-nl_langinfo1 test-nl_langinfo2 test-nl_langinfo-mt
test_nl_langinfo1_LDADD = $(LDADD) $(SETLOCALE_LIB)
test_nl_langinfo2_LDADD = $(LDADD) $(SETLOCALE_LIB)
test_nl_langinfo_mt_LDADD = $(LDADD) $(SETLOCALE_LIB) $(LIBMULTITHREAD) $(NANOSLEEP_LIB)
EXTRA_DIST += test-nl_langinfo1.sh test-nl_langinfo2.sh test-nl_langinfo1.c test-nl_langinfo2.c test-nl_langinfo-mt.c signature.h macros.h
## end gnulib module nl_langinfo-tests
## begin gnulib module nstrftime-tests
TESTS += \
test-nstrftime-1.sh \
test-nstrftime-2.sh \
test-nstrftime-DE \
test-nstrftime-TH \
test-nstrftime-IR \
test-nstrftime-ET
TESTS_ENVIRONMENT += \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@'
check_PROGRAMS += \
test-nstrftime \
test-nstrftime-DE \
test-nstrftime-TH \
test-nstrftime-IR \
test-nstrftime-ET
test_nstrftime_LDADD = $(LDADD) $(SETLOCALE_LIB) $(LIBTHREAD)
test_nstrftime_DE_LDADD = $(LDADD) $(SETLOCALE_LIB) $(LIBTHREAD)
test_nstrftime_TH_LDADD = $(LDADD) $(SETLOCALE_LIB) $(LIBTHREAD)
test_nstrftime_IR_LDADD = $(LDADD) $(SETLOCALE_LIB) $(LIBTHREAD)
test_nstrftime_ET_LDADD = $(LDADD) $(SETLOCALE_LIB) $(LIBTHREAD)
if OS_IS_NATIVE_WINDOWS
TESTS += test-nstrftime-w32utf8.sh
noinst_PROGRAMS += test-nstrftime-w32utf8
test_nstrftime_w32utf8_LDADD = $(LDADD) test-nstrftime-windows-utf8.res $(SETLOCALE_LIB) $(LIBTHREAD)
test-nstrftime-windows-utf8.res : $(srcdir)/windows-utf8.rc
$(WINDRES) -i $(srcdir)/windows-utf8.rc -o test-nstrftime-windows-utf8.res --output-format=coff
MOSTLYCLEANFILES += test-nstrftime-windows-utf8.res
endif
EXTRA_DIST += test-nstrftime-1.sh test-nstrftime-2.sh test-nstrftime.c test-nstrftime.h test-nstrftime-DE.c test-nstrftime-TH.c test-nstrftime-IR.c test-nstrftime-ET.c test-nstrftime-w32utf8.sh test-nstrftime-w32utf8.c windows-utf8.rc windows-utf8.manifest macros.h
## end gnulib module nstrftime-tests
## begin gnulib module nullptr-tests
TESTS += test-nullptr
check_PROGRAMS += test-nullptr
EXTRA_DIST += test-nullptr.c macros.h
## end gnulib module nullptr-tests
## begin gnulib module once-tests
TESTS += test-once1 test-once2
check_PROGRAMS += test-once1 test-once2
test_once1_SOURCES = test-once.c
test_once1_LDADD = $(LDADD) @LIBTHREAD@
test_once2_SOURCES = test-once.c
test_once2_LDADD = $(LDADD) @LIBMULTITHREAD@
EXTRA_DIST += test-once.c macros.h
## end gnulib module once-tests
## begin gnulib module open-tests
TESTS += test-open
check_PROGRAMS += test-open
EXTRA_DIST += test-open.h test-open.c signature.h macros.h
## end gnulib module open-tests
## begin gnulib module openat-safer-tests
TESTS += test-openat-safer
check_PROGRAMS += test-openat-safer
test_openat_safer_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-openat-safer.c macros.h
## end gnulib module openat-safer-tests
## begin gnulib module openat-tests
TESTS += test-openat
check_PROGRAMS += test-openat
test_openat_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-openat.c test-open.h signature.h macros.h
## end gnulib module openat-tests
## begin gnulib module parse-datetime-tests
TESTS += test-parse-datetime
check_PROGRAMS += test-parse-datetime
test_parse_datetime_LDADD = $(LDADD) @LIBINTL@ $(CLOCK_TIME_LIB)
EXTRA_DIST += test-parse-datetime.c macros.h
## end gnulib module parse-datetime-tests
## begin gnulib module pathmax-tests
TESTS += test-pathmax
check_PROGRAMS += test-pathmax
EXTRA_DIST += test-pathmax.c
## end gnulib module pathmax-tests
## begin gnulib module perror
if GL_COND_OBJ_PERROR
libtests_a_SOURCES += perror.c
endif
## end gnulib module perror
## begin gnulib module perror-tests
TESTS += test-perror.sh test-perror2
check_PROGRAMS += test-perror test-perror2
EXTRA_DIST += macros.h signature.h test-perror.c test-perror2.c test-perror.sh
## end gnulib module perror-tests
## begin gnulib module physmem-tests
TESTS += test-physmem
check_PROGRAMS += test-physmem
EXTRA_DIST += test-physmem.c macros.h
## end gnulib module physmem-tests
## begin gnulib module pipe-posix-tests
TESTS += test-pipe
check_PROGRAMS += test-pipe
EXTRA_DIST += test-pipe.c signature.h macros.h
## end gnulib module pipe-posix-tests
## begin gnulib module pipe2-tests
TESTS += test-pipe2
check_PROGRAMS += test-pipe2
test_pipe2_LDADD = $(LDADD) $(LIBSOCKET)
EXTRA_DIST += test-pipe2.c signature.h macros.h
## end gnulib module pipe2-tests
## begin gnulib module posix_memalign-tests
TESTS += test-posix_memalign
check_PROGRAMS += test-posix_memalign
EXTRA_DIST += test-posix_memalign.c macros.h
## end gnulib module posix_memalign-tests
## begin gnulib module posix_spawn-tests
DEFS += -DEXEEXT=\"@EXEEXT@\"
TESTS += \
test-posix_spawn-open1 \
test-posix_spawn-open2 \
test-posix_spawn-inherit0 \
test-posix_spawn-inherit1 \
test-posix_spawn-script
check_PROGRAMS += \
test-posix_spawn-open1 \
test-posix_spawn-open2 \
test-posix_spawn-inherit0 \
test-posix_spawn-inherit1 \
test-posix_spawn-script
test_posix_spawn_script_CPPFLAGS = $(AM_CPPFLAGS) -DSRCDIR=\"$(srcdir)/\"
EXTRA_DIST += test-posix_spawn-open1.c test-posix_spawn-open2.c test-posix_spawn-inherit0.c test-posix_spawn-inherit1.c test-posix_spawn-script.c executable-script executable-script.sh executable-shell-script signature.h macros.h
## end gnulib module posix_spawn-tests
## begin gnulib module posix_spawn_file_actions_addclose-tests
TESTS += test-posix_spawn_file_actions_addclose
check_PROGRAMS += test-posix_spawn_file_actions_addclose
EXTRA_DIST += test-posix_spawn_file_actions_addclose.c signature.h macros.h
## end gnulib module posix_spawn_file_actions_addclose-tests
## begin gnulib module posix_spawn_file_actions_adddup2-tests
TESTS += test-posix_spawn_file_actions_adddup2
check_PROGRAMS += test-posix_spawn_file_actions_adddup2
EXTRA_DIST += test-posix_spawn_file_actions_adddup2.c signature.h macros.h
## end gnulib module posix_spawn_file_actions_adddup2-tests
## begin gnulib module posix_spawn_file_actions_addopen
if GL_COND_OBJ_SPAWN_FACTION_ADDOPEN
libtests_a_SOURCES += spawn_faction_addopen.c
endif
EXTRA_DIST += spawn_int.h
## end gnulib module posix_spawn_file_actions_addopen
## begin gnulib module posix_spawn_file_actions_addopen-tests
TESTS += test-posix_spawn_file_actions_addopen
check_PROGRAMS += test-posix_spawn_file_actions_addopen
EXTRA_DIST += test-posix_spawn_file_actions_addopen.c signature.h macros.h
## end gnulib module posix_spawn_file_actions_addopen-tests
## begin gnulib module posix_spawnattr_setsigmask
if GL_COND_OBJ_SPAWNATTR_SETSIGMASK
libtests_a_SOURCES += spawnattr_setsigmask.c
endif
## end gnulib module posix_spawnattr_setsigmask
## begin gnulib module posix_spawnp-tests
TESTS += \
test-posix_spawn-dup2-stdout \
test-posix_spawn-dup2-stdin \
test-posix_spawnp-script \
test-posix_spawnp-vfork
check_PROGRAMS += \
test-posix_spawn-dup2-stdout \
test-posix_spawn-dup2-stdin \
test-posix_spawnp-script \
test-posix_spawnp-vfork
BUILT_SOURCES += test-posix_spawn-dup2-stdout.sh
test-posix_spawn-dup2-stdout.sh: test-posix_spawn-dup2-stdout.in.sh
$(AM_V_GEN)cp $(srcdir)/test-posix_spawn-dup2-stdout.in.sh $@-t
$(AM_V_at)mv $@-t $@
MOSTLYCLEANFILES += test-posix_spawn-dup2-stdout.sh test-posix_spawn-dup2-stdout.sh-t
BUILT_SOURCES += test-posix_spawn-dup2-stdin.sh
test-posix_spawn-dup2-stdin.sh: test-posix_spawn-dup2-stdin.in.sh
$(AM_V_GEN)cp $(srcdir)/test-posix_spawn-dup2-stdin.in.sh $@-t
$(AM_V_at)mv $@-t $@
MOSTLYCLEANFILES += test-posix_spawn-dup2-stdin.sh test-posix_spawn-dup2-stdin.sh-t
test_posix_spawnp_script_CPPFLAGS = $(AM_CPPFLAGS) -DSRCDIR=\"$(srcdir)/\"
EXTRA_DIST += test-posix_spawn-dup2-stdout.c test-posix_spawn-dup2-stdout.in.sh test-posix_spawn-dup2-stdin.c test-posix_spawn-dup2-stdin.in.sh test-posix_spawnp-script.c test-posix_spawnp-vfork.c executable-script executable-script.sh executable-shell-script signature.h macros.h
## end gnulib module posix_spawnp-tests
## begin gnulib module posixtm-tests
TESTS += test-posixtm
check_PROGRAMS += test-posixtm
EXTRA_DIST += test-posixtm.c macros.h
## end gnulib module posixtm-tests
## begin gnulib module printf-frexp-tests
TESTS += test-printf-frexp
check_PROGRAMS += test-printf-frexp
EXTRA_DIST += test-printf-frexp.c macros.h
## end gnulib module printf-frexp-tests
## begin gnulib module printf-frexpl-tests
TESTS += test-printf-frexpl
check_PROGRAMS += test-printf-frexpl
EXTRA_DIST += test-printf-frexpl.c macros.h
## end gnulib module printf-frexpl-tests
## begin gnulib module priv-set-tests
TESTS += test-priv-set
check_PROGRAMS += test-priv-set
EXTRA_DIST += test-priv-set.c macros.h
## end gnulib module priv-set-tests
## begin gnulib module pselect-tests
TESTS += test-pselect
check_PROGRAMS += test-pselect
test_pselect_LDADD = $(LDADD) @SELECT_LIB@ @LIBSOCKET@ @PTHREAD_SIGMASK_LIB@ $(INET_PTON_LIB)
EXTRA_DIST += test-pselect.c test-select.h macros.h signature.h
## end gnulib module pselect-tests
## begin gnulib module pthread-cond-tests
TESTS += test-pthread-cond
check_PROGRAMS += test-pthread-cond
test_pthread_cond_LDADD = $(LDADD) @LIBPMULTITHREAD@ @SCHED_YIELD_LIB@
EXTRA_DIST += test-pthread-cond.c virtualbox.h macros.h
## end gnulib module pthread-cond-tests
## begin gnulib module pthread-h-tests
TESTS += test-pthread
check_PROGRAMS += test-pthread
EXTRA_DIST += test-pthread.c
## end gnulib module pthread-h-tests
## begin gnulib module pthread-mutex-tests
TESTS += test-pthread-mutex test-pthread-mutex-type
check_PROGRAMS += test-pthread-mutex test-pthread-mutex-type
test_pthread_mutex_LDADD = $(LDADD) @LIBPMULTITHREAD@ @SCHED_YIELD_LIB@ @LIB_SEMAPHORE@
# If we were to link test-pthread-mutex-type only with @LIBPTHREAD@ instead of
# @LIBPMULTITHREAD@, this test would fail on FreeBSD and NetBSD.
test_pthread_mutex_type_LDADD = $(LDADD) @LIBPMULTITHREAD@
EXTRA_DIST += test-pthread-mutex.c test-pthread-mutex-type.c atomic-int-posix.h macros.h
## end gnulib module pthread-mutex-tests
## begin gnulib module pthread-once-tests
TESTS += test-pthread-once1 test-pthread-once2
check_PROGRAMS += test-pthread-once1 test-pthread-once2
test_pthread_once1_LDADD = $(LDADD) @PTHREAD_ONCE_LIB@
test_pthread_once2_LDADD = $(LDADD) @LIBPMULTITHREAD@ @SCHED_YIELD_LIB@
EXTRA_DIST += test-pthread-once1.c test-pthread-once2.c macros.h
## end gnulib module pthread-once-tests
## begin gnulib module pthread-rwlock
if GL_COND_OBJ_PTHREAD_RWLOCK
libtests_a_SOURCES += pthread-rwlock.c
endif
## end gnulib module pthread-rwlock
## begin gnulib module pthread-rwlock-tests
TESTS += test-pthread-rwlock
check_PROGRAMS += test-pthread-rwlock
test_pthread_rwlock_LDADD = $(LDADD) @LIBPMULTITHREAD@ @SCHED_YIELD_LIB@ @LIB_SEMAPHORE@
EXTRA_DIST += test-pthread-rwlock.c atomic-int-posix.h macros.h
## end gnulib module pthread-rwlock-tests
## begin gnulib module pthread-thread-tests
TESTS += test-pthread-thread
check_PROGRAMS += test-pthread-thread
test_pthread_thread_LDADD = $(LDADD) @LIBPMULTITHREAD@
EXTRA_DIST += test-pthread-thread.c macros.h
## end gnulib module pthread-thread-tests
## begin gnulib module pthread_sigmask-tests
# Work around https://gnats.netbsd.org/cgi-bin/query-pr-single.pl?number=57214
if !OS_IS_NETBSD
TESTS += test-pthread_sigmask1
endif
TESTS += test-pthread_sigmask2
check_PROGRAMS += test-pthread_sigmask1 test-pthread_sigmask2
test_pthread_sigmask1_LDADD = $(LDADD) @PTHREAD_SIGMASK_LIB@
test_pthread_sigmask2_LDADD = $(LDADD) @PTHREAD_SIGMASK_LIB@ @LIBMULTITHREAD@
EXTRA_DIST += test-pthread_sigmask1.c test-pthread_sigmask2.c signature.h virtualbox.h macros.h
## end gnulib module pthread_sigmask-tests
## begin gnulib module putenv-gnu-tests
TESTS += test-putenv
check_PROGRAMS += test-putenv
EXTRA_DIST += test-putenv.c macros.h signature.h
## end gnulib module putenv-gnu-tests
## begin gnulib module qsort_r-tests
TESTS += test-qsort_r
check_PROGRAMS += test-qsort_r
EXTRA_DIST += test-qsort_r.c
## end gnulib module qsort_r-tests
## begin gnulib module quotearg-simple-tests
TESTS += test-quotearg-simple
check_PROGRAMS += test-quotearg-simple
test_quotearg_simple_LDADD = $(LDADD) $(LIBUNISTRING) @LIBINTL@ $(MBRTOWC_LIB) $(LIBC32CONV)
EXTRA_DIST += test-quotearg-simple.c test-quotearg.h macros.h zerosize-ptr.h
## end gnulib module quotearg-simple-tests
## begin gnulib module raise-tests
TESTS += test-raise
check_PROGRAMS += test-raise
EXTRA_DIST += test-raise.c signature.h macros.h
## end gnulib module raise-tests
## begin gnulib module random
if GL_COND_OBJ_RANDOM
libtests_a_SOURCES += random.c
endif
## end gnulib module random
## begin gnulib module random-tests
TESTS += test-random test-random-mt
check_PROGRAMS += test-random test-random-mt
test_random_mt_LDADD = $(LDADD) $(LIBINTL) $(LIBMULTITHREAD) $(YIELD_LIB)
EXTRA_DIST += test-random.c test-random-mt.c signature.h macros.h
## end gnulib module random-tests
## begin gnulib module random_r
if GL_COND_OBJ_RANDOM_R
libtests_a_SOURCES += random_r.c
endif
## end gnulib module random_r
## begin gnulib module random_r-tests
TESTS += test-random_r
check_PROGRAMS += test-random_r
EXTRA_DIST += test-random_r.c signature.h macros.h
## end gnulib module random_r-tests
## begin gnulib module randread-tests
TESTS += test-rand-isaac
check_PROGRAMS += test-rand-isaac
EXTRA_DIST += test-rand-isaac.c macros.h
## end gnulib module randread-tests
## begin gnulib module rawmemchr-tests
TESTS += test-rawmemchr
check_PROGRAMS += test-rawmemchr
EXTRA_DIST += test-rawmemchr.c zerosize-ptr.h signature.h macros.h
## end gnulib module rawmemchr-tests
## begin gnulib module read-file-tests
TESTS += test-read-file
check_PROGRAMS += test-read-file
EXTRA_DIST += test-read-file.c macros.h
## end gnulib module read-file-tests
## begin gnulib module read-tests
TESTS += test-read
check_PROGRAMS += test-read
EXTRA_DIST += test-read.c signature.h macros.h
## end gnulib module read-tests
## begin gnulib module readlink-tests
TESTS += test-readlink
check_PROGRAMS += test-readlink
EXTRA_DIST += test-readlink.h test-readlink.c signature.h macros.h
## end gnulib module readlink-tests
## begin gnulib module readlinkat-tests
TESTS += test-readlinkat
check_PROGRAMS += test-readlinkat
test_readlinkat_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-readlink.h test-readlinkat.c signature.h macros.h
## end gnulib module readlinkat-tests
## begin gnulib module readtokens-tests
TESTS += test-readtokens.sh
check_PROGRAMS += test-readtokens
test_readtokens_LDADD = $(LDADD) $(LIBUNISTRING) @LIBINTL@ $(MBRTOWC_LIB) $(LIBC32CONV)
EXTRA_DIST += macros.h test-readtokens.c test-readtokens.sh
## end gnulib module readtokens-tests
## begin gnulib module readutmp-tests
TESTS += test-readutmp
check_PROGRAMS += test-readutmp
test_readutmp_LDADD = $(LDADD) @READUTMP_LIB@ $(LIBINTL)
EXTRA_DIST += test-readutmp.c macros.h
## end gnulib module readutmp-tests
## begin gnulib module realloc-posix-tests
TESTS += test-realloc-posix
check_PROGRAMS += test-realloc-posix
EXTRA_DIST += test-realloc-posix.c macros.h
## end gnulib module realloc-posix-tests
## begin gnulib module reallocarray-tests
TESTS += test-reallocarray
check_PROGRAMS += test-reallocarray
EXTRA_DIST += test-reallocarray.c signature.h macros.h
## end gnulib module reallocarray-tests
## begin gnulib module regex-tests
TESTS += test-regex
check_PROGRAMS += test-regex
test_regex_LDADD = $(LDADD) $(SETLOCALE_LIB) $(MBRTOWC_LIB) @LIBINTL@ $(LIBTHREAD)
EXTRA_DIST += test-regex.c macros.h
## end gnulib module regex-tests
## begin gnulib module remove-tests
TESTS += test-remove
check_PROGRAMS += test-remove
EXTRA_DIST += test-remove.c signature.h macros.h
## end gnulib module remove-tests
## begin gnulib module rename-tests
TESTS += test-rename
check_PROGRAMS += test-rename
test_rename_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-rename.h test-rename.c signature.h macros.h
## end gnulib module rename-tests
## begin gnulib module renameat-tests
TESTS += test-renameat
check_PROGRAMS += test-renameat
test_renameat_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-rename.h test-renameat.c signature.h macros.h
## end gnulib module renameat-tests
## begin gnulib module renameatu-tests
TESTS += test-renameatu
check_PROGRAMS += test-renameatu
test_renameatu_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-rename.h test-renameatu.c signature.h macros.h
## end gnulib module renameatu-tests
## begin gnulib module rmdir-tests
TESTS += test-rmdir
check_PROGRAMS += test-rmdir
EXTRA_DIST += test-rmdir.h test-rmdir.c signature.h macros.h
## end gnulib module rmdir-tests
## begin gnulib module savedir-tests
TESTS += test-savedir
check_PROGRAMS += test-savedir
test_savedir_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-savedir.c macros.h
## end gnulib module savedir-tests
## begin gnulib module sched-h-tests
TESTS += test-sched-h
check_PROGRAMS += test-sched-h
EXTRA_DIST += test-sched-h.c
## end gnulib module sched-h-tests
## begin gnulib module sched_yield
if GL_COND_OBJ_SCHED_YIELD
libtests_a_SOURCES += sched_yield.c
endif
## end gnulib module sched_yield
## begin gnulib module select-tests
TESTS += test-select test-select-in.sh test-select-out.sh
# test-select-stdin has to be run by hand.
check_PROGRAMS += test-select test-select-fd test-select-stdin
test_select_LDADD = $(LDADD) @SELECT_LIB@ @LIBSOCKET@ $(INET_PTON_LIB)
test_select_fd_LDADD = $(LDADD) @SELECT_LIB@
test_select_stdin_LDADD = $(LDADD) @SELECT_LIB@
EXTRA_DIST += macros.h signature.h test-select.c test-select.h test-select-fd.c test-select-in.sh test-select-out.sh test-select-stdin.c
## end gnulib module select-tests
## begin gnulib module selinux-h-tests
TESTS += \
test-selinux-context-h \
test-selinux-label-h \
test-selinux-selinux-h
check_PROGRAMS += \
test-selinux-context-h \
test-selinux-label-h \
test-selinux-selinux-h
test_selinux_context_h_LDADD = $(LDADD) @LIB_SELINUX@
test_selinux_label_h_LDADD = $(LDADD) @LIB_SELINUX@
test_selinux_selinux_h_LDADD = $(LDADD) @LIB_SELINUX@
EXTRA_DIST += test-selinux-context-h.c test-selinux-label-h.c test-selinux-selinux-h.c
## end gnulib module selinux-h-tests
## begin gnulib module servent-tests
TESTS += test-servent
check_PROGRAMS += test-servent
test_servent_LDADD = $(LDADD) $(SERVENT_LIB) $(HTONL_LIB)
EXTRA_DIST += test-servent.c signature.h
## end gnulib module servent-tests
## begin gnulib module setenv-tests
TESTS += test-setenv
check_PROGRAMS += test-setenv
EXTRA_DIST += test-setenv.c signature.h macros.h
## end gnulib module setenv-tests
## begin gnulib module setlocale
if GL_COND_OBJ_SETLOCALE
libtests_a_SOURCES += setlocale.c
endif
## end gnulib module setlocale
## begin gnulib module setlocale-null-tests
TESTS += \
test-setlocale_null \
test-setlocale_null-mt-one \
test-setlocale_null-mt-all
check_PROGRAMS += \
test-setlocale_null \
test-setlocale_null-mt-one \
test-setlocale_null-mt-all
test_setlocale_null_LDADD = $(LDADD) @SETLOCALE_NULL_LIB@
test_setlocale_null_mt_one_LDADD = $(LDADD) @SETLOCALE_NULL_LIB@ $(LIBMULTITHREAD) $(NANOSLEEP_LIB)
test_setlocale_null_mt_all_LDADD = $(LDADD) @SETLOCALE_NULL_LIB@ $(LIBMULTITHREAD) $(NANOSLEEP_LIB)
EXTRA_DIST += test-setlocale_null.c test-setlocale_null-mt-one.c test-setlocale_null-mt-all.c
## end gnulib module setlocale-null-tests
## begin gnulib module setlocale-null-unlocked-tests
TESTS += test-setlocale_null-unlocked
check_PROGRAMS += test-setlocale_null-unlocked
EXTRA_DIST += test-setlocale_null-unlocked.c
## end gnulib module setlocale-null-unlocked-tests
## begin gnulib module setlocale-tests
TESTS += test-setlocale1.sh test-setlocale2.sh test-setlocale-w32
TESTS_ENVIRONMENT += \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_JA='@LOCALE_JA@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-setlocale1 test-setlocale2 test-setlocale-w32
test_setlocale1_LDADD = $(LDADD) @SETLOCALE_LIB@
test_setlocale2_LDADD = $(LDADD) @SETLOCALE_LIB@
test_setlocale_w32_LDADD = $(LDADD) @SETLOCALE_LIB@
if OS_IS_NATIVE_WINDOWS
TESTS += test-setlocale-w32utf8.sh
noinst_PROGRAMS += test-setlocale-w32utf8
test_setlocale_w32utf8_LDADD = $(LDADD) test-setlocale-windows-utf8.res $(SETLOCALE_LIB)
test-setlocale-windows-utf8.res : $(srcdir)/windows-utf8.rc
$(WINDRES) -i $(srcdir)/windows-utf8.rc -o test-setlocale-windows-utf8.res --output-format=coff
MOSTLYCLEANFILES += test-setlocale-windows-utf8.res
endif
EXTRA_DIST += test-setlocale1.sh test-setlocale1.c test-setlocale2.sh test-setlocale2.c test-setlocale-w32.c test-setlocale-w32utf8.sh test-setlocale-w32utf8.c windows-utf8.rc windows-utf8.manifest signature.h macros.h
## end gnulib module setlocale-tests
## begin gnulib module setsockopt
if GL_COND_OBJ_SETSOCKOPT
libtests_a_SOURCES += setsockopt.c
endif
EXTRA_DIST += w32sock.h
## end gnulib module setsockopt
## begin gnulib module setsockopt-tests
TESTS += test-setsockopt
check_PROGRAMS += test-setsockopt
test_setsockopt_LDADD = $(LDADD) @LIBSOCKET@
EXTRA_DIST += test-setsockopt.c signature.h macros.h
## end gnulib module setsockopt-tests
## begin gnulib module sig2str-tests
TESTS += test-sig2str
check_PROGRAMS += test-sig2str
EXTRA_DIST += test-sig2str.c signature.h macros.h
## end gnulib module sig2str-tests
## begin gnulib module sigaction-tests
TESTS += test-sigaction
check_PROGRAMS += test-sigaction
EXTRA_DIST += test-sigaction.c signature.h macros.h
## end gnulib module sigaction-tests
## begin gnulib module signal-h-tests
TESTS += test-signal-h
check_PROGRAMS += test-signal-h
EXTRA_DIST += test-signal-h.c
## end gnulib module signal-h-tests
## begin gnulib module signbit-no-c++-tests
TESTS += test-signbit
check_PROGRAMS += test-signbit
EXTRA_DIST += test-signbit.c minus-zero.h infinity.h macros.h
## end gnulib module signbit-no-c++-tests
## begin gnulib module signed-nan
libtests_a_SOURCES += signed-nan.h
## end gnulib module signed-nan
## begin gnulib module signed-snan
libtests_a_SOURCES += signed-snan.h
## end gnulib module signed-snan
## begin gnulib module sigprocmask-tests
# Work around https://gnats.netbsd.org/cgi-bin/query-pr-single.pl?number=57213
if !OS_IS_NETBSD
TESTS += test-sigprocmask
endif
check_PROGRAMS += test-sigprocmask
EXTRA_DIST += test-sigprocmask.c signature.h virtualbox.h macros.h
## end gnulib module sigprocmask-tests
## begin gnulib module sleep
if GL_COND_OBJ_SLEEP
libtests_a_SOURCES += sleep.c
endif
## end gnulib module sleep
## begin gnulib module sleep-tests
TESTS += test-sleep
check_PROGRAMS += test-sleep
EXTRA_DIST += test-sleep.c signature.h macros.h
## end gnulib module sleep-tests
## begin gnulib module snan
libtests_a_SOURCES += snan.h
## end gnulib module snan
## begin gnulib module snippet/_Noreturn
# Because this Makefile snippet defines a variable used by other
# gnulib Makefile snippets, it must be present in all makefiles that
# need it. This is ensured by the applicability 'all' defined above.
_NORETURN_H=$(srcdir)/_Noreturn.h
EXTRA_DIST += _Noreturn.h
## end gnulib module snippet/_Noreturn
## begin gnulib module snippet/arg-nonnull
# Because this Makefile snippet defines a variable used by other
# gnulib Makefile snippets, it must be present in all makefiles that
# need it. This is ensured by the applicability 'all' defined above.
ARG_NONNULL_H=$(srcdir)/arg-nonnull.h
EXTRA_DIST += arg-nonnull.h
## end gnulib module snippet/arg-nonnull
## begin gnulib module snippet/c++defs
# Because this Makefile snippet defines a variable used by other
# gnulib Makefile snippets, it must be present in all makefiles that
# need it. This is ensured by the applicability 'all' defined above.
CXXDEFS_H=$(srcdir)/c++defs.h
EXTRA_DIST += c++defs.h
## end gnulib module snippet/c++defs
## begin gnulib module snippet/warn-on-use
# Because this Makefile snippet defines a variable used by other
# gnulib Makefile snippets, it must be present in all makefiles that
# need it. This is ensured by the applicability 'all' defined above.
WARN_ON_USE_H=$(srcdir)/warn-on-use.h
EXTRA_DIST += warn-on-use.h
## end gnulib module snippet/warn-on-use
## begin gnulib module snprintf-tests
TESTS += test-snprintf
check_PROGRAMS += test-snprintf
EXTRA_DIST += test-snprintf.c signature.h macros.h
## end gnulib module snprintf-tests
## begin gnulib module socket
if GL_COND_OBJ_SOCKET
libtests_a_SOURCES += socket.c
endif
EXTRA_DIST += w32sock.h
## end gnulib module socket
## begin gnulib module sockets-tests
TESTS += test-sockets
check_PROGRAMS += test-sockets
test_sockets_LDADD = $(LDADD) @LIBSOCKET@
EXTRA_DIST += test-sockets.c
## end gnulib module sockets-tests
## begin gnulib module spawn-h-tests
TESTS += test-spawn-h
check_PROGRAMS += test-spawn-h
EXTRA_DIST += test-spawn-h.c
## end gnulib module spawn-h-tests
## begin gnulib module stat-tests
TESTS += test-stat
check_PROGRAMS += test-stat
test_stat_LDADD = $(LDADD) $(LIBINTL)
EXTRA_DIST += test-stat.h test-stat.c signature.h macros.h
## end gnulib module stat-tests
## begin gnulib module stat-time-tests
TESTS += test-stat-time
check_PROGRAMS += test-stat-time
test_stat_time_LDADD = $(LDADD) $(NANOSLEEP_LIB) @LIBINTL@
EXTRA_DIST += test-stat-time.c macros.h nap.h
## end gnulib module stat-time-tests
## begin gnulib module stdbit-h-tests
TESTS += test-stdbit-h
check_PROGRAMS += test-stdbit-h
EXTRA_DIST += test-stdbit-h.c macros.h
## end gnulib module stdbit-h-tests
## begin gnulib module stdc_bit_width-tests
TESTS += test-stdc_bit_width
check_PROGRAMS += test-stdc_bit_width
test_stdc_bit_width_SOURCES = from-glibc/tst-stdc_bit_width.c
test_stdc_bit_width_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir)/from-glibc -DGNULIB_TEST_STDBIT
EXTRA_DIST += from-glibc/tst-stdc_bit_width.c from-glibc/tst-stdbit.h from-glibc/support/test-driver.c macros.h
## end gnulib module stdc_bit_width-tests
## begin gnulib module stdc_leading_zeros-tests
TESTS += test-stdc_leading_zeros
check_PROGRAMS += test-stdc_leading_zeros
test_stdc_leading_zeros_SOURCES = from-glibc/tst-stdc_leading_zeros.c
test_stdc_leading_zeros_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir)/from-glibc -DGNULIB_TEST_STDBIT
EXTRA_DIST += from-glibc/tst-stdc_leading_zeros.c from-glibc/tst-stdbit.h from-glibc/support/test-driver.c macros.h
## end gnulib module stdc_leading_zeros-tests
## begin gnulib module stdc_trailing_zeros-tests
TESTS += test-stdc_trailing_zeros
check_PROGRAMS += test-stdc_trailing_zeros
test_stdc_trailing_zeros_SOURCES = from-glibc/tst-stdc_trailing_zeros.c
test_stdc_trailing_zeros_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir)/from-glibc -DGNULIB_TEST_STDBIT
EXTRA_DIST += from-glibc/tst-stdc_trailing_zeros.c from-glibc/tst-stdbit.h from-glibc/support/test-driver.c macros.h
## end gnulib module stdc_trailing_zeros-tests
## begin gnulib module stdckdint-h-tests
TESTS += test-stdckdint-h
check_PROGRAMS += test-stdckdint-h
EXTRA_DIST += macros.h test-intprops.c test-stdckdint-h.c
## end gnulib module stdckdint-h-tests
## begin gnulib module stdcountof-h-tests
TESTS += test-stdcountof-h
check_PROGRAMS += test-stdcountof-h
EXTRA_DIST += test-stdcountof-h.c macros.h
## end gnulib module stdcountof-h-tests
## begin gnulib module stddef-h-tests
TESTS += test-stddef-h
check_PROGRAMS += test-stddef-h
EXTRA_DIST += test-stddef-h.c
## end gnulib module stddef-h-tests
## begin gnulib module stdint-h-tests
TESTS += test-stdint-h
check_PROGRAMS += test-stdint-h
EXTRA_DIST += test-stdint-h.c
## end gnulib module stdint-h-tests
## begin gnulib module stdio-h-tests
TESTS += test-stdio-h
check_PROGRAMS += test-stdio-h
EXTRA_DIST += test-stdio-h.c macros.h
## end gnulib module stdio-h-tests
## begin gnulib module stdlib-h-tests
TESTS += test-stdlib-h
check_PROGRAMS += test-stdlib-h
EXTRA_DIST += test-stdlib-h.c test-sys_wait-h.h
## end gnulib module stdlib-h-tests
## begin gnulib module str_endswith-tests
TESTS += test-str_endswith
check_PROGRAMS += test-str_endswith
EXTRA_DIST += test-str_endswith.c macros.h
## end gnulib module str_endswith-tests
## begin gnulib module str_startswith
libtests_a_SOURCES += str_startswith.c
## end gnulib module str_startswith
## begin gnulib module str_startswith-tests
TESTS += test-str_startswith
check_PROGRAMS += test-str_startswith
EXTRA_DIST += test-str_startswith.c macros.h
## end gnulib module str_startswith-tests
## begin gnulib module strchrnul-tests
TESTS += test-strchrnul
check_PROGRAMS += test-strchrnul
EXTRA_DIST += test-strchrnul.c signature.h macros.h
## end gnulib module strchrnul-tests
## begin gnulib module strerror-tests
TESTS += test-strerror
check_PROGRAMS += test-strerror
EXTRA_DIST += test-strerror.c signature.h macros.h
## end gnulib module strerror-tests
## begin gnulib module strerror_r-posix
EXTRA_DIST += strerror_r.c
EXTRA_libtests_a_SOURCES += strerror_r.c
## end gnulib module strerror_r-posix
## begin gnulib module strerror_r-posix-tests
TESTS += test-strerror_r
check_PROGRAMS += test-strerror_r
EXTRA_DIST += test-strerror_r.c signature.h macros.h
## end gnulib module strerror_r-posix-tests
## begin gnulib module strftime-fixes
if GL_COND_OBJ_STRFTIME_FIXES
libtests_a_SOURCES += strftime-fixes.c
endif
## end gnulib module strftime-fixes
## begin gnulib module string-h-tests
TESTS += test-string-h
check_PROGRAMS += test-string-h
EXTRA_DIST += test-string-h.c
## end gnulib module string-h-tests
## begin gnulib module strncpy-tests
TESTS += test-strncpy
check_PROGRAMS += test-strncpy
EXTRA_DIST += test-strncpy.c zerosize-ptr.h macros.h
## end gnulib module strncpy-tests
## begin gnulib module strnlen-tests
TESTS += test-strnlen
check_PROGRAMS += test-strnlen
EXTRA_DIST += test-strnlen.c zerosize-ptr.h signature.h macros.h
## end gnulib module strnlen-tests
## begin gnulib module strsignal-tests
TESTS += test-strsignal
check_PROGRAMS += test-strsignal
test_strsignal_LDADD = $(LDADD) @LIBINTL@ $(LIBTHREAD)
EXTRA_DIST += test-strsignal.c signature.h macros.h
## end gnulib module strsignal-tests
## begin gnulib module strtod-tests
TESTS += test-strtod
check_PROGRAMS += test-strtod
TESTS += test-strtod1.sh
TESTS_ENVIRONMENT += \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LC_NUMERIC_IMPLEMENTED='@LC_NUMERIC_IMPLEMENTED@'
check_PROGRAMS += test-strtod1
test_strtod1_LDADD = $(LDADD) $(SETLOCALE_LIB)
EXTRA_DIST += test-strtod.c test-strtod.h test-strtod1.sh test-strtod1.c signature.h minus-zero.h macros.h
## end gnulib module strtod-tests
## begin gnulib module strtoimax-tests
TESTS += test-strtoimax
check_PROGRAMS += test-strtoimax
EXTRA_DIST += test-strtoimax.c signature.h macros.h
## end gnulib module strtoimax-tests
## begin gnulib module strtold-tests
TESTS += test-strtold
check_PROGRAMS += test-strtold
TESTS += test-strtold1.sh
TESTS_ENVIRONMENT += \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LC_NUMERIC_IMPLEMENTED='@LC_NUMERIC_IMPLEMENTED@'
check_PROGRAMS += test-strtold1
test_strtold1_LDADD = $(LDADD) $(SETLOCALE_LIB)
EXTRA_DIST += test-strtold.c test-strtold.h test-strtold1.sh test-strtold1.c signature.h minus-zero.h macros.h
## end gnulib module strtold-tests
## begin gnulib module strtoll-tests
TESTS += test-strtoll
check_PROGRAMS += test-strtoll
EXTRA_DIST += test-strtoll.c signature.h macros.h
## end gnulib module strtoll-tests
## begin gnulib module strtoull-tests
TESTS += test-strtoull
check_PROGRAMS += test-strtoull
EXTRA_DIST += test-strtoull.c signature.h macros.h
## end gnulib module strtoull-tests
## begin gnulib module strtoumax-tests
TESTS += test-strtoumax
check_PROGRAMS += test-strtoumax
EXTRA_DIST += test-strtoumax.c signature.h macros.h
## end gnulib module strtoumax-tests
## begin gnulib module symlink-tests
TESTS += test-symlink
check_PROGRAMS += test-symlink
EXTRA_DIST += test-symlink.h test-symlink.c signature.h macros.h
## end gnulib module symlink-tests
## begin gnulib module symlinkat-tests
TESTS += test-symlinkat
check_PROGRAMS += test-symlinkat
test_symlinkat_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-symlink.h test-symlinkat.c signature.h macros.h
## end gnulib module symlinkat-tests
## begin gnulib module sys_ioctl-h-tests
TESTS += test-sys_ioctl-h
check_PROGRAMS += test-sys_ioctl-h
EXTRA_DIST += test-sys_ioctl-h.c
## end gnulib module sys_ioctl-h-tests
## begin gnulib module sys_random-h-tests
TESTS += test-sys_random-h
check_PROGRAMS += test-sys_random-h
EXTRA_DIST += test-sys_random-h.c
## end gnulib module sys_random-h-tests
## begin gnulib module sys_resource-h-tests
TESTS += test-sys_resource-h
check_PROGRAMS += test-sys_resource-h
EXTRA_DIST += test-sys_resource-h.c
## end gnulib module sys_resource-h-tests
## begin gnulib module sys_select-h-tests
TESTS += test-sys_select-h
check_PROGRAMS += test-sys_select-h
EXTRA_DIST += test-sys_select-h.c signature.h
## end gnulib module sys_select-h-tests
## begin gnulib module sys_socket-h-tests
TESTS += test-sys_socket-h
check_PROGRAMS += test-sys_socket-h
EXTRA_DIST += test-sys_socket-h.c macros.h
## end gnulib module sys_socket-h-tests
## begin gnulib module sys_stat-h-tests
TESTS += test-sys_stat-h
check_PROGRAMS += test-sys_stat-h
EXTRA_DIST += test-sys_stat-h.c
## end gnulib module sys_stat-h-tests
## begin gnulib module sys_time-h-tests
TESTS += test-sys_time-h
check_PROGRAMS += test-sys_time-h
EXTRA_DIST += test-sys_time-h.c
## end gnulib module sys_time-h-tests
## begin gnulib module sys_types-h-tests
TESTS += test-sys_types-h
check_PROGRAMS += test-sys_types-h
EXTRA_DIST += test-sys_types-h.c
## end gnulib module sys_types-h-tests
## begin gnulib module sys_uio-h-tests
TESTS += test-sys_uio-h
check_PROGRAMS += test-sys_uio-h
EXTRA_DIST += test-sys_uio-h.c
## end gnulib module sys_uio-h-tests
## begin gnulib module sys_utsname-h-tests
TESTS += test-sys_utsname-h
check_PROGRAMS += test-sys_utsname-h
EXTRA_DIST += test-sys_utsname-h.c
## end gnulib module sys_utsname-h-tests
## begin gnulib module sys_wait-h-tests
TESTS += test-sys_wait-h
check_PROGRAMS += test-sys_wait-h
EXTRA_DIST += test-sys_wait-h.c test-sys_wait-h.h
## end gnulib module sys_wait-h-tests
## begin gnulib module termios-h-tests
TESTS += test-termios-h
check_PROGRAMS += test-termios-h
EXTRA_DIST += test-termios-h.c
## end gnulib module termios-h-tests
## begin gnulib module test-framework-sh
# The value of top_builddir, determined by Autoconf and stored in the Makefile,
# consists of n times '..', where n is the depth of the $(srcdir) under
# $(top_srcdir). Here we need one more '..', because the test framework
# (init.sh) arranges to run the tests in a subdirectory of depth 1 under the
# directory where the Makefile sits.
TESTS_ENVIRONMENT += top_builddir='../@top_builddir@'
## end gnulib module test-framework-sh
## begin gnulib module test-framework-sh-tests
TESTS += test-init.sh
EXTRA_DIST += init.sh
EXTRA_DIST += test-init.sh
## end gnulib module test-framework-sh-tests
## begin gnulib module thread
libtests_a_SOURCES += glthread/thread.h glthread/thread.c
## end gnulib module thread
## begin gnulib module thread-tests
TESTS += test-thread_self test-thread_create
check_PROGRAMS += test-thread_self test-thread_create
test_thread_self_LDADD = $(LDADD) @LIBTHREAD@
test_thread_create_LDADD = $(LDADD) @LIBMULTITHREAD@
EXTRA_DIST += test-thread_self.c test-thread_create.c macros.h
## end gnulib module thread-tests
## begin gnulib module time-h-tests
TESTS += test-time-h
check_PROGRAMS += test-time-h
EXTRA_DIST += test-time-h.c
## end gnulib module time-h-tests
## begin gnulib module time-tests
TESTS += test-time
check_PROGRAMS += test-time
EXTRA_DIST += test-time.c signature.h macros.h
## end gnulib module time-tests
## begin gnulib module time_r-tests
TESTS += \
test-gmtime_r test-gmtime_r-mt \
test-localtime_r test-localtime_r-mt
check_PROGRAMS += \
test-gmtime_r test-gmtime_r-mt \
test-localtime_r test-localtime_r-mt
test_gmtime_r_mt_LDADD = $(LDADD) $(LIBMULTITHREAD) $(NANOSLEEP_LIB)
test_localtime_r_mt_LDADD = $(LDADD) $(LIBMULTITHREAD) $(NANOSLEEP_LIB)
EXTRA_DIST += test-gmtime_r.c test-gmtime_r-mt.c test-localtime_r.c test-localtime_r-mt.c macros.h
## end gnulib module time_r-tests
## begin gnulib module timespec-add
libtests_a_SOURCES += timespec-add.c
## end gnulib module timespec-add
## begin gnulib module timespec-sub
libtests_a_SOURCES += timespec-sub.c
## end gnulib module timespec-sub
## begin gnulib module timespec-tests
TESTS += test-timespec
check_PROGRAMS += test-timespec
EXTRA_DIST += test-timespec.c macros.h
## end gnulib module timespec-tests
## begin gnulib module tls-tests
TESTS += test-tls
check_PROGRAMS += test-tls
test_tls_LDADD = $(LDADD) @LIBMULTITHREAD@ @YIELD_LIB@
EXTRA_DIST += test-tls.c
## end gnulib module tls-tests
## begin gnulib module tmpfile
if GL_COND_OBJ_TMPFILE
libtests_a_SOURCES += tmpfile.c
endif
## end gnulib module tmpfile
## begin gnulib module trunc
if GL_COND_OBJ_TRUNC
libtests_a_SOURCES += trunc.c
endif
## end gnulib module trunc
## begin gnulib module trunc-tests
TESTS += test-trunc1 test-trunc2
check_PROGRAMS += test-trunc1 test-trunc2
test_trunc1_LDADD = $(LDADD) @TRUNC_LIBM@
test_trunc2_LDADD = $(LDADD) @TRUNC_LIBM@
EXTRA_DIST += test-trunc1.c test-trunc2.c minus-zero.h infinity.h signature.h macros.h
## end gnulib module trunc-tests
## begin gnulib module truncl
if GL_COND_OBJ_TRUNCL
libtests_a_SOURCES += truncl.c
endif
EXTRA_DIST += trunc.c
EXTRA_libtests_a_SOURCES += trunc.c
## end gnulib module truncl
## begin gnulib module truncl-tests
TESTS += test-truncl
check_PROGRAMS += test-truncl
test_truncl_LDADD = $(LDADD) @TRUNCL_LIBM@
EXTRA_DIST += test-truncl.c minus-zero.h infinity.h signature.h macros.h
## end gnulib module truncl-tests
## begin gnulib module u64-tests
TESTS += test-u64
check_PROGRAMS += test-u64
EXTRA_DIST += test-u64.c
## end gnulib module u64-tests
## begin gnulib module uchar-h-tests
TESTS += test-uchar-h
check_PROGRAMS += test-uchar-h
EXTRA_DIST += test-uchar-h.c
## end gnulib module uchar-h-tests
## begin gnulib module uname-tests
TESTS += test-uname
check_PROGRAMS += test-uname
test_uname_LDADD = $(LDADD) @GETHOSTNAME_LIB@
EXTRA_DIST += test-uname.c signature.h macros.h
## end gnulib module uname-tests
## begin gnulib module unicase/base-tests
TESTS += test-unicase-h
check_PROGRAMS += test-unicase-h
test_unicase_h_SOURCES = unicase/test-unicase-h.c
test_unicase_h_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += unicase/test-unicase-h.c
## end gnulib module unicase/base-tests
## begin gnulib module unicase/tolower-tests
TESTS += test-uc_tolower
check_PROGRAMS += test-uc_tolower
test_uc_tolower_SOURCES = unicase/test-uc_tolower.c
test_uc_tolower_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += unicase/test-uc_tolower.c unicase/test-mapping-part1.h unicase/test-mapping-part2.h macros.h
## end gnulib module unicase/tolower-tests
## begin gnulib module unicodeio-tests
TESTS += test-unicodeio1.sh test-unicodeio2.sh test-unicodeio3.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-unicodeio
test_unicodeio_LDADD = $(LDADD) $(SETLOCALE_LIB) $(LIBUNISTRING) $(LIBICONV) $(LIBINTL)
EXTRA_DIST += test-unicodeio1.sh test-unicodeio2.sh test-unicodeio3.sh test-unicodeio.c macros.h
## end gnulib module unicodeio-tests
## begin gnulib module unictype/base-tests
TESTS += test-unictype-h
check_PROGRAMS += test-unictype-h
test_unictype_h_SOURCES = unictype/test-unictype-h.c
test_unictype_h_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += unictype/test-unictype-h.c
## end gnulib module unictype/base-tests
## begin gnulib module unictype/ctype-alnum-tests
TESTS += test-ctype_alnum
check_PROGRAMS += test-ctype_alnum
test_ctype_alnum_SOURCES = unictype/test-ctype_alnum.c
test_ctype_alnum_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += unictype/test-ctype_alnum.c unictype/test-predicate-part1.h unictype/test-predicate-part2.h macros.h
## end gnulib module unictype/ctype-alnum-tests
## begin gnulib module unictype/ctype-alpha-tests
TESTS += test-ctype_alpha
check_PROGRAMS += test-ctype_alpha
test_ctype_alpha_SOURCES = unictype/test-ctype_alpha.c
test_ctype_alpha_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += unictype/test-ctype_alpha.c unictype/test-predicate-part1.h unictype/test-predicate-part2.h macros.h
## end gnulib module unictype/ctype-alpha-tests
## begin gnulib module unictype/ctype-blank-tests
TESTS += test-ctype_blank
check_PROGRAMS += test-ctype_blank
test_ctype_blank_SOURCES = unictype/test-ctype_blank.c
test_ctype_blank_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += unictype/test-ctype_blank.c unictype/test-predicate-part1.h unictype/test-predicate-part2.h macros.h
## end gnulib module unictype/ctype-blank-tests
## begin gnulib module unictype/ctype-cntrl-tests
TESTS += test-ctype_cntrl
check_PROGRAMS += test-ctype_cntrl
test_ctype_cntrl_SOURCES = unictype/test-ctype_cntrl.c
test_ctype_cntrl_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += unictype/test-ctype_cntrl.c unictype/test-predicate-part1.h unictype/test-predicate-part2.h macros.h
## end gnulib module unictype/ctype-cntrl-tests
## begin gnulib module unictype/ctype-digit-tests
TESTS += test-ctype_digit
check_PROGRAMS += test-ctype_digit
test_ctype_digit_SOURCES = unictype/test-ctype_digit.c
test_ctype_digit_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += unictype/test-ctype_digit.c unictype/test-predicate-part1.h unictype/test-predicate-part2.h macros.h
## end gnulib module unictype/ctype-digit-tests
## begin gnulib module unictype/ctype-graph-tests
TESTS += test-ctype_graph
check_PROGRAMS += test-ctype_graph
test_ctype_graph_SOURCES = unictype/test-ctype_graph.c
test_ctype_graph_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += unictype/test-ctype_graph.c unictype/test-predicate-part1.h unictype/test-predicate-part2.h macros.h
## end gnulib module unictype/ctype-graph-tests
## begin gnulib module unictype/ctype-lower-tests
TESTS += test-ctype_lower
check_PROGRAMS += test-ctype_lower
test_ctype_lower_SOURCES = unictype/test-ctype_lower.c
test_ctype_lower_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += unictype/test-ctype_lower.c unictype/test-predicate-part1.h unictype/test-predicate-part2.h macros.h
## end gnulib module unictype/ctype-lower-tests
## begin gnulib module unictype/ctype-print-tests
TESTS += test-ctype_print
check_PROGRAMS += test-ctype_print
test_ctype_print_SOURCES = unictype/test-ctype_print.c
test_ctype_print_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += unictype/test-ctype_print.c unictype/test-predicate-part1.h unictype/test-predicate-part2.h macros.h
## end gnulib module unictype/ctype-print-tests
## begin gnulib module unictype/ctype-punct-tests
TESTS += test-ctype_punct
check_PROGRAMS += test-ctype_punct
test_ctype_punct_SOURCES = unictype/test-ctype_punct.c
test_ctype_punct_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += unictype/test-ctype_punct.c unictype/test-predicate-part1.h unictype/test-predicate-part2.h macros.h
## end gnulib module unictype/ctype-punct-tests
## begin gnulib module unictype/ctype-space-tests
TESTS += test-ctype_space
check_PROGRAMS += test-ctype_space
test_ctype_space_SOURCES = unictype/test-ctype_space.c
test_ctype_space_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += unictype/test-ctype_space.c unictype/test-predicate-part1.h unictype/test-predicate-part2.h macros.h
## end gnulib module unictype/ctype-space-tests
## begin gnulib module unictype/ctype-upper-tests
TESTS += test-ctype_upper
check_PROGRAMS += test-ctype_upper
test_ctype_upper_SOURCES = unictype/test-ctype_upper.c
test_ctype_upper_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += unictype/test-ctype_upper.c unictype/test-predicate-part1.h unictype/test-predicate-part2.h macros.h
## end gnulib module unictype/ctype-upper-tests
## begin gnulib module unictype/ctype-xdigit-tests
TESTS += test-ctype_xdigit
check_PROGRAMS += test-ctype_xdigit
test_ctype_xdigit_SOURCES = unictype/test-ctype_xdigit.c
test_ctype_xdigit_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += unictype/test-ctype_xdigit.c unictype/test-predicate-part1.h unictype/test-predicate-part2.h macros.h
## end gnulib module unictype/ctype-xdigit-tests
## begin gnulib module uninorm/base-tests
TESTS += test-uninorm-h
check_PROGRAMS += test-uninorm-h
test_uninorm_h_SOURCES = uninorm/test-uninorm-h.c
test_uninorm_h_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += uninorm/test-uninorm-h.c
## end gnulib module uninorm/base-tests
## begin gnulib module unistd-h-tests
TESTS += test-unistd-h
check_PROGRAMS += test-unistd-h
EXTRA_DIST += test-unistd-h.c
## end gnulib module unistd-h-tests
## begin gnulib module unistd-safer-tests
TESTS += test-dup-safer
check_PROGRAMS += test-dup-safer
EXTRA_DIST += test-dup-safer.c macros.h
## end gnulib module unistd-safer-tests
## begin gnulib module unistr/base-tests
TESTS += test-unistr-h
check_PROGRAMS += test-unistr-h
test_unistr_h_SOURCES = unistr/test-unistr-h.c
test_unistr_h_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += unistr/test-unistr-h.c
## end gnulib module unistr/base-tests
## begin gnulib module unistr/u32-chr-tests
TESTS += test-u32-chr
check_PROGRAMS += test-u32-chr
test_u32_chr_SOURCES = unistr/test-u32-chr.c
test_u32_chr_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += unistr/test-u32-chr.c unistr/test-chr.h zerosize-ptr.h macros.h
## end gnulib module unistr/u32-chr-tests
## begin gnulib module unistr/u32-cpy-tests
TESTS += test-u32-cpy
check_PROGRAMS += test-u32-cpy
test_u32_cpy_SOURCES = unistr/test-u32-cpy.c
test_u32_cpy_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += unistr/test-u32-cpy.c unistr/test-cpy.h macros.h
## end gnulib module unistr/u32-cpy-tests
## begin gnulib module unistr/u32-pcpy-tests
TESTS += test-u32-pcpy
check_PROGRAMS += test-u32-pcpy
test_u32_pcpy_SOURCES = unistr/test-u32-pcpy.c
test_u32_pcpy_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += unistr/test-u32-pcpy.c unistr/test-pcpy.h macros.h
## end gnulib module unistr/u32-pcpy-tests
## begin gnulib module unistr/u32-set
if LIBUNISTRING_COMPILE_UNISTR_U32_SET
libtests_a_SOURCES += unistr/u32-set.c
endif
EXTRA_DIST += unistr/u-set.h
## end gnulib module unistr/u32-set
## begin gnulib module unistr/u32-set-tests
TESTS += test-u32-set
check_PROGRAMS += test-u32-set
test_u32_set_SOURCES = unistr/test-u32-set.c
test_u32_set_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += unistr/test-u32-set.c unistr/test-set.h macros.h
## end gnulib module unistr/u32-set-tests
## begin gnulib module unistr/u32-strcat-tests
TESTS += test-u32-strcat
check_PROGRAMS += test-u32-strcat
test_u32_strcat_SOURCES = unistr/test-u32-strcat.c
test_u32_strcat_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += unistr/test-u32-strcat.c unistr/test-strcat.h macros.h
## end gnulib module unistr/u32-strcat-tests
## begin gnulib module unistr/u32-strlen-tests
TESTS += test-u32-strlen
check_PROGRAMS += test-u32-strlen
test_u32_strlen_SOURCES = unistr/test-u32-strlen.c
test_u32_strlen_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += unistr/test-u32-strlen.c macros.h
## end gnulib module unistr/u32-strlen-tests
## begin gnulib module unistr/u8-mbtoucr-tests
TESTS += test-u8-mbtoucr
check_PROGRAMS += test-u8-mbtoucr
test_u8_mbtoucr_SOURCES = unistr/test-u8-mbtoucr.c
test_u8_mbtoucr_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += unistr/test-u8-mbtoucr.c macros.h
## end gnulib module unistr/u8-mbtoucr-tests
## begin gnulib module unistr/u8-uctomb-tests
TESTS += test-u8-uctomb
check_PROGRAMS += test-u8-uctomb
test_u8_uctomb_SOURCES = unistr/test-u8-uctomb.c
test_u8_uctomb_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += unistr/test-u8-uctomb.c macros.h
## end gnulib module unistr/u8-uctomb-tests
## begin gnulib module uniwidth/base-tests
TESTS += test-uniwidth-h
check_PROGRAMS += test-uniwidth-h
test_uniwidth_h_SOURCES = uniwidth/test-uniwidth-h.c
test_uniwidth_h_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += uniwidth/test-uniwidth-h.c
## end gnulib module uniwidth/base-tests
## begin gnulib module uniwidth/width-tests
TESTS += test-uc_width uniwidth/test-uc_width2.sh
check_PROGRAMS += test-uc_width test-uc_width2
test_uc_width_SOURCES = uniwidth/test-uc_width.c
test_uc_width_LDADD = $(LDADD) $(LIBUNISTRING)
test_uc_width2_SOURCES = uniwidth/test-uc_width2.c
test_uc_width2_LDADD = $(LDADD) $(LIBUNISTRING)
EXTRA_DIST += uniwidth/test-uc_width.c uniwidth/test-uc_width2.c uniwidth/test-uc_width2.sh macros.h
## end gnulib module uniwidth/width-tests
## begin gnulib module unlink-tests
TESTS += test-unlink
check_PROGRAMS += test-unlink
EXTRA_DIST += test-unlink.h test-unlink.c signature.h macros.h
## end gnulib module unlink-tests
## begin gnulib module unlinkat-tests
TESTS += test-unlinkat
check_PROGRAMS += test-unlinkat
test_unlinkat_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-unlinkat.c test-rmdir.h test-unlink.h signature.h macros.h
## end gnulib module unlinkat-tests
## begin gnulib module unsetenv-tests
TESTS += test-unsetenv
check_PROGRAMS += test-unsetenv
EXTRA_DIST += test-unsetenv.c signature.h macros.h
## end gnulib module unsetenv-tests
## begin gnulib module update-copyright-tests
TESTS += test-update-copyright.sh
TESTS_ENVIRONMENT += abs_aux_dir='$(abs_aux_dir)'
EXTRA_DIST += test-update-copyright.sh
## end gnulib module update-copyright-tests
## begin gnulib module userspec-tests
TESTS += test-userspec
check_PROGRAMS += test-userspec
test_userspec_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-userspec.c
## end gnulib module userspec-tests
## begin gnulib module usleep
if GL_COND_OBJ_USLEEP
libtests_a_SOURCES += usleep.c
endif
## end gnulib module usleep
## begin gnulib module usleep-tests
if !OS_IS_CYGWIN
TESTS += test-usleep
endif
check_PROGRAMS += test-usleep
EXTRA_DIST += test-usleep.c signature.h macros.h
## end gnulib module usleep-tests
## begin gnulib module utime-h-tests
TESTS += test-utime-h
check_PROGRAMS += test-utime-h
EXTRA_DIST += test-utime-h.c
## end gnulib module utime-h-tests
## begin gnulib module utime-tests
TESTS += test-utime
check_PROGRAMS += test-utime
test_utime_LDADD = $(LDADD) $(CLOCK_TIME_LIB) $(NANOSLEEP_LIB) @LIBINTL@
EXTRA_DIST += test-utime.c nap.h test-utimens-common.h macros.h
## end gnulib module utime-tests
## begin gnulib module utimens-tests
TESTS += test-utimens
check_PROGRAMS += test-utimens
test_utimens_LDADD = $(LDADD) $(CLOCK_TIME_LIB) $(NANOSLEEP_LIB) @LIBINTL@
EXTRA_DIST += nap.h test-futimens.h test-lutimens.h test-utimens.h test-utimens-common.h test-utimens.c macros.h
## end gnulib module utimens-tests
## begin gnulib module utimensat-tests
TESTS += test-utimensat
check_PROGRAMS += test-utimensat
test_utimensat_LDADD = $(LDADD) $(CLOCK_TIME_LIB) $(NANOSLEEP_LIB) @LIBINTL@
EXTRA_DIST += nap.h test-lutimens.h test-utimens.h test-utimens-common.h test-utimensat.c signature.h macros.h
## end gnulib module utimensat-tests
## begin gnulib module vasnprintf-tests
TESTS += test-vasnprintf
check_PROGRAMS += test-vasnprintf
EXTRA_DIST += test-vasnprintf.c macros.h
## end gnulib module vasnprintf-tests
## begin gnulib module vasprintf-posix-tests
TESTS += test-vasprintf-posix
check_PROGRAMS += test-vasprintf-posix
EXTRA_DIST += test-vasprintf-posix.c minus-zero.h infinity.h macros.h
## end gnulib module vasprintf-posix-tests
## begin gnulib module vasprintf-tests
TESTS += test-vasprintf
check_PROGRAMS += test-vasprintf
EXTRA_DIST += test-vasprintf.c signature.h macros.h
## end gnulib module vasprintf-tests
## begin gnulib module vc-list-files-tests
TESTS += test-vc-list-files-git.sh
TESTS += test-vc-list-files-cvs.sh
TESTS_ENVIRONMENT += abs_aux_dir='$(abs_aux_dir)'
EXTRA_DIST += test-vc-list-files-git.sh test-vc-list-files-cvs.sh
## end gnulib module vc-list-files-tests
## begin gnulib module verify-tests
TESTS_ENVIRONMENT += MAKE='$(MAKE)'
TESTS += test-verify test-verify.sh
check_PROGRAMS += test-verify
# test-verify-try is never built, but test-verify.sh needs a rule to
# build test-verify-try.o.
EXTRA_PROGRAMS += test-verify-try
# This test expects compilation of test-verify-try.c to fail, and
# each time it fails, the makefile rule does not perform the usual
# "mv -f $name.Tpo $name.po, so tell make clean to remove that file.
MOSTLYCLEANFILES += .deps/test-verify-try.Tpo
EXTRA_DIST += test-verify.c test-verify-try.c test-verify.sh
## end gnulib module verify-tests
## begin gnulib module verror-tests
TESTS += test-verror.sh
check_PROGRAMS += test-verror
test_verror_LDADD = $(LDADD) $(LIBINTL)
EXTRA_DIST += test-verror.sh test-verror.c macros.h
## end gnulib module verror-tests
## begin gnulib module version-etc-tests
TESTS += test-version-etc.sh
check_PROGRAMS += test-version-etc
test_version_etc_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-version-etc.c test-version-etc.sh
## end gnulib module version-etc-tests
## begin gnulib module vfzprintf-posix-tests
TESTS += test-vfzprintf-posix.sh
check_PROGRAMS += test-vfzprintf-posix
EXTRA_DIST += test-vfzprintf-posix.sh test-vfzprintf-posix.c test-fprintf-posix.h test-printf-posix.output infinity.h macros.h
## end gnulib module vfzprintf-posix-tests
## begin gnulib module vma-iter
libtests_a_SOURCES += vma-iter.c
EXTRA_DIST += vma-iter.h
## end gnulib module vma-iter
## begin gnulib module vzprintf-posix-tests
TESTS += test-vzprintf-posix.sh
check_PROGRAMS += test-vzprintf-posix
EXTRA_DIST += test-vzprintf-posix.sh test-vzprintf-posix.c test-printf-posix.h test-printf-posix.output infinity.h macros.h
## end gnulib module vzprintf-posix-tests
## begin gnulib module waitpid
if GL_COND_OBJ_WAITPID
libtests_a_SOURCES += waitpid.c
endif
## end gnulib module waitpid
## begin gnulib module wchar-h-tests
TESTS += test-wchar-h
check_PROGRAMS += test-wchar-h
EXTRA_DIST += test-wchar-h.c
## end gnulib module wchar-h-tests
## begin gnulib module wcrtomb-tests
TESTS += \
test-wcrtomb.sh \
test-wcrtomb-w32-2.sh test-wcrtomb-w32-3.sh test-wcrtomb-w32-4.sh \
test-wcrtomb-w32-5.sh test-wcrtomb-w32-6.sh test-wcrtomb-w32-7.sh \
test-wcrtomb-w32-8.sh
TESTS_ENVIRONMENT += \
LOCALE_EN_UTF8='@LOCALE_EN_UTF8@' \
LOCALE_FR='@LOCALE_FR@' \
LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \
LOCALE_JA='@LOCALE_JA@' \
LOCALE_ZH_CN='@LOCALE_ZH_CN@'
check_PROGRAMS += test-wcrtomb test-wcrtomb-w32
test_wcrtomb_LDADD = $(LDADD) $(SETLOCALE_LIB)
EXTRA_DIST += test-wcrtomb.sh test-wcrtomb.c test-wcrtomb-w32-2.sh test-wcrtomb-w32-3.sh test-wcrtomb-w32-4.sh test-wcrtomb-w32-5.sh test-wcrtomb-w32-6.sh test-wcrtomb-w32-7.sh test-wcrtomb-w32-8.sh test-wcrtomb-w32.c signature.h macros.h
## end gnulib module wcrtomb-tests
## begin gnulib module wctob
if GL_COND_OBJ_WCTOB
libtests_a_SOURCES += wctob.c
endif
## end gnulib module wctob
## begin gnulib module wctomb
if GL_COND_OBJ_WCTOMB
libtests_a_SOURCES += wctomb.c
endif
EXTRA_DIST += wctomb-impl.h
## end gnulib module wctomb
## begin gnulib module wctype-h-tests
TESTS += test-wctype-h
check_PROGRAMS += test-wctype-h
EXTRA_DIST += test-wctype-h.c macros.h
## end gnulib module wctype-h-tests
## begin gnulib module wctype-tests
TESTS += test-wctype
check_PROGRAMS += test-wctype
EXTRA_DIST += test-wctype.c signature.h macros.h
## end gnulib module wctype-tests
## begin gnulib module wcwidth-tests
TESTS += test-wcwidth
check_PROGRAMS += test-wcwidth
test_wcwidth_LDADD = $(LDADD) $(SETLOCALE_LIB) $(LIBUNISTRING)
EXTRA_DIST += test-wcwidth.c signature.h macros.h
## end gnulib module wcwidth-tests
## begin gnulib module windows-mutex-tests
TESTS += test-windows-mutex-type
check_PROGRAMS += test-windows-mutex-type
EXTRA_DIST += test-windows-mutex-type.c macros.h
## end gnulib module windows-mutex-tests
## begin gnulib module windows-recmutex-tests
TESTS += test-windows-recmutex-type
check_PROGRAMS += test-windows-recmutex-type
EXTRA_DIST += test-windows-recmutex-type.c macros.h
## end gnulib module windows-recmutex-tests
## begin gnulib module windows-timedmutex-tests
TESTS += test-windows-timedmutex-type
check_PROGRAMS += test-windows-timedmutex-type
EXTRA_DIST += test-windows-timedmutex-type.c macros.h
## end gnulib module windows-timedmutex-tests
## begin gnulib module windows-timedrecmutex-tests
TESTS += test-windows-timedrecmutex-type
check_PROGRAMS += test-windows-timedrecmutex-type
EXTRA_DIST += test-windows-timedrecmutex-type.c macros.h
## end gnulib module windows-timedrecmutex-tests
## begin gnulib module windows-timedrwlock
if GL_COND_OBJ_WINDOWS_TIMEDRWLOCK
libtests_a_SOURCES += windows-timedrwlock.c
endif
EXTRA_DIST += windows-initguard.h windows-timedrwlock.h
## end gnulib module windows-timedrwlock
## begin gnulib module wmemchr-tests
TESTS += test-wmemchr
check_PROGRAMS += test-wmemchr
EXTRA_DIST += test-wmemchr.c macros.h
## end gnulib module wmemchr-tests
## begin gnulib module write-tests
TESTS += test-write
check_PROGRAMS += test-write
EXTRA_DIST += test-write.c signature.h macros.h
## end gnulib module write-tests
## begin gnulib module xalloc-die-tests
TESTS += test-xalloc-die.sh
check_PROGRAMS += test-xalloc-die
test_xalloc_die_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-xalloc-die.c test-xalloc-die.sh
## end gnulib module xalloc-die-tests
## begin gnulib module xconcat-filename
libtests_a_SOURCES += xconcat-filename.c
EXTRA_DIST += concat-filename.h
## end gnulib module xconcat-filename
## begin gnulib module xgetcwd-lgpl
libtests_a_SOURCES += xgetcwd.c
EXTRA_DIST += xgetcwd.h
## end gnulib module xgetcwd-lgpl
## begin gnulib module xmemdup0-tests
TESTS += test-xmemdup0
check_PROGRAMS += test-xmemdup0
test_xmemdup0_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-xmemdup0.c macros.h
## end gnulib module xmemdup0-tests
## begin gnulib module xprintf-posix-tests
TESTS += test-xprintf-posix.sh
check_PROGRAMS += test-xfprintf-posix test-xprintf-posix
test_xfprintf_posix_LDADD = $(LDADD) @LIBINTL@
test_xprintf_posix_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-xprintf-posix.sh test-xfprintf-posix.c test-xprintf-posix.c test-fprintf-posix.h test-printf-posix.h test-printf-posix.output infinity.h macros.h
## end gnulib module xprintf-posix-tests
## begin gnulib module xstrtod-tests
TESTS += test-xstrtod
check_PROGRAMS += test-xstrtod
EXTRA_DIST += test-xstrtod.c minus-zero.h macros.h
## end gnulib module xstrtod-tests
## begin gnulib module xstrtoimax-tests
TESTS += test-xstrtoimax.sh
check_PROGRAMS += test-xstrtoimax
test_xstrtoimax_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-xstrtoimax.c test-xstrtoimax.sh
## end gnulib module xstrtoimax-tests
## begin gnulib module xstrtol-tests
TESTS += test-xstrtol.sh
check_PROGRAMS += test-xstrtol test-xstrtoul
test_xstrtol_LDADD = $(LDADD) @LIBINTL@
test_xstrtoul_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-xstrtol.c test-xstrtoul.c test-xstrtol.sh macros.h
## end gnulib module xstrtol-tests
## begin gnulib module xstrtold-tests
TESTS += test-xstrtold
check_PROGRAMS += test-xstrtold
EXTRA_DIST += test-xstrtold.c minus-zero.h macros.h
## end gnulib module xstrtold-tests
## begin gnulib module xstrtoumax-tests
TESTS += test-xstrtoumax.sh
check_PROGRAMS += test-xstrtoumax
test_xstrtoumax_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-xstrtoumax.c test-xstrtoumax.sh
## end gnulib module xstrtoumax-tests
## begin gnulib module xvasprintf-tests
TESTS += test-xvasprintf
check_PROGRAMS += test-xvasprintf
test_xvasprintf_LDADD = $(LDADD) @LIBINTL@
EXTRA_DIST += test-xvasprintf.c macros.h
## end gnulib module xvasprintf-tests
## begin gnulib module year2038-tests
TESTS += test-year2038
check_PROGRAMS += test-year2038
EXTRA_DIST += test-year2038.c
## end gnulib module year2038-tests
## begin gnulib module yesno-tests
TESTS += test-yesno.sh
check_PROGRAMS += test-yesno
test_yesno_LDADD = $(LDADD) $(LIBUNISTRING) @LIBINTL@ $(MBRTOWC_LIB) $(LIBC32CONV)
EXTRA_DIST += test-yesno.c test-yesno.sh
## end gnulib module yesno-tests
## begin gnulib module yield
libtests_a_SOURCES += glthread/yield.h
## end gnulib module yield
all: all-notice
all-notice:
@echo '## ---------------------------------------------------- ##'
@echo '## ------------------- Gnulib tests ------------------- ##'
@echo '## You can ignore compiler warnings in this directory. ##'
@echo '## ---------------------------------------------------- ##'
check-am: check-notice
check-notice:
@echo '## ---------------------------------------------------------------------- ##'
@echo '## ---------------------------- Gnulib tests ---------------------------- ##'
@echo '## Please report test failures in this directory to <bug-gnulib@gnu.org>. ##'
@echo '## ---------------------------------------------------------------------- ##'
# Clean up after Solaris cc.
clean-local:
rm -rf SunWS_cache
mostlyclean-local: mostlyclean-generic
@for dir in '' $(MOSTLYCLEANDIRS); do \
if test -n "$$dir" && test -d $$dir; then \
echo "rmdir $$dir"; rmdir $$dir; \
fi; \
done; \
:
|