Commit b35c0fbc authored by unknown's avatar unknown

Make ma_test_all-t find its eggs on Darwin machines.


storage/maria/unittest/ma_test_all-t:
  .exe is for win32, win64, cygwin, but not darwin
parent e068ad62
......@@ -52,7 +52,7 @@ sub run_tests
}
$maria_path= dirname($0) . "/..";
my $suffix= ( $^O =~ /win/i ) ? ".exe" : "";
my $suffix= ( $^O =~ /win/i && $^O !~ /darwin/i ) ? ".exe" : "";
$maria_exe_path= "$maria_path/release";
# we use -f, sometimes -x is unexpectedly false in Cygwin
if ( ! -f "$maria_exe_path/ma_test1$suffix" )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment