summaryrefslogtreecommitdiff
path: root/mysql-test/lib/My/Platform.pm
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/lib/My/Platform.pm')
-rw-r--r--mysql-test/lib/My/Platform.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/mysql-test/lib/My/Platform.pm b/mysql-test/lib/My/Platform.pm
index 1db6985771d..cee0c8778fe 100644
--- a/mysql-test/lib/My/Platform.pm
+++ b/mysql-test/lib/My/Platform.pm
@@ -66,7 +66,9 @@ sub mixed_path {
my ($path)= @_;
if (IS_CYGWIN){
return unless defined $path;
- $path= `cygpath -m $path`;
+ my $cmd= "cygpath -m $path";
+ print "$cmd\n";
+ $path= `$cmd`;
chomp $path;
}
return $path;