From: Jelmer Vernooij Date: Wed, 22 Oct 2008 02:09:17 +0000 (+0200) Subject: Require separate option for quicktest include list rather than making X-Git-Tag: samba-4.0.0alpha6~759 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a683618e79acef94235ff4adee275c462559ab5;p=thirdparty%2Fsamba.git Require separate option for quicktest include list rather than making assumptions about it. --- diff --git a/selftest/selftest.pl b/selftest/selftest.pl index 6f9a7234654..2484bd06876 100755 --- a/selftest/selftest.pl +++ b/selftest/selftest.pl @@ -518,10 +518,6 @@ foreach (@opt_exclude) { push (@excludes, read_test_regexes($_)); } -if ($opt_quick) { - push (@includes, read_test_regexes("selftest/quick")); -} - foreach (@opt_include) { push (@includes, read_test_regexes($_)); } diff --git a/source4/selftest/config.mk b/source4/selftest/config.mk index 74c177d8e84..43c5855d3ae 100644 --- a/source4/selftest/config.mk +++ b/source4/selftest/config.mk @@ -8,7 +8,7 @@ SELFTEST = $(LD_LIBPATH_OVERRIDE) $(PERL) $(selftestdir)/selftest.pl --prefix=${ $(TEST_OPTIONS) SELFTEST_NOSLOW_OPTS = --exclude=$(srcdir)/selftest/slow -SELFTEST_QUICK_OPTS = $(SELFTEST_NOSLOW_OPTS) --quick +SELFTEST_QUICK_OPTS = $(SELFTEST_NOSLOW_OPTS) --quick --include=$(srcdir)/selftest/quick slowtest:: everything $(SELFTEST) $(DEFAULT_TEST_OPTIONS) --immediate $(TESTS)