You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
# Check decoding and dumping of send and recv syscalls.
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
run_prog ../unix-pair-send-recv abcdefghijklmnopqrstuvwxyz
|
|
run_strace -a32 -esignal=none -esend,recv -eread=0 -ewrite=0 $args
|
|
match_diff
|
|
|
|
exit 0
|