diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-09 23:32:08 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-09 23:32:08 +0000 |
commit | ea9ff3e904561f717ed20a297f2dc44564bb7035 (patch) | |
tree | 2ad7b75371e820040b0f247c2caca8734cdd06ec /t/pod | |
parent | 407b02b18cd4aa4559559e2186ed579096fab094 (diff) | |
download | perl-ea9ff3e904561f717ed20a297f2dc44564bb7035.tar.gz |
DJGPP tweaks from Laszlo Molnar.
p4raw-id: //depot/perl@13571
Diffstat (limited to 't/pod')
-rw-r--r-- | t/pod/find.t | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/t/pod/find.t b/t/pod/find.t index 1bac930f56..df36147635 100644 --- a/t/pod/find.t +++ b/t/pod/find.t @@ -53,6 +53,9 @@ if ($^O eq 'VMS') { } ok($count/($#result+1)-1,$#compare); } +elsif ($^O eq 'dos') { + ok(lc $result,lc $compare); +} else { ok($result,$compare); } |