summaryrefslogtreecommitdiff
path: root/tests/opipe.test
blob: d6777250f75438ebc0de5f42f74e69dbdc950619 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
#
# Check how -o '|pipe' works.
#
# Copyright (c) 2016-2018 The strace developers.
# All rights reserved.
#
# SPDX-License-Identifier: GPL-2.0-or-later

. "${srcdir=.}/init.sh"

check_prog grep
grep chdir $srcdir/umovestr.expected > "$EXP"
run_prog ../umovestr

$STRACE -o "|cat > $LOG && $SLEEP_A_BIT && grep chdir < $LOG > $OUT" -e chdir $args ||
	dump_log_and_fail_with "$STRACE $args failed"

match_diff "$OUT" "$EXP"