File: valgrind.sh

package info (click to toggle)
minbif 1%3A1.0.5%2Bgit20150505-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 1,216 kB
  • sloc: cpp: 12,861; ansic: 2,145; perl: 692; python: 542; sh: 152; ruby: 96; makefile: 82
file content (10 lines) | stat: -rwxr-xr-x 190 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
APP=$*
LOG=$1-valgrind.log
valgrind \
    --verbose \
    --log-file=$LOG \
    --leak-check=full \
    --run-libc-freeres=no \
    --suppressions=valgrind-suppressions \
    $APP