1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-03 13:47:25 +03:00

Require separate option for quicktest include list rather than making

assumptions about it.
This commit is contained in:
Jelmer Vernooij 2008-10-22 04:09:17 +02:00
parent 5018fef8cb
commit 7a683618e7
2 changed files with 1 additions and 5 deletions

View File

@ -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($_));
}

View File

@ -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)