~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/Makefile.am

  • Committer: Lee Bieber
  • Date: 2009-05-20 17:05:46 UTC
  • mto: (1022.3.1 mordred) (1054.2.6 mordred)
  • mto: This revision was merged to the branch mainline in revision 1031.
  • Revision ID: lbieber@dhcp-umpk18-111-188.sfbay.sun.com-20090520170546-jl7v0223dzm57u4z
added a test-all target that runs all the test suites specified by  macro

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
GENSCRIPTS =            install_test_db dtr test-run
23
23
PRESCRIPTS =            test-run.pl stress-test.pl
24
24
PLUGIN_TESTS =          crc32,csv,hello_world,md5
 
25
ALL_TESTS =             main,big,$(PLUGIN_TESTS)
25
26
noinst_SCRIPTS =        $(GENSCRIPTS) $(PRESCRIPTS)
26
27
CLEANFILES =            $(GENSCRIPTS) mtr
27
28
noinst_PROGRAMS =       resolve_stack_dump
78
79
 
79
80
 
80
81
.PHONY: test \
 
82
        test-all \
 
83
        test-big \
81
84
        test-drizzle \
82
 
        test-plugins \
83
 
        test-big
 
85
        test-plugins
84
86
 
85
87
# Target 'test' will run the regression test suite using the built server.
86
88
#
95
97
# Please keep the list of tests in alphabetical order for ease of
96
98
# maintenance and verification
97
99
 
 
100
test-all:
 
101
        $(TEST_RUN) --fast --force --suite=$(ALL_TESTS)
 
102
 
98
103
test-drizzle:
99
104
        $(TEST_RUN) --fast --force --suite=main
100
105