From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gnu.wildebeest.org (wildebeest.demon.nl [212.238.236.112]) by sourceware.org (Postfix) with ESMTPS id C3A1F385840F for ; Fri, 3 Sep 2021 11:14:57 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org C3A1F385840F Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=klomp.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=klomp.org Received: from tarox.wildebeest.org (83-87-18-245.cable.dynamic.v4.ziggo.nl [83.87.18.245]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by gnu.wildebeest.org (Postfix) with ESMTPSA id C803E30002C0; Fri, 3 Sep 2021 13:14:50 +0200 (CEST) Received: by tarox.wildebeest.org (Postfix, from userid 1000) id 304954028E86; Fri, 3 Sep 2021 13:14:50 +0200 (CEST) Message-ID: Subject: Re: Buildbot failure in Wildebeest Builder on whole buildset From: Mark Wielaard To: buildbot@builder.wildebeest.org, elfutils-devel@sourceware.org Date: Fri, 03 Sep 2021 13:14:50 +0200 In-Reply-To: <20210903103338.2D87C8026A2@builder.wildebeest.org> References: <20210903103338.2D87C8026A2@builder.wildebeest.org> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Mailer: Evolution 3.28.5 (3.28.5-10.el7) Mime-Version: 1.0 X-Spam-Status: No, score=-10.4 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: elfutils-devel@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Elfutils-devel mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2021 11:14:59 -0000 On Fri, 2021-09-03 at 10:33 +0000, buildbot@builder.wildebeest.org wrote: > The Buildbot has detected a new failure on builder elfutils-centos- > x86_64 while building elfutils. > Full details are available at: > https://builder.wildebeest.org/buildbot/#builders/1/builds/813 >=20 > Buildbot URL: https://builder.wildebeest.org/buildbot/ >=20 > Worker for this Build: centos-x86_64 >=20 > Build Reason: > Blamelist: Noah Sanci >=20 > BUILD FAILED: failed test (failure) Gah, sorry. That was my fault. The last minute change to move stuff into its own file. Forgot to to add that to EXTRA_DIST. Hopefully fixed by: commit 70f36e32cfd83bdaf8a255613acff9ec2b0c0cde Author: Mark Wielaard Date: Fri Sep 3 13:10:43 2021 +0200 tests: Add debuginfod-subr.sh to EXTRA_DIST =20 Signed-off-by: Mark Wielaard diff --git a/tests/ChangeLog b/tests/ChangeLog index 0529f641..9540f738 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,7 @@ +2021-09-03 Mark Wielaard + + * debuginfod-subr.sh (EXTRA_DIST): Add debuginfod-subr.sh. + 2021-08-28 Mark Wielaard =20 * run-debuginfod-find.sh: Use ":memory:" for the diff --git a/tests/Makefile.am b/tests/Makefile.am index 3c302e72..c586422e 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -300,7 +300,7 @@ EXTRA_DIST =3D run-arextract.sh run-arsymtest.sh run-ar= .sh \ testfile21.bz2 testfile21.index.bz2 \ testfile22.bz2 testfile23.bz2 testfile24.bz2 testfile25.bz2 \ testfile26.bz2 testfile27.bz2 \ - coverage.sh test-subr.sh test-wrapper.sh \ + coverage.sh test-subr.sh test-wrapper.sh debuginfod-subr.sh \ run-readelf-test1.sh run-readelf-test2.sh run-readelf-test3.sh \ run-readelf-test4.sh run-readelf-twofiles.sh \ run-bug1-test.sh testfile28.bz2 testfile28.rdwr.bz2 \