mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 03:27:44 +00:00
Merge pull request #805 from Arcterus/master
Allow selection of tests to not pass to BusyBox
This commit is contained in:
commit
740d95bc55
1 changed files with 6 additions and 6 deletions
4
Makefile
4
Makefile
|
@ -247,7 +247,7 @@ build-uutils:
|
|||
build: build-uutils build-pkgs
|
||||
|
||||
$(foreach test,$(TESTS),$(eval $(call TEST_INTEGRATION,$(test))))
|
||||
$(foreach test,$(PROGS),$(eval $(call TEST_BUSYBOX,$(test))))
|
||||
$(foreach test,$(filter-out $(DONT_TEST),$(PROGS)),$(eval $(call TEST_BUSYBOX,$(test))))
|
||||
|
||||
test: $(addprefix test_integration_,$(TESTS))
|
||||
|
||||
|
@ -270,7 +270,7 @@ $(BUILDDIR)/busybox: busybox-src build-uutils $(BUILDDIR)/.config
|
|||
ifeq ($(EXES),)
|
||||
busytest:
|
||||
else
|
||||
busytest: $(BUILDDIR)/busybox $(addprefix test_busybox_,$(EXES))
|
||||
busytest: $(BUILDDIR)/busybox $(addprefix test_busybox_,$(filter-out $(DONT_TEST),$(EXES)))
|
||||
endif
|
||||
|
||||
clean:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue