Home | History | Annotate | Download | only in tests-m32
      1 #!/bin/sh
      2 
      3 # Check verbose decoding of execve syscall.
      4 
      5 . "${srcdir=.}/init.sh"
      6 
      7 check_prog grep
      8 run_prog > /dev/null
      9 run_strace -veexecve $args > "$EXP"
     10 
     11 # Filter out execve() call made by strace.
     12 grep -F test.execve < "$LOG" > "$OUT"
     13 match_diff "$OUT" "$EXP"
     14