1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

Allow full-line comments in include/exclude files.

(This used to be commit 4095f3c358)
This commit is contained in:
Jelmer Vernooij 2008-05-29 18:17:42 +02:00
parent 6f7b2b6933
commit 3d2c9e49a5
2 changed files with 5 additions and 0 deletions

4
source4/samba4-slow Normal file
View File

@ -0,0 +1,4 @@
.*base.bench.holdcon.* # Very slow
raw.bench.lookup # Very slow
base.utable # Slow
base.smb # Slow

View File

@ -499,6 +499,7 @@ sub read_test_regexes($)
open(LF, "<$name") or die("unable to read $name: $!");
while (<LF>) {
chomp;
next if (/^#/);
if (/^(.*?)([ \t]+)\#([\t ]*)(.*?)$/) {
push (@ret, [$1, $4]);
} else {