grind.sh 274 B

1234567891011121314
  1. #!/bin/bash
  2. # valgrind -v --log-file=grind.log build/space-ace -l -u grinder
  3. # start in background
  4. valgrind -v --leak-check=full --show-leak-kinds=all --log-file=grind.log build/twproxy grind.yaml &
  5. PID=$!
  6. echo "valgrind is pid $PID"
  7. ps --ppid $PID
  8. wait
  9. tail grind.log