Skip to content

Commit

Permalink
Add some internal documentation for 'svn ignore' maintenance;
Browse files Browse the repository at this point in the history
reference it from README_DEVELOPERS_processes


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15139 a5019735-40e9-0310-863c-91ae7b9d1cf9
  • Loading branch information
philippe committed Apr 23, 2015
1 parent 50652d0 commit e7e3c5e
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README_DEVELOPERS_processes
Expand Up @@ -12,6 +12,9 @@ more in details afterwards.
* Major release production:
See docs/internals/release-HOWTO.txt (currently a bit out of date)

* Various guidelines/recommended usage for valgrind SVN
See docs/internals/svn-HOWTO.txt

* Minor/correction release production: TBD


Expand Down
38 changes: 38 additions & 0 deletions docs/internals/svn-HOWTO.txt
@@ -0,0 +1,38 @@
-----------------------------------------------------------------------------
Various guidelines/recommended usage for valgrind SVN
-----------------------------------------------------------------------------

Update the ignore property
==========================
For various type of files, the ignore property of the directory
containing these files is to be updated.

* Here is an example for a new test case:
$ svn stat
? memcheck/tests/ppc32/power_ISA2_07
? memcheck/tests/ppc64/power_ISA2_07

Grrr.....

$ cd memcheck/tests/ppc32
$ svn propget svn:ignore . > ignore-me
...edit ignore-me, add executable to the list...
$ svn propset svn:ignore . -F ignore-me
$ rm ignore-me
$ svn commit

This is best done when a new testcase is added.

* When adding a directory, look at the ignore property of a similar
directory for inspiration e.g.
$ svn propget svn:ignore auxprogs
.deps
getoff-amd64-darwin
getoff-x86-darwin
...
libmpiwrap-x86-darwin.so.dSYM
Makefile
Makefile.in
valgrind-di-server
valgrind-listener

0 comments on commit e7e3c5e

Please sign in to comment.