This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
Re: Status of build bots?
On Thu, 22 Aug 2019, Tulio Magno Quites Machado Filho wrote:
> Notice the GDB buildbot has a mechanism to distinguish between new failures
> (regressions) and existent failures, e.g.
> https://gdb-buildbot.osci.io/#/builders/7/builds/542
>
> This is important because it avoids hiding a second regression while we're
> fixing the first one.
That's useful while we don't have a fully clean baseline - but fully
clean baselines are still valuable (so new contributors don't need to
discover for themselves which FAILs are expected, so distributors don't
all need to replicate their own lists of expected FAILs, etc.).
> files=$(find . -name '*.test-result');
List should be sorted to avoid being in a random order.
> for f in ${files}; do
> if ! grep -qE "PASS|XFAIL|UNSUPPORTED" "${f}"; then
> out=$(echo ${f} | sed -e 's/\.test-result/.out/');
out=${f%.test-result}.out
> echo "---=== ${out} ===---";
> cat "${out}"
Note that ${out} might not exist in some cases.
--
Joseph S. Myers
joseph@codesourcery.com