Commit 9dc3e21a authored by Kazuhiko's avatar Kazuhiko

rename test to tests to avoid conflict with make target.

parent da50aa5e
......@@ -4,7 +4,7 @@ lib_mysqludf_stem_la_CXXFLAGS = -DSTANDARD -DMYSQL_SERVER @MYSQL_CFLAGS@
lib_mysqludf_stem_la_LDFLAGS = -module -avoid-version -no-undefined -L$(CURDIR)/libstemmer_c -lstemmer
SUBDIRS = libstemmer_c
EXTRA_DIST = test *.sql API Makefile.libstemmer_c
EXTRA_DIST = tests *.sql API Makefile.libstemmer_c
.PHONY : test
......@@ -26,10 +26,10 @@ dist-hook:
find $(distdir) -name .svn -o -name .DS_Store -o -name .cdtproject -o -name .project -o -name .settings | xargs --no-run-if-empty rm -rf
test:
for i in `ls test/*.result | awk -F "." '{print $$1}'`; do echo "$$i"; $(MYSQLTEST) --result-file=$$i.result < $$i.test; done
for i in `ls tests/*.result | awk -F "." '{print $$1}'`; do echo "$$i"; $(MYSQLTEST) --result-file=$$i.result < $$i.test; done
test-generate:
for i in `ls test/*.test | awk -F "." '{print $$1}'`; do echo "$$i"; $(MYSQLTEST) --result-file=$$i.result --record < $$i.test; done
for i in `ls tests/*.test | awk -F "." '{print $$1}'`; do echo "$$i"; $(MYSQLTEST) --result-file=$$i.result --record < $$i.test; done
test-clean:
rm test/*.log test/*.reject
\ No newline at end of file
rm tests/*.log tests/*.reject
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment