blob: a5840d54b67bfff7db6452d107c24b2c61cccbf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# Check umount syscall decoding.
. "${srcdir=.}/init.sh"
case "$STRACE_ARCH" in
alpha) syscall=oldumount ;;
*) syscall=umount ;;
esac
run_strace_match_diff -a24 -s6 -e trace=$syscall
|