diff options
author | unknown <msvensson@shellback.(none)> | 2006-07-30 19:16:51 +0200 |
---|---|---|
committer | unknown <msvensson@shellback.(none)> | 2006-07-30 19:16:51 +0200 |
commit | 1385320be8e7f9400da8ca9cf4473cc7cd317e37 (patch) | |
tree | 57cb1f5cf87661c0b34e781be2c5c993d4f7359b /client/Makefile.am | |
parent | 1c0baed86c08917d8cd6171b9fdb73ec3b6a1d62 (diff) | |
download | mariadb-git-1385320be8e7f9400da8ca9cf4473cc7cd317e37.tar.gz |
Add new commands to mysqltest - to make it easier to write portable test scripts
client/Makefile.am:
Link mysqltest with mysys library
client/mysqltest.c:
Add new commands to mysqltest:
- remove_file
- copy_file
- file_exists
- write_file
- perl
mysql-test/r/mysqltest.result:
Update result file
mysql-test/t/mysqltest.test:
Add tests for new commands
Diffstat (limited to 'client/Makefile.am')
-rw-r--r-- | client/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/Makefile.am b/client/Makefile.am index ff97243815a..94174614d30 100644 --- a/client/Makefile.am +++ b/client/Makefile.am @@ -46,7 +46,8 @@ mysqladmin_SOURCES = mysqladmin.cc mysql_LDADD = @readline_link@ @TERMCAP_LIB@ $(LDADD) $(CXXLDFLAGS) mysqltest_SOURCES= mysqltest.c $(top_srcdir)/mysys/my_getsystime.c \ $(yassl_dummy_link_fix) -mysqltest_LDADD = $(top_builddir)/regex/libregex.a $(LDADD) +mysqltest_LDADD = $(top_builddir)/regex/libregex.a $(LDADD) \ + $(top_builddir)/mysys/libmysys.a mysqlbinlog_SOURCES = mysqlbinlog.cc $(top_srcdir)/mysys/mf_tempdir.c \ $(top_srcdir)/mysys/my_new.cc \ $(top_srcdir)/mysys/my_bit.c \ |