~posulliv/drizzle/memcached_applier

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# Copyright (C) 2000-2006 MySQL AB
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; version 2
# of the License.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public
# License along with this library; if not, write to the Free
# Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
# MA 02111-1307, USA

srcdir=			${top_srcdir}/tests
benchdir_root=		$(prefix)
testdir =	        $(benchdir_root)/mysql-test
EXTRA_SCRIPTS = 	valgrind.supp $(PRESCRIPTS)
GENSCRIPTS =		install_test_db dtr test-run
PRESCRIPTS =		test-run.pl stress-test.pl
PLUGIN_TESTS =		$(drizzled_plugin_test_list)
ALL_TESTS =		main,big,$(PLUGIN_TESTS)
noinst_SCRIPTS =	$(GENSCRIPTS) $(PRESCRIPTS)
CLEANFILES = 		$(GENSCRIPTS) mtr
noinst_PROGRAMS = 	resolve_stack_dump
resolve_stack_dump_SOURCES = resolve_stack_dump.cc

LDADD=			$(top_builddir)/mysys/libmysys.la \
                        $(top_builddir)/mystrings/libmystrings.la \
			$(LIBINTL)

TEST_RUN= $(PERL) -I$(top_srcdir)/tests/lib \
		${top_srcdir}/tests/test-run.pl \
		--vardir=${top_builddir}/tests/var \
		--testdir=${top_srcdir}/tests \
		--mtr-build-thread=$$$$

EXTRA_DIST = \
	$(EXTRA_SCRIPTS) \
	suite \
	${srcdir}/t \
	${srcdir}/extra/rpl_tests/*.test \
	${srcdir}/extra/binlog_tests/*.test \
	${srcdir}/include/*.inc \
	${srcdir}/include/*.sql \
	${srcdir}/include/*.test \
	${srcdir}/r/*.result \
	${srcdir}/r/*.require \
	${srcdir}/std_data/Moscow_leap \
	${srcdir}/std_data/Index.xml \
	${srcdir}/std_data/*.dat \
	${srcdir}/std_data/*.000001 \
	${srcdir}/std_data/des_key_file \
	${srcdir}/std_data/*.pem \
	${srcdir}/std_data/*.txt \
	${srcdir}/std_data/*.frm \
	${srcdir}/std_data/*.MY* \
	${srcdir}/std_data/*.cnf \
	${srcdir}/std_data/parts/part_* \
	${srcdir}/lib/*.pl \
	${srcdir}/lib/My/*.pm

check: test-drizzle

# dtr - a shortcut for executing test-run.pl
dtr:
	$(RM) -f mtr dtr
	$(LN_S) ${top_srcdir}/tests/test-run.pl mtr
	$(LN_S) ${top_srcdir}/tests/test-run.pl dtr
	$(mkdir_p) ${top_builddir}/tests/var

# test-run - a shortcut for executing test-run.pl
test-run:
	$(RM) -f test-run
	$(LN_S) ${top_srcdir}/tests/test-run.pl test-run


.PHONY: test \
	test-all \
	test-big \
	test-drizzle \
	test-plugins

# Target 'test' will run the regression test suite using the built server.
#
# If you are running in a shared environment, users can avoid clashing
# port numbers by setting individual small numbers 1-100 to the
# environment variable MTR_BUILD_THREAD. The script "test-run"
# will then calculate the various port numbers it needs from this,
# making sure each user use different ports.

test: test-drizzle

# Please keep the list of tests in alphabetical order for ease of
# maintenance and verification

test-all:
	$(TEST_RUN) --fast --force --suite=$(ALL_TESTS)

test-drizzle:
	$(TEST_RUN) --fast --force --suite=main,$(PLUGIN_TESTS)

test-big:
	$(TEST_RUN) --fast --force --suite=big

test-plugins:
	$(TEST_RUN) --fast --force --suite=$(PLUGIN_TESTS)

distclean-local:
	rm -rf var