• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/sh
2
3# umovestr short read regression test
4
5. "${srcdir=.}/init.sh"
6
7OUT="$LOG.out"
8EXP="$LOG.exp"
9
10run_prog > /dev/null
11run_strace -veexecve -s262144 $args > "$EXP"
12check_prog sed
13sed 1d < "$LOG" > "$OUT"
14match_diff "$OUT" "$EXP"
15
16rm -f "$EXP" "$OUT"
17
18exit 0
19