]> sourceware.org Git - lvm2.git/commitdiff
Add an option to skip some tests in make check (regex based, like T=): eg.
authorPetr Rockai <prockai@redhat.com>
Tue, 12 Oct 2010 16:17:25 +0000 (16:17 +0000)
committerPetr Rockai <prockai@redhat.com>
Tue, 12 Oct 2010 16:17:25 +0000 (16:17 +0000)
$ sudo make check S='mirror-basic|fsadm'

test/Makefile.in

index 5a9a40c3e60cbb69849d0bb7b523bd3f98816861..48f6d4191ec492542e8251c5f7d047770c12f0dd 100644 (file)
@@ -26,7 +26,8 @@ abs_top_builddir = @abs_top_builddir@
 abs_top_srcdir = @abs_top_srcdir@
 
 T ?= .
-RUN = $(shell find -regextype posix-egrep -name t-\*.sh -and -regex ".*($(T)).*" | sort)
+S ?= @ # never match anything by default
+RUN = $(shell find -regextype posix-egrep -name t-\*.sh -and -regex ".*($(T)).*" -and -not -regex ".*($(S)).*" | sort)
 
 # Shell quote;
 SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
This page took 0.039192 seconds and 5 git commands to generate.