summaryrefslogtreecommitdiff
path: root/t/op/regexp.t
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-11-13 19:31:19 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-11-13 19:31:19 +0000
commit091c0eb7afda954d4b458ffef52b90ee0ff8afe5 (patch)
treeb383f52ecdb35f8cea6a48c5fb89fc7940fbaada /t/op/regexp.t
parentba973abb2167d22cf71ef30581193c3aaa1d885d (diff)
downloadperl-091c0eb7afda954d4b458ffef52b90ee0ff8afe5.tar.gz
revert non-kosher parts of change#4562 (sort order problems
should be ignored (on ebcdic) by fixing dumper.t/T() to sort result and expected lines; /[:ascii:]/ not working should be fixed, not ignored in regexp.t; result from sort should be fixed to be ascii portable on ebcdic, not ebcdic-specific) p4raw-link: @4562 on //depot/cfgperl: ee50adbe6978769b1ad873bd2be52593b054ff83 p4raw-id: //depot/perl@4574
Diffstat (limited to 't/op/regexp.t')
-rwxr-xr-xt/op/regexp.t2
1 files changed, 0 insertions, 2 deletions
diff --git a/t/op/regexp.t b/t/op/regexp.t
index 74ca639a8c..4ffe1362c6 100755
--- a/t/op/regexp.t
+++ b/t/op/regexp.t
@@ -71,8 +71,6 @@ while (<TESTS>) {
$skip = ($skip_amp ? ($result =~ s/B//i) : ($result =~ s/B//));
# Certain tests don't work with utf8 (the re_test should be in UTF8)
$skip = 1 if ($^H &= ~0x00000008) && $pat =~ /\[:\^(alnum|print|word):\]/;
- # ebcdic platforms do not do [:ascii:]
- $skip = 1 if ("\t" ne "\011") && $pat =~ /\[:\^?ascii:\]/;
$result =~ s/B//i unless $skip;
for $study ('', 'study \$subject') {
$c = $iters;