Buildbot failure in Wildebeest Builder on whole buildset
The Buildbot has detected a new failure on builder elfutils-fedora-x86_64 while building elfutils. Full details are available at: https://builder.wildebeest.org/buildbot/#builders/3/builds/900 Buildbot URL: https://builder.wildebeest.org/buildbot/ Worker for this Build: fedora-x86_64 Build Reason: Blamelist: Frank Ch. Eigler BUILD FAILED: failed test (failure) Sincerely, -The Buildbot
Re: Buildbot failure in Wildebeest Builder on whole buildset
Hi, On Mon, Feb 07, 2022 at 08:27:47PM +, build...@builder.wildebeest.org wrote: > The Buildbot has detected a new failure on builder elfutils-fedora-x86_64 > while building elfutils. > Full details are available at: > https://builder.wildebeest.org/buildbot/#builders/3/builds/900 > > Buildbot URL: https://builder.wildebeest.org/buildbot/ > > Worker for this Build: fedora-x86_64 > > Build Reason: > Blamelist: Frank Ch. Eigler > > BUILD FAILED: failed test (failure) This is an odd one. It happens during make distcheck, after make check passed. FAIL: run-readelf-compressed-zstd.sh /srv/buildbot/worker/elfutils-fedora-x86_64/build/elfutils-0.186/_build/sub/src/readelf: failed reading 'hello_i386.ko.zst': zstd decompression failed Which would mean that zstd decompresssion only failed when using -fsanitize=undefined and/or running under valgrind (both are enabled by distcheck, but aren't used during the previous make check). If someone can replicate this that would be useful. Cheers, Mark
Re: Buildbot failure in Wildebeest Builder on whole buildset
Hi all, On Mon, Feb 07, 2022 at 09:46:26PM +0100, Mark Wielaard wrote: > This is an odd one. It happens during make distcheck, after make check passed. > > FAIL: run-readelf-compressed-zstd.sh > > /srv/buildbot/worker/elfutils-fedora-x86_64/build/elfutils-0.186/_build/sub/src/readelf: > failed reading 'hello_i386.ko.zst': zstd decompression failed > > Which would mean that zstd decompresssion only failed when using > -fsanitize=undefined and/or running under valgrind (both are enabled > by distcheck, but aren't used during the previous make check). Replicated on an updated Fedora 35, run-readelf-compressed-zstd.sh passes without valgrind, but fails running under valgrind. Specifically: $ cp tests/hello_i386.ko.bz2 . $ bunzip2 hello_i386.ko.bz2 $ zstd hello_i386.ko $ LD_LIBRARY_PATH=libelf:libdw src/readelf -a hello_i386.ko.zst > /dev/null $ LD_LIBRARY_PATH=libelf:libdw valgrind -q src/readelf -a hello_i386.ko.zst src/readelf: failed reading 'hello_i386.ko.zst': zstd decompression failed I haven't figured out why yet. Cheers, Mark