1
0
Fork 0

Adding upstream version 4.2+20231026.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-14 06:31:53 +01:00
parent 2454e16a2c
commit 59abf67a86
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
30 changed files with 956 additions and 423 deletions

8
test
View file

@ -107,8 +107,12 @@ do_test() {
echo -ne "$_script... "
if ( set -ex ; . $_script ) &> $targetdir/log
then
dmesg | grep -iq "error\|call trace\|segfault" &&
die "dmesg prints errors when testing $_basename!"
if [ -f "${_script}.inject_error" ]; then
echo "dmesg checking is skipped because test inject error"
else
dmesg | grep -iq "error\|call trace\|segfault" &&
die "dmesg prints errors when testing $_basename!"
fi
echo "succeeded"
_fail=0
else