mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
3611ed7378
Note that run_test() calls coredumpctl in a loop because in certain environments (1 vCPU unaccelerated QEMU VM) it might take quite a while to process the coredump.
48 lines
892 B
Bash
Executable File
48 lines
892 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
test_rule="/run/udev/rules.d/49-test.rules"
|
|
|
|
setup() {
|
|
mkdir -p "${test_rule%/*}"
|
|
cp -f /etc/udev/udev.conf /etc/udev/udev.conf.bckp
|
|
echo 'KERNEL=="lo", SUBSYSTEM=="net", PROGRAM=="/bin/sleep 60"' > "${test_rule}"
|
|
echo "event_timeout=30" >> /etc/udev/udev.conf
|
|
echo "timeout_signal=SIGABRT" >> /etc/udev/udev.conf
|
|
|
|
systemctl restart systemd-udevd.service
|
|
}
|
|
|
|
teardown() {
|
|
set +e
|
|
|
|
mv -f /etc/udev/udev.conf.bckp /etc/udev/udev.conf
|
|
rm -f "$test_rule"
|
|
systemctl restart systemd-udevd.service
|
|
}
|
|
|
|
run_test() {
|
|
since="$(date +%T)"
|
|
|
|
echo add > /sys/class/net/lo/uevent
|
|
|
|
for n in {1..20}; do
|
|
sleep 5
|
|
if coredumpctl --since "$since" --no-legend --no-pager | grep /bin/udevadm ; then
|
|
return 0
|
|
fi
|
|
done
|
|
|
|
return 1
|
|
}
|
|
|
|
trap teardown EXIT
|
|
|
|
setup
|
|
run_test
|
|
|
|
echo OK > /testok
|
|
|
|
exit 0
|