From 4095f3c358a39d9eb8a1bcef52e49d44ea8fbd2a Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 29 May 2008 18:17:42 +0200 Subject: [PATCH] Allow full-line comments in include/exclude files. --- source/samba4-slow | 4 ++++ source/selftest/selftest.pl | 1 + 2 files changed, 5 insertions(+) create mode 100644 source/samba4-slow 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 { -- 2.47.3