summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2017-04-26 10:07:18 -0400
committerTheodore Ts'o <tytso@mit.edu>2017-04-26 10:07:18 -0400
commit11b8ef8bd6a22cbe4c2ce9cf38d492db7e418ccc (patch)
tree19be7087164a0b4221b2a68b70883fe5a77c9c14 /Makefile.in
parentb772dc5a7374b3c85cae7839270ca0178f18f30e (diff)
downloade2fsprogs-11b8ef8bd6a22cbe4c2ce9cf38d492db7e418ccc.tar.gz
tests: skip running long test with "make check" and add "make fullcheck"
Don't run tests which take longer than 20 seconds to run (especially f_large_dir, whose run time is well over ten minutes) for "make check". The new "make fullcheck" will run all of the regression tests for e2fsprogs. Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 7da9ad7d..37b60692 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -78,8 +78,9 @@ coverage.txt: coverage.txt-recursive
check-recursive: all
-TAGS clean-recursive distclean-recursive depend-recursive check-recursive \
- mostlyclean-recursive realclean-recursive coverage.txt-recursive:
+TAGS clean-recursive distclean-recursive depend-recursive fullcheck-recursive \
+ check-recursive mostlyclean-recursive realclean-recursive \
+ coverage.txt-recursive:
@for subdir in $(SUBDIRS); do \
if test -d $$subdir ; then \
target=`echo $@|$(SED) 's/-recursive//'`; \
@@ -151,3 +152,4 @@ realclean-local: distclean-local
check:: all check-recursive
+fullcheck:: all fullcheck-recursive