854a25930c
* tests/brk.c: New file. * tests/brk.test: New test. * tests/.gitignore: Add brk. * tests/Makefile.am (check_PROGRAMS): Likewise. (DECODER_TESTS): Add brk.test.
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"
|