Hi Tim thanks for the review. On 25/09/2019 21:20, Tim.Bird@xxxxxxxx wrote: > Just a few nits inline below. > >> -----Original Message----- >> From: Cristian Marussi on Wednesday, September 25, 2019 3:24 AM >> >> Let the user specify an optional TARGETS skiplist through the new optional >> SKIP_TARGETS Makefile variable. >> >> It is easier to skip at will a reduced and well defined list of possibly > > It seems like there's a word missing. > at will a -> at will using a > >> problematic targets with SKIP_TARGETS then to provide a partially stripped > > then -> than > >> down list of good targets using the usual TARGETS variable. >> >> Signed-off-by: Cristian Marussi <cristian.marussi@xxxxxxx> >> --- >> tools/testing/selftests/Makefile | 4 ++++ >> 1 file changed, 4 insertions(+) >> >> diff --git a/tools/testing/selftests/Makefile >> b/tools/testing/selftests/Makefile >> index 25b43a8c2b15..103936faa46d 100644 >> --- a/tools/testing/selftests/Makefile >> +++ b/tools/testing/selftests/Makefile >> @@ -132,6 +132,10 @@ else >> ARCH=$(ARCH) -C $(top_srcdir) headers_install >> endif >> >> +# User can optionally provide a TARGETS skiplist. >> +SKIP_TARGETS ?= >> +TARGETS := $(filter-out $(SKIP_TARGETS), $(TARGETS)) >> + >> all: khdr >> @for TARGET in $(TARGETS); do \ >> BUILD_TARGET=$$BUILD/$$TARGET; \ >> -- >> 2.17.1 > > Great feature! Thanks. > -- Tim > I'll fix all in V2. Thanks Cristian