Home | History | Annotate | Download | only in tests-mx32
      1 #!/bin/sh
      2 
      3 # Check decoding of prctl PR_GET_NAME/PR_SET_NAME operations.
      4 . "${srcdir=.}/init.sh"
      5 
      6 check_prog grep
      7 run_prog > /dev/null
      8 run_strace -a23 -eprctl $args > "$EXP"
      9 grep -v '^prctl(PR_GET_[^N][^A]' < "$LOG" > "$OUT"
     10 match_diff "$OUT" "$EXP"
     11