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
|
#! /bin/bash
prefix="$1"
testdir="$2"
shift
shift
valgrind=
valgrind_listener_pid=
builddir=.
strict=
sudo=
killcmd=kill
usage()
{
echo Usage: "$0 <install_prefix> <testddir> [--builddir=dir] [--valgrind[=command]] [--strict[=value]]"
exit 3
}
get_default_valgrind_flags()
{
default_valgrind_args="--num-callers=50 --suppressions=valgrind_suppressions --log-socket=127.0.0.1"
# Check if valgrind knows --error-markers, which makes it simpler to find out if log contains any error.
valgrind_error_markers="--error-markers=ICEERRORBEGIN,ICEERROREND"
valgrind $valgrind_error_markers true 2>/dev/null
if test $? -eq 0; then
default_valgrind_args="$default_valgrind_args $valgrind_error_markers"
else
valgrind_error_markers=
fi
}
while test -n "$1"; do
case "$1" in
--valgrind|--valgrind=1)
get_default_valgrind_flags
valgrind="valgrind --leak-check=no $default_valgrind_args --"
;;
--valgrind=)
# when invoked from Makefile, no valgrind
;;
--valgrind=*)
get_default_valgrind_flags
valgrind="${1#--valgrind=} $default_valgrind_args --"
;;
--builddir=*)
builddir="${1#--builddir=}"
;;
--strict)
strict=1
;;
--strict=*)
strict="${1#--strict=}"
if test "$strict" = "0"; then
strict=
fi
;;
--sudo|--sudo=1)
sudo="sudo -E --"
# sudo will not forward a signal from its own process group, so set a new one for it
killcmd="sudo -- setsid -w -- kill"
;;
--sudo=)
# when invoked from Makefile, no sudo
;;
*)
usage
;;
esac
shift
done
. $builddir/test-setup.sh
if test $? -ne 0; then
echo Error sourcing test-setup.sh file, aborting.
exit 4
fi
icecc="${prefix}/bin/icecc"
iceccd="${prefix}/sbin/iceccd"
icecc_scheduler="${prefix}/sbin/icecc-scheduler"
icecc_create_env="${prefix}/bin/icecc-create-env"
icecc_test_env="${prefix}/bin/icecc-test-env"
icerun="${prefix}/bin/icerun"
wrapperdir="${pkglibexecdir}/bin"
netname="icecctestnetname$$"
protocolversion=$(grep '#define PROTOCOL_VERSION ' ../services/comm.h | sed 's/#define PROTOCOL_VERSION //')
schedulerprotocolversion=$protocolversion
daemonprotocolversion=$protocolversion
# For testing compatibility of different versions:
# The only 2 communications are client<->daemon and daemon<->scheduler.
# So it should be necessary to test only these settings:
# - other scheduler
# - other daemon
# - other client
# Change the settings below to enable such runs (false->true).
# Note that older versions may not pass successfully all tests. Either comment out what does not work
# (if it's not an actual incompatibility problem) or use the test.sh script from the older version
# to test with a current version.
OTHERVERSIONPREFIX=/usr
if false; then
icecc="$OTHERVERSIONPREFIX"/bin/icecc
icerun="$OTHERVERSIONPREFIX"/bin/icerun
if test -d "$OTHERVERSIONPREFIX"/lib/icecc/bin; then
wrapperdir="$OTHERVERSIONPREFIX"/lib/icecc/bin
elif test -d "$OTHERVERSIONPREFIX"/lib64/icecc/bin; then
wrapperdir="$OTHERVERSIONPREFIX"/lib64/icecc/bin
else
Cannot find wrapper dir for "$OTHERVERSIONPREFIX" .
exit 1
fi
fi
if false; then
# Make sure the daemon is capable of doing chroot (see e.g. how Makefile.am sets it in test-prepare).
iceccd="$OTHERVERSIONPREFIX"/sbin/iceccd
daemonprotocolversion=$(grep '#define PROTOCOL_VERSION ' "$OTHERVERSIONPREFIX"/include/icecc/comm.h | sed 's/#define PROTOCOL_VERSION //')
if test -z "$daemonprotocolversion"; then
Cannot find "$OTHERVERSIONPREFIX"/include/icecc/comm.h .
exit 1
fi
fi
if false; then
icecc_scheduler="$OTHERVERSIONPREFIX"/sbin/icecc-scheduler
schedulerprotocolversion=$(grep '#define PROTOCOL_VERSION ' "$OTHERVERSIONPREFIX"/include/icecc/comm.h | sed 's/#define PROTOCOL_VERSION //')
if test -z "$schedulerprotocolversion"; then
Cannot find "$OTHERVERSIONPREFIX"/include/icecc/comm.h .
exit 1
fi
# If the scheduler is older than 1.3 (protocol 42), then it reported the lowest
# of the protocol version of the scheduler and the daemon, so possibly set it here as well.
#daemonprotocolversion=$schedulerprotocolversion
fi
if test -z "$prefix" -o ! -x "$icecc"; then
usage
fi
# Remote compiler pretty much runs with this setting (and there are no locale files in the chroot anyway),
# so force it also locally, otherwise comparing stderr would easily fail because of locale differences (different quotes).
# Until somebody complains and has a good justification for the effort, don't bother with actually doing
# anything about this for real.
export LC_ALL=C
unset MAKEFLAGS
unset ICECC
unset ICECC_VERSION
unset ICECC_DEBUG
unset ICECC_LOGFILE
unset ICECC_REPEAT_RATE
unset ICECC_PREFERRED_HOST
unset ICECC_CC
unset ICECC_CXX
unset ICECC_REMOTE_CPP
unset ICECC_CLANG_REMOTE_CPP
unset ICECC_IGNORE_UNVERIFIED
unset ICECC_EXTRAFILES
unset ICECC_COLOR_DIAGNOSTICS
unset ICECC_CARET_WORKAROUND
# Make the tests faster.
export ICECC_ENV_COMPRESSION=none
mkdir -p "$testdir"
skipped_tests=
chroot_disabled=
flush_log_mark=1
last_reset_log_mark=
last_section_log_mark=
check_compilers()
{
if test -z "$TESTCC"; then
if cc -v >/dev/null 2>/dev/null; then
TESTCC=/usr/bin/cc
elif gcc -v >/dev/null 2>/dev/null; then
TESTCC=/usr/bin/gcc
elif clang -v >/dev/null 2>/dev/null; then
TESTCC=/usr/bin/clang
else
echo Cannot find gcc or clang, explicitly set TESTCC.
exit 5
fi
fi
if test -z "$TESTCXX"; then
if c++ -v >/dev/null 2>/dev/null; then
TESTCXX=/usr/bin/c++
elif g++ -v >/dev/null 2>/dev/null; then
TESTCXX=/usr/bin/g++
elif clang -v >/dev/null 2>/dev/null; then
TESTCXX=/usr/bin/clang++
else
echo Cannot find g++ or clang++, explicitly set TESTCXX.
exit 5
fi
fi
using_gcc=
if $TESTCC -v 2>&1 | grep ^gcc >/dev/null; then
using_gcc=1
fi
using_clang=
if $TESTCC --version | grep clang >/dev/null; then
using_clang=1
fi
echo Using C compiler: $TESTCC
$TESTCC --version
if test $? -ne 0; then
echo Compiler $TESTCC failed.
exit 5
fi
echo Using C++ compiler: $TESTCXX
$TESTCXX --version
if test $? -ne 0; then
echo Compiler $TESTCXX failed.
exit 5
fi
if test -z "$using_gcc" -a -z "$using_clang"; then
echo "Unknown compiler type (neither GCC nor Clang), aborting."
exit 5
fi
echo
}
abort_tests()
{
dump_logs
if test -n "$valgrind_listener_pid"; then
sleep 1
kill "$valgrind_listener_pid"
fi
exit 2
}
trap_handler()
{
stop_ice 0
if test -n "$valgrind_listener_pid"; then
sleep 1
kill "$valgrind_listener_pid"
fi
exit 3
}
start_iceccd()
{
name=$1
shift
ICECC_TEST_SOCKET="$testdir"/socket-${name} ICECC_SCHEDULER=:8767 ICECC_TESTS=1 ICECC_TEST_SCHEDULER_PORTS=8767:8769 \
ICECC_TEST_FLUSH_LOG_MARK="$testdir"/flush_log_mark.txt ICECC_TEST_LOG_HEADER="$testdir"/log_header.txt \
$sudo $valgrind "${iceccd}" -b "$testdir"/envs-${name} -l "$testdir"/${name}.log -n ${netname} -N ${name} -v -v -v -u $(whoami) "$@" &
pid=$!
eval ${name}_pid=${pid}
echo ${pid} > "$testdir"/${name}.pid
}
kill_daemon()
{
daemon=$1
pid=${daemon}_pid
if test -n "${!pid}"; then
$killcmd "${!pid}" 2>/dev/null
if test $check_type -eq 1; then
wait ${!pid}
exitcode=$?
if test $exitcode -ne 0; then
echo Daemon $daemon exited with code $exitcode.
stop_ice 0
abort_tests
fi
fi
fi
rm -f "$testdir"/$daemon.pid
rm -rf "$testdir"/envs-${daemon}
rm -f "$testdir"/socket-${daemon}
eval ${pid}=
}
start_ice()
{
ICECC_TESTS=1 ICECC_TEST_SCHEDULER_PORTS=8767:8769 \
ICECC_TEST_FLUSH_LOG_MARK="$testdir"/flush_log_mark.txt ICECC_TEST_LOG_HEADER="$testdir"/log_header.txt \
$valgrind "${icecc_scheduler}" -p 8767 -l "$testdir"/scheduler.log -n ${netname} -v -v -v &
scheduler_pid=$!
echo $scheduler_pid > "$testdir"/scheduler.pid
start_iceccd localice --no-remote -m 2
start_iceccd remoteice1 -p 10246 -m 2
start_iceccd remoteice2 -p 10247 -m 2
wait_for_ice_startup_complete scheduler localice remoteice1 remoteice2
flush_logs
cat_log_last_mark remoteice1 | grep -q "Cannot use chroot, no remote jobs accepted." && chroot_disabled=1
cat_log_last_mark remoteice2 | grep -q "Cannot use chroot, no remote jobs accepted." && chroot_disabled=1
if test -n "$chroot_disabled"; then
skipped_tests="$skipped_tests CHROOT"
echo Chroot not available, remote tests will be skipped.
fi
}
# start only local daemon, no scheduler
start_only_daemon()
{
ICECC_TEST_SOCKET="$testdir"/socket-localice ICECC_SCHEDULER=:8767 ICECC_TESTS=1 ICECC_TEST_SCHEDULER_PORTS=8767:8769 \
ICECC_TEST_FLUSH_LOG_MARK="$testdir"/flush_log_mark.txt ICECC_TEST_LOG_HEADER="$testdir"/log_header.txt \
$sudo $valgrind "${iceccd}" --no-remote -b "$testdir"/envs-localice -l "$testdir"/localice.log -n ${netname} -N localice -m 2 -u $(whoami) -v -v -v &
localice_pid=$!
echo $localice_pid > "$testdir"/localice.pid
wait_for_ice_startup_complete "noscheduler" localice
}
stop_ice()
{
# 0 - do not check
# 1 - check normally
# 2 - do not check, do not wait (wait would fail, started by previous shell)
check_type="$1"
if test $check_type -eq 2; then
scheduler_pid=$(cat "$testdir"/scheduler.pid 2>/dev/null)
localice_pid=$(cat "$testdir"/localice.pid 2>/dev/null)
remoteice1_pid=$(cat "$testdir"/remoteice1.pid 2>/dev/null)
remoteice2_pid=$(cat "$testdir"/remoteice2.pid 2>/dev/null)
fi
if test $check_type -eq 1; then
if test -n "$scheduler_pid"; then
if ! $killcmd -0 $scheduler_pid; then
echo Scheduler no longer running.
stop_ice 0
abort_tests
fi
fi
for daemon in localice remoteice1 remoteice2; do
pid=${daemon}_pid
if ! $killcmd -0 ${!pid}; then
echo Daemon $daemon no longer running.
stop_ice 0
abort_tests
fi
done
fi
for daemon in localice remoteice1 remoteice2; do
kill_daemon $daemon
done
if test -n "$scheduler_pid"; then
kill "$scheduler_pid" 2>/dev/null
if test $check_type -eq 1; then
wait $scheduler_pid
exitcode=$?
if test $exitcode -ne 0; then
echo Scheduler exited with code $exitcode.
stop_ice 0
abort_tests
fi
fi
scheduler_pid=
fi
rm -f "$testdir"/scheduler.pid
stop_secondary_scheduler $check_type
}
stop_secondary_scheduler()
{
check_type="$1"
if test $check_type -eq 2; then
scheduler2_pid=$(cat "$testdir"/scheduler2.pid 2>/dev/null)
fi
if test $check_type -eq 1; then
if test -n "$scheduler2_pid"; then
if ! kill -0 $scheduler2_pid; then
echo Secondary scheduler no longer running.
stop_ice 0
abort_tests
fi
fi
fi
if test -n "$scheduler2_pid"; then
kill "$scheduler2_pid" 2>/dev/null
if test $check_type -eq 1; then
wait $scheduler2_pid
exitcode=$?
if test $exitcode -ne 0; then
echo Secondary scheduler exited with code $exitcode.
stop_ice 0
abort_tests
fi
fi
scheduler2_pid=
fi
rm -f "$testdir"/scheduler2.pid
}
stop_only_daemon()
{
check_first="$1"
if test $check_first -ne 0; then
if ! $killcmd -0 $localice_pid; then
echo Daemon localice no longer running.
stop_only_daemon 0
abort_tests
fi
fi
$killcmd $localice_pid 2>/dev/null
rm -f "$testdir"/localice.pid
rm -rf "$testdir"/envs-localice
rm -f "$testdir"/socket-localice
localice_pid=
}
wait_for_ice_startup_complete()
{
noscheduler=
if test "$1" == "noscheduler"; then
noscheduler=1
shift
fi
processes="$@"
timeout=10
if test -n "$valgrind"; then
# need time to set up SIGHUP handler
sleep 5
timeout=15
fi
notready=
for ((i=0; i<timeout; i++)); do
notready=
for process in $processes; do
if echo "$process" | grep -q scheduler; then
local extra=
test "$process" != "scheduler" && extra="(${process}) "
pid=${process}_pid
if ! kill -0 ${!pid}; then
echo Scheduler $extra start failure.
stop_ice 0
abort_tests
fi
cat_log_last_mark ${process} | grep -q "scheduler ready" || notready=1
elif echo "$process" | grep -q -e "localice" -e "remoteice"; then
pid=${process}_pid
if ! $killcmd -0 ${!pid}; then
echo Daemon $process start failure.
stop_ice 0
abort_tests
fi
if test -z "$noscheduler"; then
cat_log_last_mark ${process} | grep -q "Connected to scheduler" || notready=1
else
cat_log_last_mark ${process} | grep -q "Netnames:" || notready=1
fi
else
echo Internal test error, aborting.
stop_ice 0
abort_tests
fi
done
if test -z "$notready"; then
break;
fi
sleep 1
# ensure log file flush
for process in $processes; do
pid=${process}_pid
$killcmd -HUP ${!pid}
done
done
if test -n "$notready"; then
echo Icecream not ready, aborting.
stop_ice 0
abort_tests
fi
}
# Arguments: file1 file2 header
compare_outputs()
{
file1="$1"
file2="$2"
header="$3"
if ! diff "$file1" "$file2" >/dev/null; then
echo "$header"
echo ================
diff -u "$file1" "$file2"
echo ================
stop_ice 0
abort_tests
fi
}
# First argument is the expected output file, if any (otherwise specify "").
# Second argument is "remote" (should be compiled on a remote host) or "local" (cannot be compiled remotely).
# Third argument is expected exit code - if this is greater than 128 the exit code will be determined by invoking the compiler locally
# Follow optional arguments, in this order:
# - localrebuild - specifies that the command may result in local recompile
# - keepoutput - will keep the file specified using $output (the remotely compiled version)
# - split_dwarf - compilation is done with -gsplit-dwarf
# - noresetlogs - will not use reset_logs at the start (needs to be done explicitly before calling run_ice)
# - remoteabort - remote compilation will abort (as a result of local processing failing and remote daemon killing the remote compiler)
# - nostderrcheck - will not compare stderr output
# - unusedmacrohack - hack for Wunused-macros test
# Rest is the command to pass to icecc.
# Command will be run both locally and using icecc and results compared.
run_ice()
{
output="$1"
shift
remote_type="$1"
shift
expected_exit=$1
shift
localrebuild=
localrebuildforlog=
if test "$1" = "localrebuild"; then
localrebuild=1
localrebuildforlog=localrebuild
shift
fi
keepoutput=
if test "$1" = "keepoutput"; then
keepoutput=1
shift
fi
split_dwarf=
if test "$1" = "split_dwarf"; then
if test -n "$output"; then
split_dwarf=$(echo $output | sed 's/\.[^.]*//g').dwo
fi
shift
fi
noresetlogs=
if test "$1" = "noresetlogs"; then
noresetlogs=1
shift
fi
remoteabort=
if test "$1" = "remoteabort"; then
remoteabort=1
shift
fi
nostderrcheck=
if test "$1" = "nostderrcheck"; then
nostderrcheck=1
shift
fi
unusedmacrohack=
if test "$1" = "unusedmacrohack"; then
unusedmacrohack=1
shift
fi
if [[ $expected_exit -gt 128 ]]; then
$@ 2>/dev/null
expected_exit=$?
fi
if test -z "$noresetlogs"; then
reset_logs local "$@"
else
mark_logs local "$@"
fi
echo Running: "$@"
ICECC_TEST_SOCKET="$testdir"/socket-localice ICECC_TEST_REMOTEBUILD=1 ICECC_PREFERRED_HOST=localice ICECC_DEBUG=debug ICECC_LOGFILE="$testdir"/icecc.log $valgrind "${icecc}" "$@" 2>"$testdir"/stderr.localice
localice_exit=$?
if test -n "$output"; then
mv "$output" "$output".localice
fi
if test -n "$split_dwarf"; then
mv "$split_dwarf" "$split_dwarf".localice
fi
cat "$testdir"/stderr.localice >> "$testdir"/stderr.localice.log
flush_logs
check_logs_for_generic_errors $localrebuildforlog
check_everything_is_idle
if test "$remote_type" = "remote"; then
check_log_message icecc "building myself, but telling localhost"
if test -z "$localrebuild"; then
check_log_error icecc "<building_local>"
fi
else
check_log_message icecc "<building_local>"
check_log_error icecc "building myself, but telling localhost"
fi
check_log_error icecc "Have to use host 127.0.0.1:10246"
check_log_error icecc "Have to use host 127.0.0.1:10247"
if test -z "$localrebuild"; then
check_log_error icecc "local build forced"
fi
if test -z "$chroot_disabled"; then
mark_logs remote "$@"
ICECC_TEST_SOCKET="$testdir"/socket-localice ICECC_TEST_REMOTEBUILD=1 ICECC_PREFERRED_HOST=remoteice1 ICECC_DEBUG=debug ICECC_LOGFILE="$testdir"/icecc.log $valgrind "${icecc}" "$@" 2>"$testdir"/stderr.remoteice
remoteice_exit=$?
if test -n "$output"; then
mv "$output" "$output".remoteice
fi
if test -n "$split_dwarf"; then
mv "$split_dwarf" "$split_dwarf".remoteice
fi
cat "$testdir"/stderr.remoteice >> "$testdir"/stderr.remoteice.log
flush_logs
check_logs_for_generic_errors $localrebuildforlog
check_everything_is_idle
if test "$remote_type" = "remote"; then
check_log_message icecc "Have to use host 127.0.0.1:10246"
if test -z "$localrebuild"; then
check_log_error icecc "<building_local>"
fi
if test -n "$remoteabort"; then
check_log_message remoteice1 "Remote compilation aborted with exit code"
check_log_error remoteice1 "Remote compilation completed with exit code 0"
check_log_error remoteice1 "Remote compilation exited with exit code"
elif test -n "$output"; then
check_log_message remoteice1 "Remote compilation completed with exit code 0"
check_log_error remoteice1 "Remote compilation aborted with exit code"
check_log_error remoteice1 "Remote compilation exited with exit code"
else
check_log_message remoteice1 "Remote compilation exited with exit code $expected_exit"
check_log_error remoteice1 "Remote compilation completed with exit code 0"
check_log_error remoteice1 "Remote compilation aborted with exit code"
fi
else
check_log_message icecc "<building_local>"
check_log_error icecc "Have to use host 127.0.0.1:10246"
fi
check_log_error icecc "Have to use host 127.0.0.1:10247"
check_log_error icecc "building myself, but telling localhost"
if test -z "$localrebuild"; then
check_log_error icecc "local build forced"
fi
fi
mark_logs noice "$@"
"$@" 2>"$testdir"/stderr
normal_exit=$?
cat "$testdir"/stderr >> "$testdir"/stderr.log
flush_logs
check_logs_for_generic_errors $localrebuildforlog
check_everything_is_idle
check_log_error icecc "Have to use host 127.0.0.1:10246"
check_log_error icecc "Have to use host 127.0.0.1:10247"
check_log_error icecc "<building_local>"
check_log_error icecc "building myself, but telling localhost"
check_log_error icecc "local build forced"
if test $localice_exit -ne $expected_exit; then
echo "Local run exit code mismatch ($localice_exit vs $expected_exit)"
stop_ice 0
abort_tests
fi
if test $localice_exit -ne $expected_exit; then
echo "Run without icecc exit code mismatch ($normal_exit vs $expected_exit)"
stop_ice 0
abort_tests
fi
if test -z "$chroot_disabled" -a "$remoteice_exit" != "$expected_exit"; then
echo "Remote run exit code mismatch ($remoteice_exit vs $expected_exit)"
stop_ice 0
abort_tests
fi
if test -z "$nostderrcheck"; then
compare_outputs "$testdir"/stderr.localice "$testdir"/stderr "Stderr mismatch ($testdir/stderr.localice)"
if test -z "$chroot_disabled"; then
skipstderrcheck=
if test -n "$unusedmacrohack" -a -n "$using_gcc"; then
# gcc -Wunused-macro gives different location for the error depending on whether -E is used or not
if ! diff "$testdir"/stderr.remoteice "$testdir"/stderr >/dev/null; then
if diff "$testdir"/stderr.remoteice unusedmacro1.txt >/dev/null; then
skipstderrcheck=1
fi
if diff "$testdir"/stderr.remoteice unusedmacro2.txt >/dev/null; then
skipstderrcheck=1
fi
if diff "$testdir"/stderr.remoteice unusedmacro3.txt >/dev/null; then
skipstderrcheck=1
fi
fi
fi
if test -z "$skipstderrcheck"; then
compare_outputs "$testdir"/stderr.remoteice "$testdir"/stderr "Stderr mismatch ($testdir/stderr.remoteice)"
fi
fi
fi
local remove_offset_number="s/<[A-Fa-f0-9]*>/<>/g"
local remove_debug_info="s/\(Length\|DW_AT_\(GNU_dwo_\(id\|name\)\|comp_dir\|producer\|linkage_name\|name\)\).*/\1/g"
local remove_debug_pubnames="/^\s*Offset\s*Name/,/^\s*$/s/\s*[A-Fa-f0-9]*\s*//"
local remove_size_of_area="s/\(Size of area in.*section:\)\s*[0-9]*/\1/g"
if test -n "$output"; then
if file "$output" | grep -q ELF; then
readelf -wlLiaprmfFoRt "$output" | sed -e "$remove_debug_info" \
-e "$remove_offset_number" \
-e "$remove_debug_pubnames" \
-e "$remove_size_of_area" > "$output".readelf.txt || cp "$output" "$output".readelf.txt
readelf -wlLiaprmfFoRt "$output".localice | sed -e "$remove_debug_info" \
-e "$remove_offset_number" \
-e "$remove_debug_pubnames" \
-e "$remove_size_of_area" > "$output".local.readelf.txt || cp "$output" "$output".local.readelf.txt
compare_outputs "$output".local.readelf.txt "$output".readelf.txt "Output mismatch ($output.localice)"
if test -z "$chroot_disabled"; then
readelf -wlLiaprmfFoRt "$output".remoteice | sed -e "$remove_debug_info" \
-e "$remove_offset_number" \
-e "$remove_debug_pubnames" \
-e "$remove_size_of_area" > "$output".remote.readelf.txt || cp "$output" "$output".remote.readelf.txt
compare_outputs "$output".remote.readelf.txt "$output".readelf.txt "Output mismatch ($output.remoteice)"
fi
elif echo "$output" | grep -q '\.gch$'; then
# PCH file, no idea how to check they are the same if they are not 100% identical
# Make silent.
true
elif file "$output" | grep -q Mach; then
# No idea how to check they are the same if they are not 100% identical
if ! diff "$output".localice "$output" >/dev/null; then
echo "Output mismatch ($output.localice), Mach object files, not knowing how to verify"
fi
if test -z "$chroot_disabled"; then
if ! diff "$output".remoteice "$output" >/dev/null; then
echo "Output mismatch ($output.remoteice), Mach object files, not knowing how to verify"
fi
fi
elif echo "$output" | grep -q -e '\.o$' -e '\.dwo$'; then
# possibly cygwin .o file, no idea how to check they are the same if they are not 100% identical
if ! diff "$output".localice "$output" >/dev/null; then
echo "Output mismatch ($output.localice), assuming Cygwin object files, not knowing how to verify"
fi
if test -z "$chroot_disabled"; then
if ! diff "$output".remoteice "$output" >/dev/null; then
echo "Output mismatch ($output.remoteice), assuming Cygwin object files, not knowing how to verify"
fi
fi
elif echo "$output" | grep -q '\.s$'; then
# Filter out .file directive, which may be '-' for the remote file.
grep -v '[[:space:]]\.file[[:space:]]' "$output" > "$output".asm.text
grep -v '[[:space:]]\.file[[:space:]]' "$output".localice > "$output".localice.asm.text
grep -v '[[:space:]]\.file[[:space:]]' "$output".remoteice > "$output".remoteice.asm.text
compare_outputs "$output".localice.asm.text "$output".asm.text "Output mismatch ($output.localice)"
if test -z "$chroot_disabled"; then
compare_outputs "$output".remoteice.asm.text "$output".asm.text "Output mismatch ($output.remoteice)"
fi
else
compare_outputs "$output".localice "$output" "Output mismatch ($output.localice)"
if test -z "$chroot_disabled"; then
compare_outputs "$output".remoteice "$output" "Output mismatch ($output.remoteice)"
fi
fi
fi
if test -n "$split_dwarf"; then
if file "$output" | grep ELF >/dev/null; then
readelf -wlLiaprmfFoRt "$split_dwarf" | \
sed -e "$remove_debug_info" -e "$remove_offset_number" > "$split_dwarf".readelf.txt || cp "$split_dwarf" "$split_dwarf".readelf.txt
readelf -wlLiaprmfFoRt "$split_dwarf".localice | \
sed -e $remove_debug_info -e "$remove_offset_number" > "$split_dwarf".local.readelf.txt || cp "$split_dwarf" "$split_dwarf".local.readelf.txt
compare_outputs "$split_dwarf".local.readelf.txt "$split_dwarf".readelf.txt "Output DWO mismatch ($split_dwarf.localice)"
if test -z "$chroot_disabled"; then
readelf -wlLiaprmfFoRt "$split_dwarf".remoteice | \
sed -e "$remove_debug_info" -e "$remove_offset_number" > "$split_dwarf".remote.readelf.txt || cp "$split_dwarf" "$split_dwarf".remote.readelf.txt
compare_outputs "$split_dwarf".remote.readelf.txt "$split_dwarf".readelf.txt "Output DWO mismatch ($split_dwarf.remoteice)"
fi
elif file "$output" | grep Mach >/dev/null; then
# No idea how to check they are the same if they are not 100% identical
if ! diff "$split_dwarf".localice "$split_dwarf" >/dev/null; then
echo "Output mismatch ($split_dwarf.localice), Mach object files, not knowing how to verify"
fi
if test -z "$chroot_disabled"; then
if ! diff "$split_dwarf".remoteice "$split_dwarf" >/dev/null; then
echo "Output mismatch ($split_dwarf.remoteice), Mach object files, not knowing how to verify"
fi
fi
elif echo "$output" | grep -q -e '\.o$' -e '\.dwo$'; then
# possibly cygwin .o file, no idea how to check they are the same if they are not 100% identical
if ! diff "$split_dwarf".localice "$split_dwarf" >/dev/null; then
echo "Output mismatch ($split_dwarf.localice), assuming Cygwin object files, not knowing how to verify"
fi
if test -z "$chroot_disabled"; then
if ! diff "$split_dwarf".remoteice "$split_dwarf" >/dev/null; then
echo "Output mismatch ($split_dwarf.remoteice), assuming Cygwin object files, not knowing how to verify"
fi
fi
fi
fi
if test $localice_exit -ne 0; then
echo "Command failed as expected."
echo
else
echo Command successful.
echo
fi
if test -n "$output"; then
if test -n "$keepoutput"; then
if test -z "$chroot_disabled"; then
mv "$output".remoteice "$output"
else
mv "$output".localice "$output"
fi
else
rm -f "output"
fi
rm -f "$output".localice "$output".remoteice "$output".readelf.txt "$output".local.readelf.txt "$output".remote.readelf.txt
fi
if test -n "$split_dwarf"; then
rm -f "$split_dwarf" "$split_dwarf".localice "$split_dwarf".remoteice "$split_dwarf".readelf.txt "$split_dwarf".local.readelf.txt "$split_dwarf".remote.readelf.txt
fi
rm -f "$testdir"/stderr "$testdir"/stderr.localice "$testdir"/stderr.remoteice
}
make_test()
{
# make test - actually try something somewhat realistic. Since each node is set up to serve
# only 2 jobs max, at least some of the 10 jobs should be built remotely.
echo Running make test.
reset_logs "" "make test"
make -f Makefile.test OUTDIR="$testdir" clean -s
ICECC_TEST_SOCKET="$testdir"/socket-localice ICECC_TEST_REMOTEBUILD=1 ICECC_DEBUG=debug ICECC_LOGFILE="$testdir"/icecc.log \
make -f Makefile.test OUTDIR="$testdir" CXX="${icecc} $TESTCXX" -j10 -s 2>>"$testdir"/stderr.log
if test $? -ne 0 -o ! -x "$testdir"/maketest; then
echo Make test failed.
stop_ice 0
abort_tests
fi
flush_logs
check_logs_for_generic_errors
check_everything_is_idle
check_log_message icecc "Have to use host 127.0.0.1:10246"
check_log_message icecc "Have to use host 127.0.0.1:10247"
check_log_message_count icecc 1 "<building_local>"
check_log_message remoteice1 "Remote compilation completed with exit code 0"
check_log_error remoteice1 "Remote compilation aborted with exit code"
check_log_error remoteice1 "Remote compilation exited with exit code $expected_exit"
check_log_message remoteice2 "Remote compilation completed with exit code 0"
check_log_error remoteice2 "Remote compilation aborted with exit code"
check_log_error remoteice2 "Remote compilation exited with exit code $expected_exit"
echo Make test successful.
echo
make -f Makefile.test OUTDIR="$testdir" clean -s
}
# 1st argument, if set, means we run without scheduler
icerun_serialize_test()
{
# test that icerun really serializes jobs and only up to 2 (max jobs of the local daemon) are run at any time
noscheduler=
test -n "$1" && noscheduler=" (no scheduler)"
echo "Running icerun${noscheduler} test."
reset_logs "" "icerun${noscheduler} test"
# remove . from PATH if set
save_path=$PATH
export PATH=$(echo $PATH | sed 's/:.:/:/' | sed 's/^.://' | sed 's/:.$//')
rm -rf "$testdir"/icerun
mkdir -p "$testdir"/icerun
if test -n "$valgrind"; then
export ICERUN_TEST_VALGRIND=1
fi
for i in $(seq 1 10); do
path=$PATH
if test $i -eq 1; then
# check icerun with absolute path
testbin=$(pwd)/icerun-test.sh
elif test $i -eq 2; then
# check with relative path
testbin=../tests/icerun-test.sh
elif test $i -eq 3; then
# test with PATH
testbin=icerun-test.sh
path=$(pwd):$PATH
else
testbin=./icerun-test.sh
fi
PATH=$path ICECC_TEST_SOCKET="$testdir"/socket-localice ICECC_TEST_REMOTEBUILD=1 ICECC_DEBUG=debug ICECC_LOGFILE="$testdir"/icecc.log \
$valgrind "${icerun}" $testbin "$testdir"/icerun $i &
done
unset ICERUN_TEST_VALGRIND
timeout=100
if test -n "$valgrind"; then
timeout=500
fi
seen2=
while true; do
runcount=$(ls -1 "$testdir"/icerun/running* 2>/dev/null | wc -l)
if test $runcount -gt 2; then
echo "Icerun${noscheduler} test failed, more than expected 2 processes running."
stop_ice 0
abort_tests
fi
test $runcount -eq 2 && seen2=1
donecount=$(ls -1 "$testdir"/icerun/done* 2>/dev/null | wc -l)
if test $donecount -eq 10; then
break
fi
sleep 0.1
timeout=$((timeout-1))
if test $timeout -eq 0; then
echo "Icerun${noscheduler} test timed out."
stop_ice 0
abort_tests
fi
done
if test -z "$seen2"; then
# Daemon is set up to run 2 jobs max, which means icerun should serialize only up to (and including) 2 jobs at the same time.
echo "Icerun${noscheduler} test failed, 2 processes were never run at the same time."
stop_ice 0
abort_tests
fi
flush_logs
check_logs_for_generic_errors
if test -z "$noscheduler"; then
check_everything_is_idle
fi
check_log_message_count icecc 10 "<building_local>"
check_log_error icecc "Have to use host 127.0.0.1:10246"
check_log_error icecc "Have to use host 127.0.0.1:10247"
check_log_error icecc "building myself, but telling localhost"
check_log_error icecc "local build forced"
echo "Icerun${noscheduler} test successful."
echo
rm -r "$testdir"/icerun
export PATH=$save_path
}
icerun_nopath_test()
{
reset_logs "" "icerun nopath test"
echo "Running icerun nopath test."
# check that plain 'icerun-test.sh' doesn't work for the current directory (i.e. ./ must be required just like with normal execution)
ICECC_TEST_SOCKET="$testdir"/socket-localice ICECC_TEST_REMOTEBUILD=1 ICECC_DEBUG=debug ICECC_LOGFILE="$testdir"/icecc.log \
$valgrind "${icerun}" icerun-test.sh
check_log_error icecc "invoking:"
check_log_message icecc "couldn't find any"
check_log_message icecc "could not find icerun-test.sh in PATH."
echo "Icerun nopath test successful."
echo
}
icerun_nocompile_test()
{
# check that 'icerun gcc' still only runs the command without trying a remote compile
reset_logs "" "icerun${noscheduler} nocompile test"
echo "Running icerun nocompile test."
rm -rf -- "$testdir"/fakegcc
mkdir -p "$testdir"/fakegcc
echo '#! /bin/sh' > "$testdir"/fakegcc/gcc
echo 'echo "$@" >' "$testdir"/fakegcc/output >> "$testdir"/fakegcc/gcc
echo 'exit 44' >> "$testdir"/fakegcc/gcc
chmod +x "$testdir"/fakegcc/gcc
args="-Wall a.c b.c -c -s"
ICECC_TEST_SOCKET="$testdir"/socket-localice ICECC_TEST_REMOTEBUILD=1 ICECC_DEBUG=debug ICECC_LOGFILE="$testdir"/icecc.log \
PATH="$testdir"/fakegcc:$PATH $valgrind "${icerun}" gcc $args
if test $? -ne 44; then
echo Error, icerun gcc failed.
stop_ice 0
abort_tests
fi
check_log_message icecc "invoking: $testdir/fakegcc/gcc $args\$"
rm -rf -- "$testdir"/fakegcc
echo "Icerun nocompile test successful."
echo
}
symlink_wrapper_test()
{
cxxwrapper="$wrapperdir/$(basename $TESTCXX)"
if ! test -e "$cxxwrapper"; then
echo Cannot find wrapper symlink for $TESTCXX, symlink wrapper test skipped.
echo
skipped_tests="$skipped_tests symlink_wrapper"
return
fi
reset_logs "local" "symlink wrapper test"
echo "Running symlink wrapper test."
ICECC_TEST_SOCKET="$testdir"/socket-localice ICECC_TEST_REMOTEBUILD=1 ICECC_DEBUG=debug ICECC_LOGFILE="$testdir"/icecc.log \
PATH=$(dirname $TESTCXX):$PATH ICECC_PREFERRED_HOST=localice $valgrind "$cxxwrapper" -Wall -c plain.cpp
if test $? -ne 0; then
echo Error, local symlink wrapper test failed.
stop_ice 0
abort_tests
fi
flush_logs
check_logs_for_generic_errors
check_everything_is_idle
check_log_error icecc "<building_local>"
check_log_error icecc "Have to use host 127.0.0.1:10246"
check_log_error icecc "Have to use host 127.0.0.1:10247"
check_log_message icecc "building myself, but telling localhost"
check_log_message icecc "invoking: $(command -v $TESTCXX) -Wall"
if test -z "$chroot_disabled"; then
mark_logs "remote" "symlink wrapper test"
ICECC_TEST_SOCKET="$testdir"/socket-localice ICECC_TEST_REMOTEBUILD=1 ICECC_DEBUG=debug ICECC_LOGFILE="$testdir"/icecc.log \
PATH=$(dirname $TESTCXX):$PATH ICECC_PREFERRED_HOST=remoteice1 $valgrind "$cxxwrapper" -Wall -c plain.cpp
if test $? -ne 0; then
echo Error, remote symlink wrapper test failed.
stop_ice 0
abort_tests
fi
flush_logs
check_logs_for_generic_errors
check_everything_is_idle
check_log_error icecc "<building_local>"
check_log_message icecc "Have to use host 127.0.0.1:10246"
check_log_error icecc "Have to use host 127.0.0.1:10247"
check_log_error icecc "building myself, but telling localhost"
check_log_message icecc "preparing source to send: $(command -v $TESTCXX) -Wall"
fi
echo "Symlink wrapper test successful."
echo
}
# Check that remote daemons handle gracefully when they get environment they cannot handle.
unhandled_environment_test()
{
if test -n "$chroot_disabled"; then
skipped_tests="$skipped_tests unhandled_environment"
return
fi
reset_logs "broken" "unhandled environment test"
echo "Running unhandled environment test."
# Use a .tar.gz that's not an archive at all, to fake a tarball compressed by something the remote can't uncompress.
ICECC_VERSION=brokenenvfile.tar.gz \
ICECC_TEST_SOCKET="$testdir"/socket-localice ICECC_TEST_REMOTEBUILD=1 ICECC_DEBUG=debug ICECC_LOGFILE="$testdir"/icecc.log \
PATH=$(dirname $TESTCXX):$PATH ICECC_PREFERRED_HOST=remoteice1 $valgrind "${icecc}" $TESTCXX -Wall -c plain.cpp
if test $? -ne 0; then
echo Error, unhandled environment test failed.
stop_ice 0
abort_tests
fi
flush_logs
check_logs_for_generic_errors "ignoreexception25"
check_everything_is_idle
# it will first try to build remotely, but because of the broken environment it'll have to retry locally
check_log_message icecc "Have to use host 127.0.0.1:10246"
check_log_message icecc "<building_local>"
check_log_error icecc "Have to use host 127.0.0.1:10247"
check_log_error icecc "building myself, but telling localhost"
check_log_message icecc "<Transfer Environment>"
check_log_message icecc "got exception Error 25 - other error verifying environment on remote"
local compression=
if grep -q "supported features:.* env_zstd" "$testdir"/remoteice1.log && command -v zstd >/dev/null; then
compression=zstd
elif grep -q "supported features:.* env_xz" "$testdir"/remoteice1.log && command -v xz >/dev/null; then
compression=xz
fi
if test -n "$compression"; then
# remoteice1 supports xz/zstd, but remoteice2 not (set in sources)
mark_logs "supported" "unhandled environment test"
# use ICECC_EXTRAFILES to force creating a new environment, otherwise the remote might already have it
local extrafile="$testdir"/uhandled_env_extrafile.txt
touch "$extrafile"
ICECC_ENV_COMPRESSION="$compression" ICECC_EXTRAFILES="$extrafile" \
ICECC_TEST_SOCKET="$testdir"/socket-localice ICECC_TEST_REMOTEBUILD=1 ICECC_DEBUG=debug ICECC_LOGFILE="$testdir"/icecc.log \
PATH=$(dirname $TESTCXX):$PATH ICECC_PREFERRED_HOST=remoteice1 $valgrind "${icecc}" $TESTCXX -Wall -c plain.cpp
if test $? -ne 0; then
echo Error, unhandled environment test failed.
stop_ice 0
abort_tests
fi
flush_logs
check_everything_is_idle
check_log_message icecc "Have to use host 127.0.0.1:10246"
check_log_error icecc "<building_local>"
check_log_error icecc "Have to use host 127.0.0.1:10247"
check_log_error icecc "building myself, but telling localhost"
check_log_message icecc "<Transfer Environment>"
mark_logs "unsupported" "unhandled environment test"
ICECC_ENV_COMPRESSION="$compression" ICECC_EXTRAFILES="$extrafile" \
ICECC_TEST_SOCKET="$testdir"/socket-localice ICECC_TEST_REMOTEBUILD=1 ICECC_DEBUG=debug ICECC_LOGFILE="$testdir"/icecc.log \
PATH=$(dirname $TESTCXX):$PATH ICECC_PREFERRED_HOST=remoteice2 $valgrind "${icecc}" $TESTCXX -Wall -c plain.cpp
if test $? -ne 0; then
echo Error, unhandled environment test failed.
stop_ice 0
abort_tests
fi
flush_logs
check_everything_is_idle
check_log_message icecc "building myself, but telling localhost"
check_log_error icecc "<building_local>"
check_log_error icecc "Have to use host 127.0.0.1:10246"
check_log_error icecc "Have to use host 127.0.0.1:10247"
check_log_message scheduler "No suitable host found, assigning submitter"
check_log_error icecc "<Transfer Environment>"
rm -f "$extrafile"
else
skipped_tests="$skipped_tests unhandled_environment_type"
fi
echo "Unhandled environment test successful."
echo
}
# Check that icecc --build-native works.
buildnativetest()
{
echo Running icecc --build-native test.
reset_logs "local" "Build native"
test_build_native_helper $TESTCC 1
if test $? -ne 0; then
echo Icecc --build-native test failed.
cat "$testdir"/icecc-build-native-output
stop_ice 0
abort_tests
fi
echo Icecc --build-native test successful.
echo
}
buildnativewithsymlinktest()
{
reset_logs local "Native environment with symlink"
echo Testing native environment with a compiler symlink.
rm -rf -- "$testdir"/wrappers
mkdir -p "$testdir"/wrappers
ln -s $(command -v $TESTCC) "$testdir"/wrappers/
ln -s $(command -v $TESTCXX) "$testdir"/wrappers/
test_build_native_helper "$testdir"/wrappers/$(basename $TESTCC) 0
if test $? -ne 0; then
echo Testing native environment with a compiler symlink failed.
cat "$testdir"/icecc-build-native-output
stop_ice 0
abort_tests
fi
rm -rf -- "$testdir"/wrappers
echo Testing native environment with a compiler symlink successful.
echo
}
buildnativewithwrappertest()
{
reset_logs local "Native environment with a compiler wrapper"
echo Testing native environment with a compiler wrapper.
rm -rf -- "$testdir"/wrappers
mkdir -p "$testdir"/wrappers
echo '#! /bin/sh' > "$testdir"/wrappers/$(basename $TESTCC)
echo exec $TESTCC '"$@"' >> "$testdir"/wrappers/$(basename $TESTCC)
echo '#! /bin/sh' > "$testdir"/wrappers/$(basename $TESTCXX)
echo exec $TESTCXX '"$@"' >> "$testdir"/wrappers/$(basename $TESTCXX)
chmod +x "$testdir"/wrappers/$(basename $TESTCC) "$testdir"/wrappers/$(basename $TESTCXX)
test_build_native_helper "$testdir"/wrappers/$(basename $TESTCC) 0
if test $? -ne 0; then
echo Testing native environment with a compiler symlink failed.
cat "$testdir"/icecc-build-native-output
stop_ice 0
abort_tests
fi
rm -rf -- "$testdir"/wrappers
echo Testing native environment with a compiler symlink successful.
echo
}
test_build_native_helper()
{
compiler=$1
add_skip=$2
pushd "$testdir" >/dev/null
ICECC_DEBUG=debug ICECC_LOGFILE="$testdir"/icecc.log ${icecc} --build-native $compiler > "$testdir"/icecc-build-native-output
if test $? -ne 0; then
return 1
fi
local tarball=$(sed -En '/^creating (.*\.tar.*)/s//\1/p' "$testdir"/icecc-build-native-output)
if test -z "$tarball"; then
return 2
fi
sudo -n -- ${icecc_test_env} -q "$tarball"
retcode=$?
if test $retcode -eq 1; then
echo Cannot verify environment, use sudo, skipping test.
if test "$add_skip" = "1"; then
skipped_tests="$skipped_tests $testtype"
fi
elif test $retcode -ne 0; then
echo icecc_test_env failed to validate the environment
return 3
fi
rm -f $tarball "$testdir"/icecc-build-native-output
popd >/dev/null
return 0
}
# Check that icecc recursively invoking itself is detected.
recursive_test()
{
echo Running recursive check test.
reset_logs "" "recursive check"
recursive_tester=
if test -n "$using_clang"; then
recursive_tester=./recursive_clang++
elif test -n "$using_gcc"; then
recursive_tester=./recursive_g++
fi
# We need to avoid automatic environment creation, which would normally be triggered
# since the path of the "compiler" is different. So force ICECC_VERSION.
mkdir -p "$testdir"/recursive_env
pushd "$testdir"/recursive_env >/dev/null
"${icecc}" --build-native $TESTCXX > "$testdir"/icecc-build-native-output
if test $? -ne 0; then
popd >/dev/null
echo Creating environment for recursive check test failed.
stop_ice 0
abort_tests
fi
popd >/dev/null
local tarball=$(sed -En '/^creating (.*\.tar.*)/s//\1/p' "$testdir"/icecc-build-native-output)
test_env="$testdir"/recursive_env/${tarball}
PATH="$prefix"/lib/icecc/bin:"$prefix"/bin:/usr/local/bin:/usr/bin:/bin ICECC_TEST_SOCKET="$testdir"/socket-localice \
ICECC_VERSION=$test_env ICECC_TEST_REMOTEBUILD=1 ICECC_DEBUG=debug ICECC_LOGFILE="$testdir"/icecc.log \
"${icecc}" ./${recursive_tester} -Wall -c plain.c -o plain.o 2>>"$testdir"/stderr.log
if test $? -ne 111; then
echo Recursive check test failed.
stop_ice 0
abort_tests
fi
flush_logs
check_logs_for_generic_errors "localrebuild"
check_everything_is_idle
check_log_message icecc "icecream seems to have invoked itself recursively!"
echo Recursive check test successful.
echo
# But a recursive invocations in the style of icerun->icecc is allowed.
echo Running recursive icerun check test.
reset_logs "" "recursive icerun check"
PATH="$prefix"/lib/icecc/bin:"$prefix"/bin:/usr/local/bin:/usr/bin:/bin ICECC_TEST_SOCKET="$testdir"/socket-localice \
ICECC_VERSION=$test_env ICECC_TEST_REMOTEBUILD=1 ICECC_DEBUG=debug ICECC_LOGFILE="$testdir"/icecc.log \
"${icerun}" ${icecc} $TESTCC -Wall -c plain.c -o "$testdir"/plain.o 2>>"$testdir"/stderr.log
if test $? -ne 0; then
echo Recursive icerun check test failed.
stop_ice 0
abort_tests
fi
rm -f "$testdir"/plain.o
flush_logs
check_logs_for_generic_errors "localrebuild"
check_everything_is_idle
check_log_error icecc "icecream seems to have invoked itself recursively!"
check_log_message_count icecc 1 "recursive invocation from icerun"
echo Recursive icerun check test successful.
echo
rm -rf "$testdir"/recursive_env
}
# Check that transfering Clang plugin(s) works. While at it, also test ICECC_EXTRAFILES.
clangplugintest()
{
echo Running Clang plugin test.
reset_logs "" "clang plugin"
if test -z "$LLVM_CONFIG"; then
LLVM_CONFIG=llvm-config
fi
clangcxxflags=$($LLVM_CONFIG --cxxflags 2>>"$testdir"/stderr.log)
if test $? -ne 0; then
echo Cannot find Clang development headers, clang plugin test skipped.
echo
skipped_tests="$skipped_tests clangplugin"
return
fi
echo Clang plugin compile flags: $clangcxxflags
$TESTCXX -shared -fPIC -g -o "$testdir"/clangplugin.so clangplugin.cpp $clangcxxflags 2>>"$testdir"/stderr.log
if test $? -ne 0; then
echo Failed to compile clang plugin, clang plugin test skipped.
echo
skipped_tests="$skipped_tests clangplugin"
return
fi
# TODO This should be able to also handle the clangpluginextra.txt argument without the absolute path.
export ICECC_EXTRAFILES=clangpluginextra.txt
run_ice "$testdir/clangplugintest.o" "remote" 0 $TESTCXX -Wall -c -Xclang -load -Xclang "$testdir"/clangplugin.so \
-Xclang -add-plugin -Xclang icecreamtest -Xclang -plugin-arg-icecreamtest -Xclang $(realpath -s clangpluginextra.txt) \
clangplugintest.cpp -o "$testdir"/clangplugintest.o
unset ICECC_EXTRAFILES
also_remote=
if test -z "$chroot_disabled"; then
also_remote=".remoteice"
fi
for type in "" ".localice" $also_remote; do
check_section_log_message_count stderr${type} 1 "clangplugintest.cpp:3:5: warning: Icecream plugin found return false"
check_section_log_message_count stderr${type} 1 "warning: Extra file check successful"
check_section_log_error stderr${type} "Extra file open error"
check_section_log_error stderr${type} "Incorrect number of arguments"
check_section_log_error stderr${type} "File contents do not match"
done
echo Clang plugin test successful.
echo
}
# Both clang and gcc4.8+ produce different debuginfo depending on whether the source file is
# given on the command line or using stdin (which is how icecream does it), so do not compare output.
# But check the functionality is identical to local build.
# First argument is the compiler.
# Second argument is compile command, without -o argument.
# Third argument is first line of debug at which to start comparing.
# Follow optional arguments, in this order:
# - hasdebug - specifies that there should be debug info present (will check for a variable value)
debug_test()
{
compiler="$1"
args="$2"
cmd="$1 $2"
debugstart="$3"
shift
shift
shift
hasdebug=
if test "$1" = "hasdebug"; then
hasdebug=1
shift
fi
echo "Running debug test ($cmd)."
reset_logs "" "debug test ($cmd)"
preferred=remoteice1
if test -n "$chroot_disabled"; then
preferred=localice
fi
ICECC_TEST_SOCKET="$testdir"/socket-localice ICECC_TEST_REMOTEBUILD=1 ICECC_PREFERRED_HOST=$preferred ICECC_DEBUG=debug ICECC_LOGFILE="$testdir"/icecc.log $valgrind "${icecc}" \
$cmd -o "$testdir"/debug-remote.o 2>>"$testdir"/stderr.log
if test $? -ne 0; then
echo Debug test compile failed.
stop_ice 0
abort_tests
fi
flush_logs
check_logs_for_generic_errors
check_everything_is_idle
if test -z "$chroot_disabled"; then
check_log_message icecc "Have to use host 127.0.0.1:10246"
check_log_error icecc "Have to use host 127.0.0.1:10247"
check_log_error icecc "building myself, but telling localhost"
check_log_error icecc "local build forced"
check_log_error icecc "<building_local>"
check_log_message remoteice1 "Remote compilation completed with exit code 0"
check_log_error remoteice1 "Remote compilation aborted with exit code"
check_log_error remoteice1 "Remote compilation exited with exit code"
else
check_log_message icecc "building myself, but telling localhost"
check_log_error icecc "Have to use host 127.0.0.1:10246"
check_log_error icecc "Have to use host 127.0.0.1:10247"
check_log_error icecc "local build forced"
check_log_error icecc "<building_local>"
fi
$compiler -o "$testdir"/debug-remote "$testdir"/debug-remote.o
if test $? -ne 0; then
echo Linking in debug test failed.
stop_ice 0
abort_tests
fi
gdb -nx -batch -x debug-gdb.txt "$testdir"/debug-remote >"$testdir"/debug-stdout-remote.txt 2>/dev/null
if ! grep -A 1000 "$debugstart" "$testdir"/debug-stdout-remote.txt >"$testdir"/debug-output-remote.txt ; then
echo "Debug check failed (remote)."
stop_ice 0
abort_tests
fi
$cmd -o "$testdir"/debug-local.o 2>>"$testdir"/stderr.log
if test $? -ne 0; then
echo Debug test compile failed.
stop_ice 0
abort_tests
fi
$compiler -o "$testdir"/debug-local "$testdir"/debug-local.o
if test $? -ne 0; then
echo Linking in debug test failed.
stop_ice 0
abort_tests
fi
gdb -nx -batch -x debug-gdb.txt "$testdir"/debug-local >"$testdir"/debug-stdout-local.txt 2>/dev/null
if ! grep -A 1000 "$debugstart" "$testdir"/debug-stdout-local.txt >"$testdir"/debug-output-local.txt ; then
echo "Debug check failed (local)."
stop_ice 0
abort_tests
fi
if test -n "$hasdebug"; then
# debug-gdb.txt prints the value of one variable, check it. It has to be present twice, once in the listing, once when printed.
local value=$(grep "debugMember =" "$testdir"/debug-output-local.txt | sed 's/.*debugMember = \(.*\);/\1/')
if test -z "$value"; then
echo "Debug check variable value failed (not found)."
stop_ice 0
abort_tests
fi
local count=$(grep "$value" "$testdir"/debug-output-local.txt | wc -l)
if test "$count" != 2; then
echo "Debug check variable value failed (count $count)."
stop_ice 0
abort_tests
fi
fi
# Binaries without debug infos use hex addresses for some symbols, which may differ between runs
# or builds, but is technically harmless. So remove symbol and stack addresses and let the readelf check handle that.
sed -i -e 's/=0x[0-9a-fA-F]*//g' "$testdir"/debug-output-remote.txt
sed -i -e 's/=0x[0-9a-fA-F]*//g' "$testdir"/debug-output-local.txt
if ! diff "$testdir"/debug-output-local.txt "$testdir"/debug-output-remote.txt >/dev/null; then
echo Gdb output different.
echo =====================
diff -u "$testdir"/debug-output-local.txt "$testdir"/debug-output-remote.txt
echo =====================
stop_ice 0
abort_tests
fi
# gcc-4.8+ has -grecord-gcc-switches, which makes the .o differ because of the extra flags the daemon adds,
# this changes DW_AT_producer and also offsets
local remove_debug_info="s/\(Length\|DW_AT_\(GNU_dwo_\(id\|name\)\|comp_dir\|producer\|linkage_name\|name\)\).*/\1/g"
local remove_offset_number="s/<[A-Fa-f0-9]*>/<>/g"
local remove_size_of_area="s/\(Size of area in.*section:\)\s*[0-9]*/\1/g"
local remove_debug_pubnames="/^\s*Offset\s*Name/,/^\s*$/s/\s*[A-Fa-f0-9]*\s*//"
if file "$testdir"/debug-remote.o | grep ELF >/dev/null; then
readelf -wlLiaprmfFoRt "$testdir"/debug-remote.o | sed -e 's/offset: 0x[0-9a-fA-F]*//g' \
-e 's/[ ]*--param ggc-min-expand.*heapsize\=[0-9]\+//g' \
-e "$remove_debug_info" \
-e "$remove_offset_number" \
-e "$remove_size_of_area" \
-e "$remove_debug_pubnames" > "$testdir"/readelf-remote.txt
readelf -wlLiaprmfFoRt "$testdir"/debug-local.o | sed -e 's/offset: 0x[0-9a-fA-F]*//g' \
-e "$remove_debug_info" \
-e "$remove_offset_number" \
-e "$remove_size_of_area" \
-e "$remove_debug_pubnames" > "$testdir"/readelf-local.txt
if ! diff "$testdir"/readelf-local.txt "$testdir"/readelf-remote.txt >/dev/null; then
echo Readelf output different.
echo =====================
diff -u "$testdir"/readelf-local.txt "$testdir"/readelf-remote.txt
echo =====================
stop_ice 0
abort_tests
fi
elif file "$testdir"/debug-remote.o | grep Mach >/dev/null; then
# No idea how to check they are the same if they are not 100% identical
if ! diff "$testdir"/debug-local.o "$testdir"/debug-remote.o >/dev/null; then
echo "Output mismatch, Mach object files, not knowing how to verify"
fi
else
# possibly cygwin .o file, no idea how to check they are the same if they are not 100% identical
if ! diff "$testdir"/debug-local.o "$testdir"/debug-remote.o >/dev/null; then
echo "Output mismatch, assuming Cygwin object files, not knowing how to verify"
fi
fi
rm -f "$testdir"/debug-remote.o "$testdir"/debug-local.o "$testdir"/debug-remote "$testdir"/debug-local "$testdir"/debug-*-*.txt "$testdir"/readelf-*.txt
echo Debug test successful.
echo
}
zero_local_jobs_test()
{
echo Running zero local jobs test.
reset_logs "" "Running zero local jobs test"
kill_daemon localice
start_iceccd localice --no-remote -m 0
wait_for_ice_startup_complete localice
libdir="${testdir}/libs"
rm -rf "${libdir}"
mkdir "${libdir}"
mark_logs remote $TESTCXX -Wall -Werror -c testfunc.cpp -o "${testdir}/testfunc.o"
echo Running: $TESTCXX -Wall -Werror -c testfunc.cpp -o "${testdir}/testfunc.o"
ICECC_TEST_SOCKET="$testdir"/socket-localice ICECC_TEST_REMOTEBUILD=1 ICECC_PREFERRED_HOST=remoteice1 ICECC_DEBUG=debug ICECC_LOGFILE="$testdir"/icecc.log $valgrind "${icecc}" $TESTCXX -Wall -Werror -c testfunc.cpp -o "${testdir}/testfunc.o"
if [[ $? -ne 0 ]]; then
echo "failed to build testfunc.o"
stop_ice 0
abort_tests
fi
mark_logs remote $TESTCXX -Wall -Werror -c testmainfunc.cpp -o "${testdir}/testmainfunc.o"
echo Running: $TESTCXX -Wall -Werror -c testmainfunc.cpp -o "${testdir}/testmainfunc.o"
ICECC_TEST_SOCKET="$testdir"/socket-localice ICECC_TEST_REMOTEBUILD=1 ICECC_PREFERRED_HOST=remoteice2 ICECC_DEBUG=debug ICECC_LOGFILE="$testdir"/icecc.log $valgrind "${icecc}" $TESTCXX -Wall -Werror -c testmainfunc.cpp -o "${testdir}/testmainfunc.o"
if test $? -ne 0; then
echo "Error, failed to compile testfunc.cpp"
stop_ice 0
abort_tests
fi
ar rcs "${libdir}/libtestlib1.a" "${testdir}/testmainfunc.o"
if test $? -ne 0; then
echo "Error, 'ar' failed to create the ${libdir}/libtestlib1.a static library from object ${testdir}/testmainfunc.o"
stop_ice 0
abort_tests
fi
ar rcs "${libdir}/libtestlib2.a" "${testdir}/testfunc.o"
if test $? -ne 0; then
echo "Error, 'ar' failed to create the ${libdir}/libtestlib2.a static library from object ${testdir}/testfunc.o"
stop_ice 0
abort_tests
fi
mark_logs local $TESTCXX -Wall -Werror "-L${libdir}" "-ltestlib1" "-ltestlib2" -o "${testdir}/linkedapp"
echo Running: $TESTCXX -Wall -Werror "-L${libdir}" "-ltestlib1" "-ltestlib2" -o "${testdir}/linkedapp"
ICECC_TEST_SOCKET="$testdir"/socket-localice ICECC_TEST_REMOTEBUILD=1 ICECC_PREFERRED_HOST=localice ICECC_DEBUG=debug ICECC_LOGFILE="$testdir"/icecc.log $valgrind "${icecc}" $TESTCXX -Wall -Werror "-L${libdir}" "-ltestlib1" "-ltestlib2" -o "${testdir}/linkedapp" 2>>"$testdir"/stderr.log
if test $? -ne 0; then
echo "Error, failed to link testlib1 and testlib2 into linkedapp"
stop_ice 0
abort_tests
fi
"${testdir}/linkedapp" 2>>"$testdir"/stderr.log
app_ret=$?
if test ${app_ret} -ne 123; then
echo "Error, failed to create a test app by building remotely and linking locally"
stop_ice 0
abort_tests
fi
rm -rf "${libdir}"
kill_daemon localice
start_iceccd localice --no-remote -m 2
wait_for_ice_startup_complete localice
echo Zero local jobs test successful.
echo
}
ccache_test()
{
if ! command -v ccache >/dev/null; then
echo Could not find ccache, ccache tests skipped.
echo
skipped_tests="$skipped_tests ccache"
return
fi
reset_logs "verify" "Testing ccache error redirect"
echo Testing ccache error redirect.
# First check that everything actually works (the test itself doesn't have icecc debug enabled and uses only stderr, because of ccache).
rm -rf "$testdir/ccache"
ICECC_TEST_SOCKET="$testdir"/socket-localice ICECC_TEST_REMOTEBUILD=1 ICECC_PREFERRED_HOST=remoteice1 ICECC_DEBUG=debug ICECC_LOGFILE="$testdir"/icecc.log \
CCACHE_PREFIX=${icecc} CCACHE_DIR="$testdir"/ccache ICECC_VERSION=testbrokenenv ccache $TESTCXX -Wall -Werror -c plain.cpp -o "$testdir/"plain.o 2>>"$testdir"/stderr.log
check_log_message icecc "ICECC_VERSION has to point to an existing file to be installed testbrokenenv"
# Second run, will get cached result, so there's no icecc error in ccache's cached stderr
ICECC_TEST_SOCKET="$testdir"/socket-localice ICECC_TEST_REMOTEBUILD=1 ICECC_PREFERRED_HOST=remoteice1 ICECC_DEBUG=debug ICECC_LOGFILE="$testdir"/icecc.log \
CCACHE_PREFIX=${icecc} CCACHE_DIR="$testdir"/ccache ICECC_VERSION=testbrokenenv ccache $TESTCXX -Wall -Werror -c plain.cpp -o "$testdir/"plain.o 2>>"$testdir"/stderr.log
check_log_message_count icecc 1 "ICECC_VERSION has to point to an existing file to be installed testbrokenenv"
# Now run it again, this time without icecc debug redirected, so that ccache has to handle icecc's stderr.
reset_logs "cache" "Testing ccache error redirect"
rm -rf "$testdir/ccache"
ICECC_TEST_SOCKET="$testdir"/socket-localice ICECC_TEST_REMOTEBUILD=1 ICECC_PREFERRED_HOST=remoteice1 ICECC_DEBUG=debug \
CCACHE_PREFIX=${icecc} CCACHE_DIR="$testdir"/ccache ICECC_VERSION=testbrokenenv ccache $TESTCXX -Wall -Werror -c plain.cpp -o "$testdir/"plain.o 2>>"$testdir"/stderr.log
if cat_log_last_mark stderr | grep -q "UNCACHED_ERR_FD provides an invalid file descriptor"; then
echo UNCACHED_ERR_FD provided by ccache is invalid, skipping test.
echo
skipped_tests="$skipped_tests ccache"
return
fi
if ! cat_log_last_mark stderr | grep -q "ICECC_VERSION has to point to an existing file to be installed testbrokenenv"; then
# If ccache's UNCACHED_ERR_FD handling is broken, the fd number may match an unrelated open fd, in which case the log message just disappears.
echo Missing icecc stderr output from ccache, assuming broken ccache, skipping test.
echo
skipped_tests="$skipped_tests ccache"
return
fi
# second run, will get cached result, so there's no icecc error in ccache's cached stderr
reset_logs "test" "Testing ccache error redirect"
ICECC_TEST_SOCKET="$testdir"/socket-localice ICECC_TEST_REMOTEBUILD=1 ICECC_PREFERRED_HOST=remoteice1 \
CCACHE_PREFIX=${icecc} CCACHE_DIR="$testdir"/ccache ICECC_VERSION=testbrokenenv ccache $TESTCXX -Wall -Werror -c plain.cpp -o "$testdir/"plain.o 2>>"$testdir"/stderr.log
check_section_log_error stderr "ICECC_VERSION has to point to an existing file to be installed testbrokenenv"
echo Testing ccache error redirect successful.
echo
}
# Try to find a different version of the used compiler, use both of them and verify the remote compilation
# uses the matching version (e.g. /usr/bin/gcc -> gcc-8 and there's also /usr/bin/gcc-7).
differentcompilerversiontest()
{
# First check $TESTCC. Compile to just assembler, which will output .ident "version".
# If remote uses a different compiler, the test will find the difference and fail.
run_ice "$testdir/plain.s" "remote" 0 "$TESTCC" -Wall -Werror -S plain.c -o "$testdir/"plain.s
# Try to find a different version of $TESTCC.
# Just search /usr/bin/.
if test -n "$using_gcc"; then
files="$(ls /usr/bin/gcc-[0-9\.-]* 2>/dev/null)"
elif test -n "$using_clang"; then
files="$(ls /usr/bin/clang-[0-9\.-]* 2>/dev/null)"
fi
different=
if test -n "$files"; then
for file in $files; do
if test "$($TESTCC --version | head -1)" != "$($files --version | head -1)"; then
different="$file"
break
fi
done
fi
if test -z "$different"; then
echo Could not find a different version for $TESTCC, skipping test.
echo
skipped_tests="$skipped_tests different_compiler"
return
fi
echo Different compiler version:
"$different" --version
echo
# Run a normal compile test for it first, this one already may find a difference.
run_ice "$testdir/plain.o" "remote" 0 "$different" -Wall -Werror -c plain.c -o "$testdir/"plain.o
# And now again compile to just assembler, which will output .ident "version".
# If remote uses a different compiler (e.g. $TESTCC), the test will find the difference and fail.
run_ice "$testdir/plain.s" "remote" 0 "$different" -Wall -Werror -S plain.c -o "$testdir/"plain.s
}
# All log files that are used by tests. Done here to keep the list in just one place.
daemonlogs="scheduler scheduler2 localice remoteice1 remoteice2"
otherlogs="icecc stderr stderr.localice stderr.remoteice"
alltestlogs="$daemonlogs $otherlogs"
# Call this at the start of a complete test (e.g. testing a feature). If a test fails, logs before this point will not be dumped.
reset_logs()
{
local type="$1"
shift
last_reset_log_mark=$flush_log_mark
mark_logs $type "$@"
}
# Call this at the start of a sub-test (e.g. remote vs local build). Functions such as check_log_message will not check before the mark.
mark_logs()
{
local type="$1"
shift
last_section_log_mark=$flush_log_mark
echo ================ > "$testdir"/log_header.txt
if test -n "$type"; then
echo "= Test ($type): $@" >> "$testdir"/log_header.txt
else
echo "= Test : $@" >> "$testdir"/log_header.txt
fi
echo ================ >> "$testdir"/log_header.txt
# Make daemons write the header.
flush_logs
manual="$otherlogs"
for daemon in $daemonlogs; do
pid=${daemon}_pid
if test -n "${!pid}"; then
$killcmd -0 ${!pid}
if test $? -ne 0; then
manual="$manual $daemon"
fi
else
manual="$manual $daemon"
fi
done
for log in $manual; do
cat "$testdir"/log_header.txt >> "$testdir"/${log}.log
done
rm "$testdir"/log_header.txt
}
flush_logs()
{
echo "=${flush_log_mark}=" > "$testdir"/flush_log_mark.txt
wait_for=
manual="$otherlogs"
for daemon in $daemonlogs; do
pid=${daemon}_pid
if test -n "${!pid}"; then
$killcmd -HUP ${!pid}
if test $? -eq 0; then
wait_for="$wait_for $daemon"
else
manual="$manual $daemon"
fi
else
manual="$manual $daemon"
fi
done
# wait for all daemons to log the mark in their log
while test -n "$wait_for"; do
ready=1
for daemon in $wait_for; do
if ! grep -q "flush log mark: =${flush_log_mark}=" "$testdir"/${daemon}.log; then
ready=
fi
done
if test -n "$ready"; then
break
fi
done
for log in $manual; do
echo "flush log mark: =${flush_log_mark}=" >> "$testdir"/${log}.log
done
rm "$testdir"/flush_log_mark.txt
flush_log_mark=$((flush_log_mark + 1))
}
dump_logs()
{
for log in $alltestlogs; do
# Skip logs that have only headers and flush marks
if cat_log_last_section ${log} | grep -q -v "^="; then
echo ------------------------------------------------
echo "Log: ${log}"
cat_log_last_section ${log}
fi
done
# Valgrind-listener merges all logs together, split them per PID.
if test -f "$testdir"/valgrind.log; then
cat "$testdir"/valgrind.log | sed 's/^([0-9]\+) //' | grep '^==[0-9]\+==' > "$testdir"/valgrind.tmp
while true; do
valpid=$(head -1 "$testdir"/valgrind.tmp | sed 's/^==\([0-9]*\)==.*$/\1/' 2>/dev/null)
if test -z "$valpid"; then
break
fi
log="$testdir"/valgrind2.tmp
grep "^==${valpid}==" "$testdir"/valgrind.tmp > ${log}
has_error=
if test -n "$valgrind_error_markers"; then
if grep -q ICEERRORBEGIN ${log}; then
has_error=1
fi
else
# Let's guess that every error message has this.
if grep -q '^==[0-9]*== at ' ${log}; then
has_error=1
fi
fi
if test -n "$has_error"; then
echo ------------------------------------------------
echo "Log: valgrind-$valpid.log"
grep -v ICEERRORBEGIN ${log} | grep -v ICEERROREND
fi
grep -v "^==${valpid}==" "$testdir"/valgrind.tmp > ${log}
mv ${log} "$testdir"/valgrind.tmp
done
rm -f "$testdir"/valgrind.tmp "$testdir"/valgrind2.tmp
fi
}
cat_log_last_mark()
{
log="$1"
grep -A 100000 "flush log mark: =${last_section_log_mark}=" "$testdir"/${log}.log | grep -v "flush log mark: "
}
cat_log_last_section()
{
log="$1"
grep -A 100000 "flush log mark: =${last_reset_log_mark}=" "$testdir"/${log}.log | grep -v "flush log mark: "
}
# Optional arguments, in this order:
# - localrebuild - specifies that the command might have resulted in local recompile
# - ignoreexception25 - ignore expection 25 (cannot verify environment)
# - ignorenosuitablehost - ignore scheduler's "No suitable host found, assigning submitter"
check_logs_for_generic_errors()
{
localrebuild=
ignoreexception25=
ignorenosuitablehost=
if test "$1" = "localrebuild"; then
localrebuild=1
shift
fi
if test "$1" = "ignoreexception25"; then
ignoreexception25=1
shift
fi
if test "$1" = "ignorenosuitablehost"; then
ignorenosuitablehost=1
shift
fi
check_log_error scheduler "that job isn't handled by"
check_log_error scheduler "the server isn't the same for job"
if test -z "ignoreexception25"; then
check_log_error icecc "got exception "
else
check_log_error_except icecc "got exception " "got exception Error 25"
fi
check_log_error icecc "found another non option on command line. Two input files"
for log in localice remoteice1 remoteice2; do
check_log_error $log "Ignoring bogus version"
check_log_error $log "scheduler closed connection"
done
for log in scheduler icecc localice remoteice1 remoteice2; do
check_log_error $log "internal error"
if test -n "$localrebuild"; then
# If the client finds out it needs to do a local rebuild because of the need to fix
# stderr, it will simply close the connection to the remote daemon, so the remote
# daemon may get broken pipe when trying to write the object file. That's harmless.
if test "$log" != remoteice1 -a "$log" != "remoteice2"; then
check_log_error $log "setting error state for channel"
fi
fi
done
# consider all non-fatal errors such as running out of memory on the remote
# still as problems, except for:
# 102 - -fdiagnostics-show-caret forced local build (gcc-4.8+)
if test -n "$localrebuild"; then
check_log_error_except icecc "local build forced" "local build forced by remote exception"
else
check_log_error icecc "local build forced"
fi
if test -z "$ignorenosuitablehost"; then
check_log_error scheduler "No suitable host found, assigning submitter"
fi
has_valgrind_error=
if test -n "$valgrind_error_markers"; then
if grep -q "ICEERRORBEGIN" "$testdir"/valgrind.log 2>/dev/null; then
has_valgrind_error=1
fi
else
if grep -q '^==[0-9]*== at ' "$testdir"/valgrind.log 2>/dev/null; then
has_valgrind_error=1
fi
fi
if test -n "$has_valgrind_error"; then
echo Valgrind detected an error, aborting.
stop_ice 0
abort_tests
fi
}
check_log_error()
{
log="$1"
if cat_log_last_mark ${log} | grep -q "$2"; then
echo "Error, $log log contains error: $2"
stop_ice 0
abort_tests
fi
}
check_section_log_error()
{
log="$1"
if cat_log_last_section ${log} | grep -q "$2"; then
echo "Error, $log log contains error: $2"
stop_ice 0
abort_tests
fi
}
# check the error message ($2) is not present in log ($1),
# but the exception ($3) is allowed
check_log_error_except()
{
log="$1"
if cat_log_last_mark ${log} | grep -v "$3" | grep -q "$2" ; then
echo "Error, $log log contains error: $2"
stop_ice 0
abort_tests
fi
}
check_log_message()
{
log="$1"
if ! cat_log_last_mark ${log} | grep -q "$2"; then
echo "Error, $log log does not contain: $2"
stop_ice 0
abort_tests
fi
}
check_section_log_message()
{
log="$1"
if ! cat_log_last_section ${log} | grep -q "$2"; then
echo "Error, $log log does not contain: $2"
stop_ice 0
abort_tests
fi
}
check_log_message_count()
{
log="$1"
expected_count="$2"
count=$(cat_log_last_mark ${log} | grep "$3" | wc -l)
if test $count -ne $expected_count; then
echo "Error, $log log does not contain expected count (${count} vs ${expected_count}): $3"
stop_ice 0
abort_tests
fi
}
check_section_log_message_count()
{
log="$1"
expected_count="$2"
count=$(cat_log_last_section ${log} | grep "$3" | wc -l)
if test $count -ne $expected_count; then
echo "Error, $log log does not contain expected count (${count} vs ${expected_count}): $3"
stop_ice 0
abort_tests
fi
}
# Check that there are no pending jobs.
check_everything_is_idle()
{
# Use expect, using telnet is broken as plain "echo foo | telnet" quits before getting the reply.
local output=$(expect << EOF
spawn telnet localhost 8768
expect "200 Use 'help' for help and 'quit' to quit."
send "listcs\r"
expect "200 done"
send "quit\r"
interact
EOF
)
echo "$output" | grep -q "200 Use 'help' for help and 'quit' to quit."
if test $? -ne 0; then
echo "Error, cannot reach scheduler control interface."
echo "$output"
stop_ice 0
abort_tests
fi
echo "$output" | grep -q " 3 hosts,"
if test $? -ne 0; then
echo "Error, not all 3 nodes connected to the scheduler."
echo "$output"
stop_ice 0
abort_tests
fi
echo "$output" | grep -q " 0 jobs in queue"
if test $? -ne 0; then
echo "Error, there are still pending jobs."
echo "$output"
stop_ice 0
abort_tests
fi
echo "$output" | grep -E "jobs=[0-9]+/[0-9]+" | sed -E 's#^.*jobs=([0-9]+)/[0-9]+.*$#\1#' | grep -q -v "0"
if test $? -eq 0; then
echo "Error, nodes still have pending jobs."
echo "$output"
stop_ice 0
abort_tests
fi
}
# ==================================================================
# Main code starts here
# ==================================================================
trap 'trap_handler' SIGINT
echo
check_compilers
stop_ice 2
for log in $alltestlogs; do
rm -f "$testdir"/${log}.log
rm -f "$testdir"/${log}_section.log
rm -f "$testdir"/${log}_all.log
echo -n >"$testdir"/${log}.log
done
rm -f "$testdir"/valgrind.log 2>/dev/null
if test -n "$valgrind"; then
valgrind-listener >"$testdir"/valgrind.log &
valgrind_listener_pid=$!
sleep 1
fi
buildnativetest
echo Starting icecream.
reset_logs local "Starting"
start_ice
check_logs_for_generic_errors
check_everything_is_idle
echo Starting icecream successful.
echo
run_ice "$testdir/plain.o" "remote" 0 $TESTCXX -Wall -Werror -c plain.cpp -o "$testdir/"plain.o
run_ice "$testdir/plain.o" "remote" 0 $TESTCC -Wall -Werror -c plain.c -o "$testdir/"plain.o
run_ice "$testdir/plain.o" "remote" 0 $TESTCXX -Wall -Werror -c plain.cpp -O2 -o "$testdir/"plain.o
run_ice "$testdir/plain.ii" "local" 0 $TESTCXX -Wall -Werror -E plain.cpp -o "$testdir/"plain.ii
run_ice "$testdir/includes.o" "remote" 0 $TESTCXX -Wall -Werror -c includes.cpp -o "$testdir"/includes.o
run_ice "$testdir/includes.o" "remote" 0 $TESTCXX -Wall -Werror -c includes-without.cpp -include includes.h -o "$testdir"/includes.o
run_ice "$testdir/plain.o" "remote" 0 $TESTCC -Wall -Werror -x c++ -c plain -o "$testdir"/plain.o
run_ice "$testdir/plain.s" "remote" 0 $TESTCC -Wall -Werror -S plain.c -o "$testdir"/plain.s
run_ice "$testdir/plain.o" "remote" 0 $TESTCC -Wall -Werror -Wpedantic -c plain.c -o "$testdir/"plain.o
if test -n "$using_clang"; then
target_cpu=$($TESTCXX -### -E - -march=native 2>&1 | grep '"-cc1"' | sed 's/^.* "-target-cpu" "\([^"]*\)".*$/\1/')
run_ice "$testdir/plain.o" "remote" 0 $TESTCXX -Wall -Werror -c plain.cpp -march=native -o "$testdir"/plain.o
if test -z "$chroot_disabled"; then
check_section_log_message remoteice1 "remote compile arguments:.* -Xclang -target-cpu -Xclang $target_cpu "
fi
else
target_cpu=$($TESTCXX -### -E - -march=native 2>&1 | grep '/cc1 ' | sed 's/^.* "-march=\([^"]*\)".*$/\1/')
run_ice "$testdir/plain.o" "remote" 0 $TESTCXX -Wall -Werror -c plain.cpp -march=native -o "$testdir"/plain.o
if test -z "$chroot_disabled"; then
check_section_log_message remoteice1 "remote compile arguments:.* -march=$target_cpu "
fi
fi
$TESTCC -Wa,-al=listing.txt -Wall -Werror -c plain.c -o "$testdir/"plain.o 2>/dev/null
if test $? -eq 0; then
run_ice "$testdir/plain.o" "local" 0 $TESTCC -Wa,-al=listing.txt -Wall -Werror -c plain.c -o "$testdir/"plain.o
else
skipped_tests="$skipped_tests asm_listing"
fi
$TESTCC -Wa,macros.s -Wall -Werror -c plain.c -o "$testdir/"plain.o 2>/dev/null
if test $? -eq 0; then
run_ice "$testdir/plain.o" "remote" 0 $TESTCC -Wa,macros.s -Wall -Werror -c plain.c -o "$testdir/"plain.o
else
skipped_tests="$skipped_tests asm_macros"
fi
$TESTCC -Wa,--defsym,MYSYM=yes -Wall -Werror -c plain.c -o "$testdir/"plain.o 2>/dev/null
if test $? -eq 0; then
run_ice "$testdir/plain.o" "remote" 0 $TESTCC -Wa,--defsym,MYSYM=yes -Wall -Werror -c plain.c -o "$testdir/"plain.o
else
skipped_tests="$skipped_tests asm_defsym"
fi
$TESTCC -Wa,@assembler.args -Wall -Werror -c plain.c -o "$testdir/"plain.o 2>/dev/null
if test $? -eq 0; then
run_ice "$testdir/plain.o" "local" 0 $TESTCC -Wa,@assembler.args -Wall -Werror -c plain.c -o "$testdir/"plain.o
else
skipped_tests="$skipped_tests asm_defsym"
fi
run_ice "$testdir/testdefine.o" "remote" 0 $TESTCXX -Wall -Werror -DICECREAM_TEST_DEFINE=test -c testdefine.cpp -o "$testdir/"testdefine.o
run_ice "$testdir/testdefine.o" "remote" 0 $TESTCXX -Wall -Werror -D ICECREAM_TEST_DEFINE=test -c testdefine.cpp -o "$testdir/"testdefine.o
run_ice "" "remote" 300 "localrebuild" "remoteabort" "nostderrcheck" $TESTCXX -c nonexistent.cpp
if test -e /bin/true; then
run_ice "" "local" 0 /bin/true
elif test -e /usr/bin/true; then
run_ice "" "local" 0 /usr/bin/true
else
skipped_tests="$skipped_tests run-true"
fi
run_ice "" "local" 300 "nostderrcheck" /bin/nonexistent-at-all-doesnt-exist
run_ice "$testdir/warninginmacro.o" "remote" 0 $TESTCXX -Wall -Wextra -Werror -c warninginmacro.cpp -o "$testdir/"warninginmacro.o
run_ice "$testdir/unusedmacro.o" "remote" 0 "unusedmacrohack" $TESTCXX -Wall -Wunused-macros -c unusedmacro.cpp -o "$testdir/unusedmacro.o"
if test -n "$using_gcc"; then
# These all break because of -fdirectives-only bugs, check we manage to build them somehow.
run_ice "$testdir/countermacro.o" "remote" 0 "localrebuild" "remoteabort" "nostderrcheck" $TESTCC -Wall -Werror -c countermacro.c -o "$testdir"/countermacro.o
if $TESTCXX -std=c++11 -fsyntax-only -Werror -c rawliterals.cpp 2>/dev/null; then
run_ice "$testdir/rawliterals.o" "remote" 0 "localrebuild" "remoteabort" "nostderrcheck" $TESTCXX -std=c++11 -Wall -Werror -c rawliterals.cpp -o "$testdir"/rawliterals.o
fi
fi
if $TESTCXX -cxx-isystem ./ -fsyntax-only -Werror -c includes.cpp 2>/dev/null; then
run_ice "$testdir/includes.o" "remote" 0 $TESTCXX -Wall -Werror -cxx-isystem ./ -c includes.cpp -o "$testdir"/includes.o
else
skipped_tests="$skipped_tests cxx-isystem"
fi
if test -n "$using_clang"; then
target=$($TESTCXX -dumpmachine)
run_ice "$testdir/plain.o" "remote" 0 $TESTCXX -Wall -Werror -target $target -c plain.cpp -o "$testdir"/plain.o
if test -z "$chroot_disabled"; then
check_section_log_message remoteice1 "remote compile arguments:.*-target $target"
run_ice "$testdir/plain.o" "remote" 0 $TESTCXX -Wall -Werror -c plain.cpp -o "$testdir"/plain.o
check_section_log_message remoteice1 "remote compile arguments:.*-target $target"
fi
run_ice "$testdir/plain.o" "remote" 0 $TESTCXX -Wall -Werror --target=$target -c plain.cpp -o "$testdir"/plain.o
if test -z "$chroot_disabled"; then
check_section_log_message remoteice1 "remote compile arguments:.*--target=$target"
check_section_log_error remoteice1 "remote compile arguments:.*-target $target"
fi
else
skipped_tests="$skipped_tests target"
fi
debug_fission_disabled=1
rm -f "$testdir"/true.dwo
$TESTCXX -gsplit-dwarf -g true.cpp -o "$testdir"/true 2>/dev/null >/dev/null
if test $? -eq 0 -a -f true.dwo; then
"$testdir"/true
if test $? -eq 0; then
debug_fission_disabled=
fi
rm -f "$testdir"/true true.dwo
fi
if test -n "$debug_fission_disabled"; then
skipped_tests="$skipped_tests split-dwarf"
fi
if test -z "$debug_fission_disabled"; then
run_ice "$testdir/plain.o" "remote" 0 "split_dwarf" $TESTCXX -Wall -Werror -gsplit-dwarf -g -c plain.cpp -o "$testdir/"plain.o
run_ice "$testdir/plain.o" "remote" 0 "split_dwarf" $TESTCC -Wall -Werror -gsplit-dwarf -c plain.c -o "$testdir/"plain.o
run_ice "$testdir/plain.o" "remote" 0 "split_dwarf" $TESTCC -Wall -Werror -gsplit-dwarf -c plain.c -o "../../../../../../../..$testdir/plain.o"
run_ice "" "remote" 300 "localrebuild" "split_dwarf" "remoteabort" "nostderrcheck" $TESTCXX -gsplit-dwarf -c nonexistent.cpp
fi
if test -z "$chroot_disabled"; then
if test -z "$using_gcc"; then
run_ice "" "remote" 1 $TESTCXX -c syntaxerror.cpp
check_section_log_error icecc "local build forced by remote exception: Error 102 - command needs stdout/stderr workaround, recompiling locally"
run_ice "$testdir/messages.o" "remote" 0 $TESTCXX -Wall -c messages.cpp -o "$testdir"/messages.o
check_log_message stderr "warning: unused variable 'unused'"
check_section_log_error icecc "local build forced by remote exception: Error 102 - command needs stdout/stderr workaround, recompiling locally"
else
if $TESTCXX -E -fdiagnostics-show-caret -Werror messages.cpp >/dev/null 2>/dev/null; then
# check gcc stderr workaround, icecream will force a local recompile
run_ice "" "remote" 1 "localrebuild" $TESTCXX -c -fdiagnostics-show-caret syntaxerror.cpp
run_ice "$testdir/messages.o" "remote" 0 "localrebuild" $TESTCXX -Wall -c -fdiagnostics-show-caret messages.cpp -o "$testdir"/messages.o
check_log_message stderr "warning: unused variable 'unused'"
check_section_log_message icecc "local build forced by remote exception: Error 102 - command needs stdout/stderr workaround, recompiling locally"
# try again without the local recompile
run_ice "" "remote" 1 $TESTCXX -c -fno-diagnostics-show-caret syntaxerror.cpp
run_ice "$testdir/messages.o" "remote" 0 $TESTCXX -Wall -c -fno-diagnostics-show-caret messages.cpp -o "$testdir"/messages.o
check_log_message stderr "warning: unused variable 'unused'"
check_section_log_error icecc "local build forced by remote exception: Error 102 - command needs stdout/stderr workaround, recompiling locally"
else
# This gcc is too old to have this problem, but we do not check the gcc version in icecc.
run_ice "" "remote" 1 "localrebuild" $TESTCXX -c syntaxerror.cpp
check_section_log_message icecc "local build forced by remote exception: Error 102 - command needs stdout/stderr workaround, recompiling locally"
run_ice "$testdir/messages.o" "remote" 0 "localrebuild" $TESTCXX -Wall -c messages.cpp -o "$testdir"/messages.o
check_log_message stderr "warning: unused variable 'unused'"
check_section_log_message icecc "local build forced by remote exception: Error 102 - command needs stdout/stderr workaround, recompiling locally"
fi
fi
else
skipped_tests="$skipped_tests gcc-caret"
fi
if command -v gdb >/dev/null; then
if command -v readelf >/dev/null; then
debug_test "$TESTCXX" "-c -g debug.cpp" "Temporary breakpoint 1, main () at debug.cpp:8" "hasdebug"
debug_test "$TESTCXX" "-c -g $(pwd)/debug/debug2.cpp" "Temporary breakpoint 1, main () at .*debug/debug2.cpp:8" "hasdebug"
debug_test "$TESTCXX" "-c -g0 debug.cpp" "Temporary breakpoint 1, 0x"
if test -z "$debug_fission_disabled"; then
debug_test "$TESTCXX" "-c -g debug.cpp -gsplit-dwarf" "Temporary breakpoint 1, main () at debug.cpp:8" "hasdebug"
debug_test "$TESTCXX" "-c -g $(pwd)/debug/debug2.cpp -gsplit-dwarf" "Temporary breakpoint 1, main () at .*debug/debug2.cpp:8" "hasdebug"
debug_test "$TESTCXX" "-c debug.cpp -gsplit-dwarf -g0" "Temporary breakpoint 1, 0x"
fi
fi
else
skipped_tests="$skipped_tests debug"
fi
if $TESTCXX -fsanitize=address -Werror fsanitize.cpp -o /dev/null >/dev/null 2>/dev/null; then
run_ice "$testdir/fsanitize.o" "remote" 0 keepoutput $TESTCXX -c -fsanitize=address -g fsanitize.cpp -o "$testdir"/fsanitize.o
$TESTCXX -fsanitize=address -g "$testdir"/fsanitize.o -o "$testdir"/fsanitize 2>>"$testdir"/stderr.log
if test $? -ne 0; then
echo "Linking for -fsanitize test failed."
stop_ice 0
abort_tests
fi
"$testdir"/fsanitize 2>>"$testdir"/stderr.log
check_log_message stderr "ERROR: AddressSanitizer: heap-use-after-free"
# Only newer versions of ASAN have the SUMMARY line.
if grep -q "^SUMMARY:" "$testdir"/stderr.log; then
check_log_message stderr "SUMMARY: AddressSanitizer: heap-use-after-free .*fsanitize.cpp:5.* test_fsanitize_function()"
fi
rm "$testdir"/fsanitize.o
if $TESTCXX -fsanitize=address -fsanitize-blacklist=fsanitize-blacklist.txt -c -fsyntax-only fsanitize.cpp >/dev/null 2>/dev/null; then
run_ice "$testdir/fsanitize.o" "remote" 0 keepoutput $TESTCXX -c -fsanitize=address -fsanitize-blacklist=fsanitize-blacklist.txt -g fsanitize.cpp -o "$testdir"/fsanitize.o
$TESTCXX -fsanitize=address -fsanitize-blacklist=fsanitize-blacklist.txt -g "$testdir"/fsanitize.o -o "$testdir"/fsanitize 2>>"$testdir"/stderr.log
if test $? -ne 0; then
echo "Linking for -fsanitize test failed."
stop_ice 0
abort_tests
fi
"$testdir"/fsanitize 2>>"$testdir"/stderr.log
check_log_error stderr "ERROR: AddressSanitizer: heap-use-after-free"
if grep -q "^SUMMARY:" "$testdir"/stderr.log; then
check_log_error stderr "SUMMARY: AddressSanitizer: heap-use-after-free .*fsanitize.cpp:5 in test()"
fi
rm "$testdir"/fsanitize.o
run_ice "" "local" 300 $TESTCXX -c -fsanitize=address -fsanitize-blacklist=nonexistent -g fsanitize.cpp -o "$testdir"/fsanitize.o
check_section_log_message icecc "file for argument -fsanitize-blacklist=nonexistent missing, building locally"
# Check that a path with /../ is resolved properly (use the debug/ subdir of another test).
run_ice "$testdir/fsanitize.o" "remote" 0 $TESTCXX -c -fsanitize=address -fsanitize-blacklist=debug/../fsanitize-blacklist.txt -g fsanitize.cpp -o "$testdir"/fsanitize.o
check_section_log_error icecc "file for argument -fsanitize-blacklist=.*/fsanitize-blacklist.txt missing, building locally"
rm -rf "$testdir"/fsanitize
else
skipped_tests="$skipped_tests fsanitize-blacklist"
fi
else
skipped_tests="$skipped_tests fsanitize"
fi
# test -frewrite-includes usage
$TESTCXX -E -Werror -frewrite-includes messages.cpp 2>/dev/null | grep -q '^# 1 "messages.cpp"$' >/dev/null 2>/dev/null
if test $? -eq 0; then
run_ice "$testdir/messages.o" "remote" 0 $TESTCXX -Wall -c messages.cpp -o "$testdir"/messages.o
check_log_message stderr "warning: unused variable 'unused'"
else
echo $TESTCXX does not provide functional -frewrite-includes, skipping test.
echo
skipped_tests="$skipped_tests clang_rewrite_includes"
fi
run_ice "$testdir/includes.h.gch" "local" 0 "keepoutput" $TESTCXX -x c++-header -Wall -Werror -c includes.h -o "$testdir"/includes.h.gch
run_ice "$testdir/includes.o" "remote" 0 $TESTCXX -Wall -Werror -c includes.cpp -include "$testdir"/includes.h -Winvalid-pch -o "$testdir"/includes.o
if test -n "$using_clang"; then
run_ice "$testdir/includes.o" "remote" 0 $TESTCXX -Wall -Werror -c includes.cpp -include-pch "$testdir"/includes.h.gch -o "$testdir"/includes.o
$TESTCXX -Werror -fsyntax-only -Xclang -building-pch-with-obj -c includes.cpp -include-pch "$testdir"/includes.h.gch 2>/dev/null
if test $? -eq 0; then
run_ice "$testdir/includes.o" "local" 0 $TESTCXX -Wall -Werror -Xclang -building-pch-with-obj -c includes.cpp -include-pch "$testdir"/includes.h.gch -o "$testdir"/includes.o
# local and remote run will leave a message => 2
check_section_log_message_count icecc 2 "invoking: $(command -v $TESTCXX) -Wall -Werror -Xclang -building-pch-with-obj"
else
skipped_tests="$skipped_tests clang_building_pch_with_obj"
fi
fi
rm "$testdir"/includes.h.gch
if test -n "$using_clang"; then
clangplugintest
else
skipped_tests="$skipped_tests clangplugin"
fi
differentcompilerversiontest
icerun_serialize_test
icerun_nopath_test
icerun_nocompile_test
recursive_test
ccache_test
unhandled_environment_test
symlink_wrapper_test
if test -z "$chroot_disabled"; then
make_test
else
skipped_tests="$skipped_tests make_test"
fi
if test -z "$chroot_disabled"; then
zero_local_jobs_test
else
skipped_tests="$skipped_tests zero_local_jobs_test"
fi
if test -z "$chroot_disabled"; then
echo Testing different netnames.
reset_logs remote "Different netnames"
stop_ice 1
# Start the secondary scheduler before the primary, so that besides the different netname it would be the preferred scheduler.
ICECC_TESTS=1 ICECC_TEST_SCHEDULER_PORTS=8767:8769 \
ICECC_TEST_FLUSH_LOG_MARK="$testdir"/flush_log_mark.txt ICECC_TEST_LOG_HEADER="$testdir"/log_header.txt \
$valgrind "${icecc_scheduler}" -p 8769 -l "$testdir"/scheduler2.log -n ${netname}_secondary -v -v -v &
scheduler2_pid=$!
echo $scheduler2_pid > "$testdir"/scheduler2.pid
wait_for_ice_startup_complete scheduler2
start_ice
check_log_message scheduler2 "Received scheduler announcement from .* (version $schedulerprotocolversion, netname ${netname})"
check_log_error scheduler "has announced itself as a preferred scheduler, disconnecting all connections"
check_log_message localice "Ignoring scheduler at .*:8769 because of a different netname (${netname}_secondary)"
check_log_message remoteice1 "Ignoring scheduler at .*:8769 because of a different netname (${netname}_secondary)"
check_log_message remoteice2 "Ignoring scheduler at .*:8769 because of a different netname (${netname}_secondary)"
stop_secondary_scheduler 1
echo Different netnames test successful.
echo
echo Testing multiple schedulers.
reset_logs remote "Multiple schedulers"
# Make this scheduler fake its start time to appear to have been running a longer time,
# so it should be the preferred scheduler. We could similarly fake the version to be higher,
# but this should be safer.
ICECC_TESTS=1 ICECC_TEST_SCHEDULER_PORTS=8767:8769 ICECC_FAKE_STARTTIME=1 \
ICECC_TEST_FLUSH_LOG_MARK="$testdir"/flush_log_mark.txt ICECC_TEST_LOG_HEADER="$testdir"/log_header.txt \
$valgrind "${icecc_scheduler}" -p 8769 -l "$testdir"/scheduler2.log -n ${netname} -v -v -v &
scheduler2_pid=$!
echo $scheduler2_pid > "$testdir"/scheduler2.pid
wait_for_ice_startup_complete scheduler2
# Give the primary scheduler time to disconnect all clients.
sleep 1
check_log_message scheduler "Received scheduler announcement from .* (version $schedulerprotocolversion, netname ${netname})"
check_log_message scheduler "has announced itself as a preferred scheduler, disconnecting all connections"
check_log_error scheduler2 "has announced itself as a preferred scheduler, disconnecting all connections"
check_log_message localice "scheduler closed connection"
check_log_message remoteice1 "scheduler closed connection"
check_log_message remoteice2 "scheduler closed connection"
# Daemons will not connect to the secondary debug scheduler (not implemented).
stop_secondary_scheduler 1
echo Multiple schedulers test successful.
echo
echo Testing reconnect.
reset_logs remote "Reconnect"
wait_for_ice_startup_complete localice remoteice1 remoteice2
flush_logs
check_log_message scheduler "login localice protocol version: ${daemonprotocolversion}"
check_log_message scheduler "login remoteice1 protocol version: ${daemonprotocolversion}"
check_log_message scheduler "login remoteice2 protocol version: ${daemonprotocolversion}"
check_log_message localice "Connected to scheduler"
check_log_message remoteice1 "Connected to scheduler"
check_log_message remoteice2 "Connected to scheduler"
echo Reconnect test successful.
echo
else
skipped_tests="$skipped_tests scheduler_multiple"
fi
reset_logs local "Closing down"
stop_ice 1
check_logs_for_generic_errors
reset_logs local "Starting only daemon"
start_only_daemon
# even without scheduler, icerun should still serialize, but still run up to local number of jobs in parallel
icerun_serialize_test "noscheduler"
reset_logs local "Closing down (only daemon)"
stop_only_daemon 1
buildnativewithsymlinktest
buildnativewithwrappertest
if test -n "$valgrind"; then
rm -f "$testdir"/valgrind.log
fi
ignore=
if test -n "$using_gcc"; then
# gcc (as of now) doesn't know these options, ignore these tests if they fail
ignore="cxx-isystem target fsanitize-blacklist clangplugin clang_rewrite_includes clang_building_pch_with_obj"
elif test -n "$using_clang"; then
# clang (as of now) doesn't know these
ignore="asm_listing asm_macros asm_defsym asm_defsym"
# This one is fairly new (clang7?), so do not require it.
ignore="$ignore clang_building_pch_with_obj"
fi
ignored_tests=
for item in $ignore; do
if echo " $skipped_tests " | grep -q "$item"; then
ignored_tests="$ignored_tests $item"
skipped_tests="${skipped_tests/$item/}"
fi
skipped_tests=$(echo $skipped_tests | sed 's/ / /g' | sed 's/^ //')
done
if test -n "$ignored_tests"; then
echo Ignored tests: $ignored_tests
fi
if test -n "$skipped_tests"; then
if test -n "$strict"; then
echo "All executed tests passed, but some were skipped: $skipped_tests"
echo "Strict mode enabled, failing."
echo ==================================================
exit 1
else
echo "All tests OK, some were skipped: $skipped_tests"
echo =================================
fi
else
echo All tests OK.
echo =============
fi
if test -n "$valgrind_listener_pid"; then
sleep 1
kill "$valgrind_listener_pid"
fi
exit 0
|