mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
12 lines
128 B
Bash
12 lines
128 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
if [[ $# -ne 3 ]]; then exit 1; fi
|
||
|
|
||
|
test=$1; shift
|
||
|
outf=$1; shift
|
||
|
dump=$1; shift
|
||
|
|
||
|
set -e
|
||
|
$test
|
||
|
$dump $outf
|