From: kay.sievers@vrfy.org Date: Mon, 11 Apr 2005 20:38:41 +0000 (+0200) Subject: [PATCH] add test for make -j4 to build-check X-Git-Tag: 057~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=05bd6efb41b6a80378cc4f6e7427a302b4953541;p=thirdparty%2Fsystemd.git [PATCH] add test for make -j4 to build-check --- diff --git a/Makefile b/Makefile index 9c755ba4de9..8520b5cc50c 100644 --- a/Makefile +++ b/Makefile @@ -427,3 +427,4 @@ uninstall: uninstall-man uninstall-dev.d test: all @ cd test && ./udev-test.pl + @ cd test && ./udevstart-test.pl diff --git a/test/simple-build-check.sh b/test/simple-build-check.sh index 1ebe044b984..d1e13e69eda 100644 --- a/test/simple-build-check.sh +++ b/test/simple-build-check.sh @@ -10,7 +10,7 @@ make all $MAKEOPTS EXTRAS="$EXTRAS" || exit echo -e "\n\n" make spotless EXTRAS="$EXTRAS" >/dev/null -make all $MAKEOPTS DEBUG=true EXTRAS="$EXTRAS" || exit +make all -j4 $MAKEOPTS DEBUG=true EXTRAS="$EXTRAS" || exit echo -e "\n\n" make spotless EXTRAS="$EXTRAS" >/dev/null @@ -18,7 +18,7 @@ make all $MAKEOPTS USE_LOG=false EXTRAS="$EXTRAS" || exit echo -e "\n\n" make spotless EXTRAS="$EXTRAS" >/dev/null -make all $MAKEOPTS USE_KLIBC=true DEBUG=true EXTRAS="$EXTRAS" KERNEL_DIR="$KERNEL_DIR" || exit +make all -j4 $MAKEOPTS USE_KLIBC=true DEBUG=true EXTRAS="$EXTRAS" KERNEL_DIR="$KERNEL_DIR" || exit echo -e "\n\n" make spotless EXTRAS="$EXTRAS" >/dev/null