From: Denis Vlasenko Date: Thu, 10 Apr 2008 19:59:20 +0000 (-0000) Subject: fix "make check" X-Git-Tag: 1_11_0~360 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b75a1c3c2a338d1b2401a3c1eb61d4895085520f;p=oweals%2Fbusybox.git fix "make check" --- diff --git a/Makefile b/Makefile index af602d75c..f110fed24 100644 --- a/Makefile +++ b/Makefile @@ -361,7 +361,8 @@ endif # of make so .config is not included in this case either (for *config). no-dot-config-targets := clean mrproper distclean \ - cscope TAGS tags help %docs check% + cscope TAGS tags help %docs +#bbox# check% is removed from above config-targets := 0 mixed-targets := 0 diff --git a/Makefile.custom b/Makefile.custom index a4db14172..e4a616f65 100644 --- a/Makefile.custom +++ b/Makefile.custom @@ -46,9 +46,13 @@ ifneq ($(strip $(DO_INSTALL_LIBS)),n) done endif +# Not very elegant: copies testsuite to objdir... +.PHONY: check +.PHONY: test check test: busybox busybox.links - bindir=$(objtree) srcdir=$(srctree)/testsuite SED="$(SED)" \ - $(SHELL) $(srctree)/testsuite/runtest $(if $(KBUILD_VERBOSE:0=),-v) + test -d $(objtree)/testsuite || cp -a $(srctree)/testsuite $(objtree) + bindir=$(objtree) srcdir=$(srctree)/testsuite \ + $(SHELL) -c "cd $(objtree)/testsuite && $(srctree)/testsuite/runtest $(if $(KBUILD_VERBOSE:0=),-v)" .PHONY: release release: distclean