mirror of
https://github.com/MariaDB/server.git
synced 2025-10-27 05:56:07 +03:00
9 lines
131 B
Bash
Executable File
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 |