From: Jelmer Vernooij Date: Thu, 29 May 2008 16:17:42 +0000 (+0200) Subject: Allow full-line comments in include/exclude files. X-Git-Tag: samba-4.0.0alpha4~13 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4095f3c358a39d9eb8a1bcef52e49d44ea8fbd2a;p=thirdparty%2Fsamba.git Allow full-line comments in include/exclude files. --- diff --git a/source/samba4-slow b/source/samba4-slow new file mode 100644 index 00000000000..05e62f44efd --- /dev/null +++ b/source/samba4-slow @@ -0,0 +1,4 @@ +.*base.bench.holdcon.* # Very slow +raw.bench.lookup # Very slow +base.utable # Slow +base.smb # Slow diff --git a/source/selftest/selftest.pl b/source/selftest/selftest.pl index 5854a94b8d1..e86ccbe468c 100755 --- a/source/selftest/selftest.pl +++ b/source/selftest/selftest.pl @@ -499,6 +499,7 @@ sub read_test_regexes($) open(LF, "<$name") or die("unable to read $name: $!"); while () { chomp; + next if (/^#/); if (/^(.*?)([ \t]+)\#([\t ]*)(.*?)$/) { push (@ret, [$1, $4]); } else {