#1073045 elfutils: test failures are ignored

#1073045#5
Date:
2024-06-12 07:55:36 UTC
From:
To:
All test failures during make check are ignored, see the following line
in debian/rules:

 -LC_CTYPE=C $(MAKE) check $(USE_JOBS) || { cat tests/test-suite.log; exit 1; }

Please drop the initial hyphen to ensure that the build fails in case of
test failures:

 LC_CTYPE=C $(MAKE) check $(USE_JOBS) || { cat tests/test-suite.log; exit 1; }