11 lines
179 B
Bash
Executable file
11 lines
179 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Check how network syscalls are traced.
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
run_prog ../net-accept-connect net-local-stream
|
|
run_strace_merge -e%network $args
|
|
match_grep
|
|
|
|
exit 0
|