diff options
author | monty@hundin.mysql.fi <> | 2001-09-30 22:04:56 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2001-09-30 22:04:56 +0300 |
commit | b5622e11dd4122959ec3deeac12686ff573a4f77 (patch) | |
tree | 16c8b4edbfac2e62ad94def8d240326f03c24395 /mysql-test/mysql-test-run.sh | |
parent | 9f04e0e6d2370aa964f946f7464b3f8fa8daf99e (diff) | |
download | mariadb-git-b5622e11dd4122959ec3deeac12686ff573a4f77.tar.gz |
Portability fixes
Diffstat (limited to 'mysql-test/mysql-test-run.sh')
-rw-r--r-- | mysql-test/mysql-test-run.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/mysql-test-run.sh b/mysql-test/mysql-test-run.sh index 3bfdbb0349a..97767a33687 100644 --- a/mysql-test/mysql-test-run.sh +++ b/mysql-test/mysql-test-run.sh @@ -345,7 +345,7 @@ prompt_user () read unused } -# We can't use diff -u as this isn't portable +# We can't use diff -u or diff -a as these are not portable show_failed_diff () { @@ -362,7 +362,7 @@ show_failed_diff () then echo "Below are the diffs between actual and expected results:" echo "-------------------------------------------------------" - $DIFF -c -a $result_file $reject_file + $DIFF -c $result_file $reject_file echo "-------------------------------------------------------" echo "Please follow the instructions outlined at" echo "http://www.mysql.com/doc/R/e/Reporting_mysqltest_bugs.html" |