Signed-off-by: hmz007 <hmz007@gmail.com> Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
12 lines
197 B
Bash
Executable File
12 lines
197 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Check umount2 syscall decoding.
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
case "$STRACE_ARCH" in
|
|
alpha|ia64) syscall=umount ;;
|
|
*) syscall=umount2 ;;
|
|
esac
|
|
run_strace_match_diff -s7 -e trace=$syscall
|