diff options
author | Georgi Kodinov <joro@sun.com> | 2009-02-02 12:18:38 +0200 |
---|---|---|
committer | Georgi Kodinov <joro@sun.com> | 2009-02-02 12:18:38 +0200 |
commit | c205bef39d3762edad4345cf393fcf07007071d2 (patch) | |
tree | 1071fdeceed1bb9b9d7fc693f94a337624c2eca9 /mysql-test/mysql-test-run.pl | |
parent | 19e28b379214a6dc7b5031cfe636f95f3c8fa752 (diff) | |
download | mariadb-git-c205bef39d3762edad4345cf393fcf07007071d2.tar.gz |
Fix from magnus for the "The socket file path is too long (> 107)" failure.
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 5d8b1371151..30eab135b24 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -1060,7 +1060,7 @@ sub command_line_setup { { $opt_tmpdir= "$opt_vardir/tmp" unless $opt_tmpdir; - if (check_socket_path_length("$opt_tmpdir/testsocket.sock")) + if (check_socket_path_length("$opt_tmpdir/mysql_testsocket.sock")) { mtr_report("Too long tmpdir path '$opt_tmpdir'", " creating a shorter one..."); |