]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Add post_regtest_checks check_headers_and_includes to dist_noinst_SCRIPTS.
authorMark Wielaard <mark@klomp.org>
Wed, 2 Oct 2013 11:39:41 +0000 (11:39 +0000)
committerMark Wielaard <mark@klomp.org>
Wed, 2 Oct 2013 11:39:41 +0000 (11:39 +0000)
Also allow a .git directory in check_headers_and_includes to help
people using a git mirror of valgrind/VEX svn.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13601

tests/Makefile.am
tests/check_headers_and_includes

index e323374e81cabcb913a6bd69618f4d290f022a79..a68c6041f4500bda6655ebf31e2601b0147ca6e1 100644 (file)
@@ -2,6 +2,7 @@
 include $(top_srcdir)/Makefile.tool-tests.am
 
 dist_noinst_SCRIPTS = \
+       check_headers_and_includes \
        check_isa-2_06_cap \
        check_makefile_consistency \
        check_dfp_cap \
@@ -14,6 +15,7 @@ dist_noinst_SCRIPTS = \
        filter_sink \
        filter_xml_frames \
        platform_test \
+       post_regtest_checks \
        vg_regtest
 
 noinst_HEADERS = \
index 2b9caf4e59be9866badedb44a2fdeab6dde90baa..4a75ce822214a4d520a4ce11b427152ecfbbf89d 100755 (executable)
@@ -49,6 +49,7 @@ my %tool_dirs = (
 my %dirs_to_ignore = (
     ".deps" => 1,
     ".svn" => 1,
+    ".git" => 1,            # allow git mirrors of the svn repo
     ".in_place" => 1,
     "Inst" => 1,            # the nightly scripts creates this
     "VEX" => 1,