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:
parent
6f7b2b6933
commit
3d2c9e49a5
4
source4/samba4-slow
Normal file
4
source4/samba4-slow
Normal file
@ -0,0 +1,4 @@
|
||||
.*base.bench.holdcon.* # Very slow
|
||||
raw.bench.lookup # Very slow
|
||||
base.utable # Slow
|
||||
base.smb # Slow
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user