]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
Merge remote branch 'asp/master'
authorSimon Ruderich <simon@ruderich.org>
Fri, 3 Dec 2010 11:48:25 +0000 (12:48 +0100)
committerSimon Ruderich <simon@ruderich.org>
Fri, 3 Dec 2010 11:48:25 +0000 (12:48 +0100)
Conflicts:
bin/git-update.sh

bin/git-update.sh
bin/valgrind-ptr.sh [new file with mode: 0755]
bin/valgrind.sh [new file with mode: 0755]

index 3fea2d6a7bf0c0fbefadf435d33da300957d4797..de71bec0dc304c78b3041bd13ae85228642f05a1 100755 (executable)
@@ -27,6 +27,7 @@ if [ x$LOCAL = x ]; then
     # Push all local changes to remote(s).
     for remote in `git remote`; do
         git push $remote 2>&1 | grep -v 'Everything up-to-date'
+        git push --tags $remote 2>&1 | grep -v 'Everything up-to-date'
     done
 fi
 # Show unmerged changes.
diff --git a/bin/valgrind-ptr.sh b/bin/valgrind-ptr.sh
new file mode 100755 (executable)
index 0000000..965a587
--- /dev/null
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+valgrind --tool=exp-ptrcheck --error-exitcode=1 "$@"
diff --git a/bin/valgrind.sh b/bin/valgrind.sh
new file mode 100755 (executable)
index 0000000..dd8038a
--- /dev/null
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+valgrind --leak-check=full --show-reachable=yes --error-exitcode=1 "$@"