diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2020-05-05 12:49:29 +0200 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2020-05-05 12:49:29 +0200 |
commit | 1af74d523a70622e8abb528d4fd991d72b90c887 (patch) | |
tree | 936fe0f016ab9cf1b420681485e272f772dfb9ce /mysql-test/mysql-test-run.pl | |
parent | 95fa7bc89ddd248023bbe54aa3d9ba4d9903a4c2 (diff) | |
download | mariadb-git-1af74d523a70622e8abb528d4fd991d72b90c887.tar.gz |
postfix after e3f5789ac0b2 - var/log/stdout.log contains escape sequences.
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 2850aafa67a..ef2f001b532 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -389,7 +389,7 @@ if (-t STDOUT) { if (IS_WINDOWS and HAVE_WIN32_CONSOLE) { $set_titlebar = sub {Win32::Console::Title $_[0];}; } elsif (defined $ENV{TERM} and $ENV{TERM} =~ /xterm/) { - $set_titlebar = sub { print "\e];$_[0]\a"; }; + $set_titlebar = sub { syswrite STDOUT, "\e];$_[0]\a"; }; } } |