1
0
mirror of https://github.com/MariaDB/server.git synced 2025-10-27 05:56:07 +03:00
Files
mariadb/repl-tests/run-all-tests
sasha@mysql.sashanet.com 39b0241c9e fixed up mysql-test, added README for replication tests, and added
run-all-tests for replication
2000-09-18 11:40:36 -06:00

9 lines
131 B
Bash
Executable File

#! /bin/sh
for d in test-*; do
cd $d
echo -n $d | sed -e s/test-//
echo -n "...."
../../client/mysql-test $@ < run.test
cd ..
done