mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
2f83aed670
git-svn-id: file:///svn/mysql/tests/mysql-test@55030 c7de825b-a66e-492c-adef-691d508d4ae1
10 lines
153 B
Text
10 lines
153 B
Text
# generate tests from test generator python programs
|
|
|
|
S = $(wildcard *.py)
|
|
T = $(patsubst %.py,%.test,$(S))
|
|
|
|
default: $(T)
|
|
|
|
%.test: %.py
|
|
python $< >$@
|
|
|