23 lines
574 B
Bash
Executable File
23 lines
574 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Check decoding of address information (inode[->peer][,path])
|
|
# associated with unix domain socket descriptors.
|
|
#
|
|
# Copyright (c) 2014 Masatake YAMATO <yamato@redhat.com>
|
|
# Copyright (c) 2014-2018 Dmitry V. Levin <ldv@altlinux.org>
|
|
# All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
check_prog sed
|
|
|
|
run_prog ../netlink_unix_diag
|
|
run_prog > /dev/null
|
|
run_strace -a22 -yy -eclose,network $args > "$EXP"
|
|
|
|
# Filter out close() calls made by ld.so and libc.
|
|
sed -n '/socket/,$p' < "$LOG" > "$OUT"
|
|
match_diff "$OUT" "$EXP"
|