diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-11-01 17:29:03 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-11-01 17:29:03 +0000 |
commit | c9de86d555b2cc844acfe134ffe61228163a50ea (patch) | |
tree | b9f71f12e0b3d8eadbf6b32084fda8d64083ed01 /t/comp | |
parent | 879d0c7269cae2ffd414e7e03bcd3bc03ba587d3 (diff) | |
download | perl-c9de86d555b2cc844acfe134ffe61228163a50ea.tar.gz |
Tweak the filename regexp in parser.t so that ./TEST -utf16 op/parser.t passes.
Diffstat (limited to 't/comp')
-rw-r--r-- | t/comp/parser.t | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/t/comp/parser.t b/t/comp/parser.t index eed0f1873c..6cbba9b7c2 100644 --- a/t/comp/parser.t +++ b/t/comp/parser.t @@ -297,26 +297,27 @@ sub check ($$$) { is ($got_line, $line, "line of $name"); } +my $this_file = qr/parser\.t(?:\.[bl]eb?)?$/; #line 3 -check(qr/parser\.t$/, 3, "bare line"); +check($this_file, 3, "bare line"); # line 5 -check(qr/parser\.t$/, 5, "bare line with leading space"); +check($this_file, 5, "bare line with leading space"); #line 7 -check(qr/parser\.t$/, 7, "trailing space still valid"); +check($this_file, 7, "trailing space still valid"); # line 11 -check(qr/parser\.t$/, 11, "leading and trailing"); +check($this_file, 11, "leading and trailing"); # line 13 -check(qr/parser\.t$/, 13, "leading tab"); +check($this_file, 13, "leading tab"); #line 17 -check(qr/parser\.t$/, 17, "middle tab"); +check($this_file, 17, "middle tab"); #line 19 -check(qr/parser\.t$/, 19, "loadsaspaces"); +check($this_file, 19, "loadsaspaces"); #line 23 KASHPRITZA check(qr/^KASHPRITZA$/, 23, "bare filename"); |