kernelci / kernelci-backend

Upstream Linux Kernel Validation Project API
http://api.kernelci.org
GNU Lesser General Public License v2.1
40 stars 27 forks source link

unparsed warnings and errors #295

Open nickdesaulniers opened 2 years ago

nickdesaulniers commented 2 years ago

Given a link to a report, such as https://linux.kernelci.org/build/android/branch/android12-5.10/kernel/ASB-2022-01-05_12-5.10-22-ga32e89883a53/:

(under the Errors tab, the default in the above link): ixp4xx_defconfig, and pxa_defconfig are red, yet have no errors or warnings, yet are red. Does that signify a boot error then? The warning logs for ixp4xx_defconfig aren't empty, so maybe it's an issue parsing warnings from the assembler? Same for the error log.

gctucker commented 2 years ago

These are builds that failed because make returned a non-zero status. There's no errors shown because the logs were not parsed correctly. So it's not an issue with the frontend but with the logic in the backend to match errors. It hasn't been updated in years while compilers have evolved and we're running LLVM/Clang builds now. Also, yes maybe it's not matching assembler warnings and errors.

I'll move this issue to kernelci-backend as that's where the problem currently lies.