blob: 8fdf062e49836d723d90beed5d8f5ad791444d87 [file] [log] [blame]
Dmitry V. Levin78db0f22015-12-30 23:00:43 +00001#!/bin/sh
2
3# Check how strace -f follows fork syscall.
4
5. "${srcdir=.}/init.sh"
6
7run_prog > /dev/null
8OUT="$LOG.out"
9run_strace -a32 -qq -f -epwrite64 -esignal=none $args > "$OUT"
10match_diff "$LOG" "$OUT"
11rm -f "$OUT"
12
13exit 0