1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-17 09:41:06 +03:00
Files
mariadb-columnstore-engine/mysql/queries/nightly/demo/.svn/text-base/test502.sh.svn-base
2016-01-06 14:08:59 -06:00

31 lines
470 B
Bash

#!/bin/sh
#
# Test 502. DML/DDL performance test.
#
TEST=test502
STATUSTEXT="502 DML/DDL Performance : "
# Default the status to Failed.
echo "$STATUSTEXT In Progress" > $TEST.status
if [ $# -ge 1 ]
then
runName=$1
else
runName=`pwd | awk -F "/" '{print $3}'`
fi
cd $TEST
./go502.sh $runName
cd ..
cat $TEST/aaa_summary.txt > $TEST.details
#
# Populate the .status file.
#
echo "$STATUSTEXT $(cat $TEST/status.txt))" > $TEST.status
cat $TEST.status