11 lines
163 B
Bash
Executable File
11 lines
163 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Check brk syscall decoding.
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
run_prog > /dev/null
|
|
run_strace -a10 -ebrk $args > "$EXP"
|
|
match_grep "$LOG" "$EXP"
|
|
rm -f "$EXP"
|