blob: 6905da965f3bdcc75bdc4e0c123e993361a7a8a4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
# Runs API tests for struct ww_mutex (Wait/Wound mutexes)
if /sbin/modprobe -q test-ww_mutex; then
/sbin/modprobe -q -r test-ww_mutex
echo "locking/ww_mutex: ok"
else
echo "locking/ww_mutex: [FAIL]"
exit 1
fi
|