mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 19:41:47 +01:00
15 lines
270 B
Bash
Executable file
15 lines
270 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
case "${BUILD_TOOL}" in
|
|
autotools)
|
|
test/unit/run-test.sh
|
|
test/command/run-test.sh
|
|
# test/command/run-test.sh --interface http
|
|
# test/command/run-test.sh --interface http --testee groonga-httpd
|
|
;;
|
|
cmake)
|
|
test/command/run-test.sh
|
|
;;
|
|
esac
|