~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/include.am

  • Committer: Lee Bieber
  • Date: 2011-02-11 20:30:05 UTC
  • mfrom: (2157.1.3 build)
  • Revision ID: kalebral@gmail.com-20110211203005-757o1y2yf78dxzqr
Merge Stewart - 716848: drizzleimport displays wrong program_name
Merge Stewart - update README file
Merge Andrew and Joe - Exposes the InnoDB SYS_REPLICATION_LOG to data_dictionary so that it is fast and fixes many issues we have been having

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
benchdir_root=          $(prefix)
21
21
testdir =               $(benchdir_root)/mysql-test
22
22
EXTRA_SCRIPTS =         tests/valgrind.supp $(PRESCRIPTS)
23
 
GENSCRIPTS =            tests/dtr tests/mtr tests/test-run tests/dbqp
 
23
GENSCRIPTS =            tests/dtr tests/mtr tests/test-run
24
24
PRESCRIPTS =            tests/test-run.pl tests/stress-test.pl
25
25
PLUGIN_TESTS =          $(pandora_plugin_test_list)
26
26
NORMAL_TESTS =          main,bool_type,cast,ddl_transactions,execute,flush_tables,identifiers,jp,mysql_compatibility,regression,tamil,time_type,unsigned_integer_type,uuid_type,microtime_type,$(PLUGIN_TESTS)
59
59
 
60
60
EXTRA_DIST += \
61
61
        $(EXTRA_SCRIPTS) \
62
 
        ${srcdir}/tests/dbqp.py \
63
62
        ${srcdir}/tests/README.stress \
64
63
        ${srcdir}/tests/suite \
65
64
        ${srcdir}/tests/t \
97
96
        $(RM) -f tests/test-run
98
97
        $(LN_S) test-run.pl tests/test-run
99
98
 
100
 
tests/dbqp:  
101
 
        $(RM) -f tests/dbqp
102
 
        $(LN_S) dbqp.py tests/dbqp
103
 
 
104
99
 
105
100
.PHONY: test \
106
101
        test-all \
152
147
test-plugins: 
153
148
        ( $(MAKE) $(AM_MAKEFLAGS) && cd tests && $(TEST_RUN) $(TEST_RUN_EXTRA_OPTIONS) --fast --force --suite=$(PLUGIN_TESTS) )
154
149
 
155
 
test-dbqp: 
 
150
test-dbqp: check
156
151
        ( $(MAKE) $(AM_MAKEFLAGS) && cd tests && $(TEST_RUN_DBQP) $(TEST_RUN_EXTRA_OPTIONS) --fast --force --suite=$(NORMAL_TESTS) )
157
152
 
158
153