Dmitry V. Levin
7fce7c0332
* tests/adjtimex.c (main): Check decoding of NULL struct timex pointer. Check decoding of struct timex located at the end of page boundary. * tests/adjtimex.test: Update.
14 lines
198 B
Bash
Executable File
14 lines
198 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Check adjtimex syscall decoding.
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
run_prog > /dev/null
|
|
OUT="$LOG.out"
|
|
run_strace -a 15 -e adjtimex $args > "$OUT"
|
|
match_grep "$LOG" "$OUT"
|
|
rm -f "$OUT"
|
|
|
|
exit 0
|