On 02/08/2013 02:53 PM, Bernhard Voelker wrote:
Shouldn't check-root be limited to "SUBDIRS=." in tests/local.mk?check-root: - $(MAKE) check TESTS='$(root_tests)' + $(MAKE) check TESTS='$(root_tests)' SUBDIRS=.
Ok to submit this in your name? commit a2702f0f435032a269a3ef1202c3a89b8f2166cc Author: Bernhard Voelker <[email protected]> Date: Mon Feb 11 09:48:31 2013 +0000 maint: avoid running check-root tests in gnulib * tests/local.mk (check-root): Restrict to SUBDIRS=. as traversing into gnulib-tests induces a false failure. diff --git a/tests/local.mk b/tests/local.mk index 83b4ab9..9be1970 100644 --- a/tests/local.mk +++ b/tests/local.mk @@ -137,7 +137,7 @@ all_root_tests = \ ALL_RECURSIVE_TARGETS += check-root .PHONY: check-root check-root: - $(MAKE) check TESTS='$(root_tests)' + $(MAKE) check TESTS='$(root_tests)' SUBDIRS=. # Do not choose a name that is a shell keyword like 'if', or a # commonly-used utility like 'cat' or 'test', as the name of a test.
