projects
/
platform
/
upstream
/
curl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
18f0ab7
)
getpart.pm: Strip carriage returns to fix Windows support
author
Marc Hoersken
<info@marc-hoersken.de>
Sat, 6 Apr 2013 16:10:56 +0000
(18:10 +0200)
committer
Marc Hoersken
<info@marc-hoersken.de>
Sat, 6 Apr 2013 16:10:56 +0000
(18:10 +0200)
tests/getpart.pm
patch
|
blob
|
history
diff --git
a/tests/getpart.pm
b/tests/getpart.pm
index 92a2378303078340afc1ba0a65c8025e9227b562..2b4abf3b10d5f23bda79ae600d96e839d7f7d21c 100644
(file)
--- a/
tests/getpart.pm
+++ b/
tests/getpart.pm
@@
-213,9
+213,10
@@
sub compareparts {
# we cannot compare arrays index per index since with the base64 chunks,
# they may not be "evenly" distributed
- # NOTE: this no longer strips off carriage returns from the arrays. Is that
- # really necessary? It ruins the testing of newlines. I believe it was once
- # added to enable tests on win32.
+ if($^O eq "MSWin32" || $^O eq "msys") {
+ $first =~ s/\r\n/\n/g;
+ $second =~ s/\r\n/\n/g;
+ }
if($first ne $second) {
return 1;