diff options
author | unknown <wax@kishkin.ru> | 2004-09-16 00:47:45 +0600 |
---|---|---|
committer | unknown <wax@kishkin.ru> | 2004-09-16 00:47:45 +0600 |
commit | 617542cda04560bd7869dbeefd8c8b8a34bcc0e9 (patch) | |
tree | c716748cbe263336273d57ccd7f7d711218b425f /mysql-test/Makefile.am | |
parent | 7e1106e1cdabee8cacc288b6939b005600328dc2 (diff) | |
download | mariadb-git-617542cda04560bd7869dbeefd8c8b8a34bcc0e9.tar.gz |
WL#964
porting mysql_test_run on Linux and Windows
client/mysqltest.c:
added windows code
mysql-test/Makefile.am:
added code of creating make file
mysql-test/r/fulltext.result:
added FORMAT() for compatible with Windows version
mysql-test/r/fulltext_cache.result:
added FORMAT()
mysql-test/r/fulltext_multi.result:
added FORMAT()
mysql-test/r/fulltext_order_by.result:
added FORMAT()
mysql-test/r/type_float.result:
added --replace-result
mysql-test/t/fulltext.test:
added FORMAT()
mysql-test/t/fulltext_cache.test:
added FORMAT()
mysql-test/t/fulltext_multi.test:
added FORMAT()
mysql-test/t/fulltext_order_by.test:
added FORMAT()
mysql-test/t/innodb.test:
added --replace-result
mysql-test/t/insert.test:
added --replace_result
mysql-test/t/type_float.test:
added --replace-result
mysql-test/t/variables.test:
added --replace_result
Diffstat (limited to 'mysql-test/Makefile.am')
-rw-r--r-- | mysql-test/Makefile.am | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/Makefile.am b/mysql-test/Makefile.am index 6ec8c293a9c..1f57dedc4c5 100644 --- a/mysql-test/Makefile.am +++ b/mysql-test/Makefile.am @@ -29,6 +29,11 @@ test_SCRIPTS = mysql-test-run install_test_db test_DATA = std_data/client-key.pem std_data/client-cert.pem std_data/cacert.pem CLEANFILES = $(test_SCRIPTS) $(test_DATA) +INCLUDES = -I$(srcdir)/../include -I../include -I.. +bin_PROGRAMS = mysql_test_run +mysql_test_run_SOURCES= mysql_test_run.c my_manage.c + + dist-hook: mkdir -p $(distdir)/t $(distdir)/r $(distdir)/include \ $(distdir)/std_data |