diff options
author | 2019-04-17 21:14:10 +0200 | |
---|---|---|
committer | 2019-04-17 21:14:10 +0200 | |
commit | 6d9ab292b82660699045e4ccdf9c89bf065e4c42 (patch) | |
tree | 4f83e7c0f0cb880ddaa1e08dde27088d1f527c77 /tests/install | |
parent | tests: avoid race due to duplicate check target (diff) | |
download | portage-utils-6d9ab292b82660699045e4ccdf9c89bf065e4c42.tar.gz portage-utils-6d9ab292b82660699045e4ccdf9c89bf065e4c42.tar.bz2 portage-utils-6d9ab292b82660699045e4ccdf9c89bf065e4c42.zip |
tests: don't run tests by default
remnant of pre-automake Makefiles having default all: check rule
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Diffstat (limited to 'tests/install')
-rw-r--r-- | tests/install/Makefile.am | 8 | ||||
-rw-r--r-- | tests/install/Makefile.in | 38 |
2 files changed, 21 insertions, 25 deletions
diff --git a/tests/install/Makefile.am b/tests/install/Makefile.am index 2b39b2aa..4d5fcd25 100644 --- a/tests/install/Makefile.am +++ b/tests/install/Makefile.am @@ -2,12 +2,8 @@ this_subdir = tests/install b = $(abs_top_builddir)/$(this_subdir) s = $(abs_top_srcdir)/$(this_subdir) -all: check - -test check: +check-local: $(Q)$(s)/dotest -clean: +clean-local: rm -f $(b)/q `find $(b) -type l` - -.PHONY: all check clean test diff --git a/tests/install/Makefile.in b/tests/install/Makefile.in index b74c1f3b..2b6905d7 100644 --- a/tests/install/Makefile.in +++ b/tests/install/Makefile.in @@ -1464,6 +1464,7 @@ distdir: $(DISTFILES) fi; \ done check-am: all-am + $(MAKE) $(AM_MAKEFLAGS) check-local check: check-am all-am: Makefile installdirs: @@ -1497,7 +1498,9 @@ distclean-generic: maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -clean-am: clean-generic clean-libtool mostlyclean-am +clean: clean-am + +clean-am: clean-generic clean-libtool clean-local mostlyclean-am distclean: distclean-am -rm -f Makefile @@ -1561,33 +1564,30 @@ ps-am: uninstall-am: -.MAKE: install-am install-strip +.MAKE: check-am install-am install-strip -.PHONY: all all-am check check-am clean clean-generic clean-libtool \ - cscopelist-am ctags-am distclean distclean-generic \ - distclean-libtool distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-pdf install-pdf-am install-ps install-ps-am \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags-am uninstall uninstall-am +.PHONY: all all-am check check-am check-local clean clean-generic \ + clean-libtool clean-local cscopelist-am ctags-am distclean \ + distclean-generic distclean-libtool distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ + uninstall-am .PRECIOUS: Makefile -all: check - -test check: +check-local: $(Q)$(s)/dotest -clean: +clean-local: rm -f $(b)/q `find $(b) -type l` -.PHONY: all check clean test - # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: |