diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2023-07-15 20:24:01 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2023-07-15 22:12:03 +0100 |
commit | 87a97abbfb57cb6583c330e09446c3e8549fd32f (patch) | |
tree | fea66a9818b4f5f46061b865280d87243b50f074 /test/runtest | |
parent | 280ea2d7ca4b9b1a3f5d34a243f48e652114a5f4 (diff) |
Testsuite: basic Sieve operations
Diffstat (limited to 'test/runtest')
-rwxr-xr-x | test/runtest | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/runtest b/test/runtest index 17f7ab4c9..ae2d929fd 100755 --- a/test/runtest +++ b/test/runtest @@ -1864,13 +1864,13 @@ if (-e $sf_current) for (my $i = 0; $i < @munged; $i++) { - if ($munged[$i] =~ /^[-\d]{10}\s[:\d]{8}\s[-A-Za-z\d]{16}\s[-=*]>/) + if ($munged[$i] =~ /^[-\d]{10}\s[:\d]{8}(\.\d{3})?\s[-A-Za-z\d]{23}\s[-=*]>/) { my $j; for ($j = $i + 1; $j < @munged; $j++) { last if $munged[$j] !~ - /^[-\d]{10}\s[:\d]{8}\s[-A-Za-z\d]{16}\s[-=*]>/; + /^[-\d]{10}\s[:\d]{8}(\.\d{3})?\s[-A-Za-z\d]{23}\s[-=*]>/; } @temp = splice(@munged, $i, $j - $i); @temp = sort(@temp); |