We do our best to keep copyright headers up to date, yet git history provides better information on this subject and is more accurate than copyright headers.
17 lines
415 B
Bash
Executable File
17 lines
415 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Check how long sun_path addresses are traced.
|
|
#
|
|
# Copyright (c) 2015-2018 The strace developers.
|
|
# All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
run_prog ../net-accept-connect 123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678
|
|
run_strace_merge -ebind,connect,getsockname $args
|
|
match_grep
|
|
|
|
exit 0
|