13 lines
183 B
Bash
Executable File
13 lines
183 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Check adjtimex syscall decoding.
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
run_prog > /dev/null
|
|
run_strace -a 15 -e adjtimex $args > "$OUT"
|
|
match_grep "$LOG" "$OUT"
|
|
rm -f "$OUT"
|
|
|
|
exit 0
|