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.
20 lines
359 B
Bash
Executable File
20 lines
359 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Check decoding of pipe syscall.
|
|
#
|
|
# Copyright (c) 2015-2018 The strace developers.
|
|
# All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
run_prog
|
|
run_strace -a13 -epipe $args
|
|
|
|
check_prog grep
|
|
LC_ALL=C grep -x "pipe(.*" "$LOG" > /dev/null ||
|
|
skip_ 'test executable does not use pipe syscall'
|
|
|
|
match_diff
|