~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to test/Makefile.am

More naming changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
testdir =               $(benchdir_root)/mysql-test
24
24
EXTRA_SCRIPTS =         valgrind.supp $(PRESCRIPTS)
25
25
EXTRA_DIST =            $(EXTRA_SCRIPTS) suite
26
 
GENSCRIPTS =            install_test_db mtr mysql-test-run
27
 
PRESCRIPTS =            mysql-test-run.pl mysql-stress-test.pl
 
26
GENSCRIPTS =            install_test_db mtr drizzle-test-run
 
27
PRESCRIPTS =            drizzle-test-run.pl drizzle-stress-test.pl
28
28
test_SCRIPTS =          $(GENSCRIPTS) $(PRESCRIPTS)
29
29
CLEANFILES =            $(GENSCRIPTS)
30
30
noinst_PROGRAMS =       resolve_stack_dump
126
126
uninstall-local:
127
127
        @RM@ -f -r $(DESTDIR)$(testdir)
128
128
 
129
 
# mtr - a shortcut for executing mysql-test-run.pl
130
 
mtr:
131
 
        $(RM) -f mtr
132
 
        $(LN_S) mysql-test-run.pl mtr
 
129
# dtr - a shortcut for executing drizzle-test-run.pl
 
130
dtr:
 
131
        $(RM) -f mtr dtr
 
132
        $(LN_S) drizzle-test-run.pl mtr
 
133
        $(LN_S) drizzle-test-run.pl dtr
133
134
 
134
 
# mysql-test-run - a shortcut for executing mysql-test-run.pl
135
 
mysql-test-run:
136
 
        $(RM) -f mysql-test-run
137
 
        $(LN_S) mysql-test-run.pl mysql-test-run
 
135
# drizzle-test-run - a shortcut for executing drizzle-test-run.pl
 
136
drizzle-test-run:
 
137
        $(RM) -f drizzle-test-run
 
138
        $(LN_S) drizzle-test-run.pl drizzle-test-run
138
139