Test suite: minimal required to get mingw 'make test' work under Linux.
[openssl.git] / test / testlib / OpenSSL / Test / Utils.pm
index fc9b5336138a58d6d1baf6cac964cd3bbf9bc7c1..5312c205a09287720ddf4d8a39ee00a161f32aa1 100644 (file)
@@ -46,7 +46,7 @@ my $disabled_set = 0;
 sub check_disabled {
 #print STDERR "Running check_disabled\n";
     foreach (run(app(["openssl", "list", "-disabled"]), capture => 1)) {
-        chomp;
+        s/\R//;         # chomp;
         next if /:/;    # skip header
         $disabled{lc $_} = 1;
     }