• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/sh
2
3# Check personality syscall decoding.
4
5. "${srcdir=.}/init.sh"
6
7run_prog > /dev/null
8OUT="$LOG.out"
9run_strace -a20 -epersonality $args > "$OUT"
10match_grep "$LOG" "$OUT"
11rm -f "$OUT"
12
13exit 0
14