mirror of
https://github.com/minio/minio.git
synced 2024-12-28 16:15:56 -05:00
16 lines
274 B
Bash
16 lines
274 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
#
|
||
|
|
||
|
# handle command line arguments
|
||
|
if [ $# -ne 2 ]; then
|
||
|
echo "usage: run.sh <OUTPUT-LOG-FILE> <ERROR-LOG-FILE>"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
output_log_file="$1"
|
||
|
error_log_file="$2"
|
||
|
|
||
|
# run tests
|
||
|
/mint/run/core/versioning/tests 1>>"$output_log_file" 2>"$error_log_file"
|