1-----------------------------------------------------------------------------
2Various guidelines/recommended usage for valgrind SVN
3-----------------------------------------------------------------------------
4
5Update the ignore property
6==========================
7For various type of files, the ignore property of the directory
8containing these files is to be updated.
9
10* Here is an example for a new test case:
11  $ svn stat
12  ?       memcheck/tests/ppc32/power_ISA2_07
13  ?       memcheck/tests/ppc64/power_ISA2_07
14
15  Grrr.....
16
17  $ cd memcheck/tests/ppc32
18  $ svn propget svn:ignore . > ignore-me
19  ...edit ignore-me, add executable to the list...
20  $ svn propset svn:ignore . -F ignore-me
21  $ rm ignore-me
22  $ svn commit
23
24  This is best done when a new testcase is added.
25
26* When adding a directory, look at the ignore property of a similar
27  directory for inspiration e.g.
28  $ svn propget svn:ignore auxprogs
29  .deps
30  getoff-amd64-darwin
31  getoff-x86-darwin
32  ...
33  libmpiwrap-x86-darwin.so.dSYM
34  Makefile
35  Makefile.in
36  valgrind-di-server
37  valgrind-listener
38
39