aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Savoye <rob.savoye@linaro.org>2016-03-23 12:13:26 -0600
committerLinaro Code Review <review@review.linaro.org>2016-04-28 07:17:17 +0000
commite1f2a254f31c93818c89f34ffc4665ec8a812509 (patch)
treebd4f9eb8b82a88b510dc9c1e160981e3a1a23e19
parentdd14bd5b0117b25cbc27c033b931420b9d043b5c (diff)
Run make check even when building binary tarballs and improve comment.
Change-Id: I69310152fcb7393a9c46ad85095f1af1eda6503f
-rwxr-xr-xlib/make.sh7
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/make.sh b/lib/make.sh
index a029668a..82dc75d6 100755
--- a/lib/make.sh
+++ b/lib/make.sh
@@ -134,11 +134,8 @@ build_all()
# If we're building a full toolchain the binutils tests need to be built
# with the stage 2 compiler, and therefore we shouldn't run unit-test
# until the full toolchain is built. Therefore we test all toolchain
- # packages after the full toolchain is built. If ${runtests} is empty
- # the user has requested that no tests run. Binary tarballs have
- # testing executed on the installed libraries and executables, not on
- # the source tree.
- if test x"${runtests}" != x -a x"${tarbin}" != x"yes"; then
+ # packages after the full toolchain is built.
+ if test x"${runtests}" != x; then
notice "Testing components ${runtests}..."
buildingall=no
local check_ret=0