/vqdr/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/vqdr/trunk

« back to all changes in this revision

Viewing changes to run_valgrind.sh

  • Committer: Gustav Hartvigsson
  • Date: 2020-06-07 18:48:24 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20200607184824-jf14f7a1b1di2i2q
* Initial code - far from done

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env bash
 
2
 
 
3
# will run executable that is provided as an argument.
 
4
 
 
5
G_SLICE=always-malloc G_DEBUG=resident-modules\
 
6
       valgrind --tool=memcheck \
 
7
         --leak-check=full \
 
8
         --leak-resolution=high \
 
9
         --num-callers=20 \
 
10
         --suppressions=/usr/share/glib-2.0/valgrind/glib.supp \
 
11
         --log-file=vgdump \
 
12
         "$@"