~mordred/drizzle/project-steve-austin

« back to all changes in this revision

Viewing changes to tests/include.am

  • Committer: Monty Taylor
  • Date: 2011-01-15 18:45:56 UTC
  • Revision ID: mordred@inaugust.com-20110115184556-xfwx16vrc6fi5mqb
Update tests/include.am to not break make distcheck.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
testdir =               $(benchdir_root)/mysql-test
22
22
EXTRA_SCRIPTS =         tests/valgrind.supp $(PRESCRIPTS)
23
23
GENSCRIPTS =            tests/dtr tests/mtr tests/test-run
24
 
PRESCRIPTS =            tests/test-run.py tests/stress-test.pl
 
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,flush_tables,identifiers,jp,mysql_compatibility,regression,tamil,time_type,unsigned_integer_type,uuid_type,microtime_type,$(PLUGIN_TESTS)
27
27
ALL_TESTS =             main,big,jp,tamil,regression,microtime_type,$(PLUGIN_TESTS)
29
29
CLEANFILES +=           $(GENSCRIPTS) tests/mtr
30
30
 
31
31
TEST_RUN= $(PYTHON) -I../$(top_srcdir)/tests/lib \
32
 
                ../${top_srcdir}/tests/test-run.py \
 
32
                ../${top_srcdir}/tests/test-run.pl \
33
33
                --top-srcdir=../${top_srcdir} \
34
34
                --top-builddir=../${top_builddir} \
35
35
                --vardir=../${top_builddir}/tests/var \
50
50
        ${srcdir}/tests/r/pbxt/*result \
51
51
        ${srcdir}/tests/std_data \
52
52
        ${srcdir}/tests/lib/*.pl \
53
 
        ${srcdir}/tests/lib/My/*.pm \
 
53
        ${srcdir}/tests/lib/*.py \
 
54
        ${srcdir}/tests/lib/My/*.pm \
 
55
        ${srcdir}/tests/lib/My/*.pm \
 
56
        ${srcdir}/tests/lib/server_mgmt/*py \
 
57
        ${srcdir}/tests/lib/sys_mgmt/*py \
 
58
        ${srcdir}/tests/lib/test_mgmt/*py \
54
59
        tests/strip-valgrind
55
60
 
56
61
check-local: test-drizzle
57
62
 
58
 
# dtr - a shortcut for executing test-run.py
 
63
# dtr - a shortcut for executing test-run.pl
59
64
tests/dtr:
60
65
        $(RM) -f tests/dtr
61
 
        $(LN_S) test-run.py tests/dtr
 
66
        $(LN_S) test-run.pl tests/dtr
62
67
 
63
68
tests/var:
64
69
        $(mkdir_p) tests/var
65
70
 
66
71
tests/mtr:
67
72
        $(RM) -f tests/mtr
68
 
        $(LN_S) test-run.py tests/mtr
 
73
        $(LN_S) test-run.pl tests/mtr
69
74
 
70
 
# test-run - a shortcut for executing test-run.py
 
75
# test-run - a shortcut for executing test-run.pl
71
76
tests/test-run: tests/var
72
77
        $(RM) -f tests/test-run
73
 
        $(LN_S) test-run.py tests/test-run
 
78
        $(LN_S) test-run.pl tests/test-run
74
79
 
75
80
 
76
81
.PHONY: test \