[Buildroot] [git commit branch/2019.02.x] utils/test-pkg: ensure to exit with an error upon failure

Peter Korsgaard peter at korsgaard.com
Mon Oct 28 16:34:04 UTC 2019


commit: https://git.buildroot.net/buildroot/commit/?id=24301c3557df7d4477f37ac993840f621b7401c1
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/2019.02.x

This commit modifies the main() function so that it returns the sum of
build and legal errors, making sure the overall test-pkg script exists
with a non-zero error code upon failure.

Signed-off-by: Heiko Thiery <heiko.thiery at kontron.com>
[Thomas: improved commit log]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni at bootlin.com>
(cherry picked from commit 5093435f664992449ffe2a02b701765499e85027)
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 utils/test-pkg | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/utils/test-pkg b/utils/test-pkg
index f3b34d5d0d..a317d8c17a 100755
--- a/utils/test-pkg
+++ b/utils/test-pkg
@@ -138,6 +138,8 @@ main() {
 
     printf "%d builds, %d skipped, %d build failed, %d legal-info failed\n" \
         ${nb} ${nb_skip} ${nb_fail} ${nb_legal}
+
+    return $((nb_fail + nb_legal))
 }
 
 build_one() {


More information about the buildroot mailing list