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/srvswdev11/.svn/text-base/xtest215.sh.svn-base
2016-01-06 14:08:59 -06:00

27 lines
525 B
Bash

#!/bin/bash
#
# Test 215. Tests concurrent transactions with each thread running a long continuous session.
#
TEST=test215
STATUSTEXT="215 Concurrent Transactions Test: "
# Default the status to In Progress.
echo "$STATUSTEXT In Progress" > $TEST.status
cd $TEST
./go215.sh
ret=$?
cd ..
#
# Populate the .status file.
#
if [ $ret -eq 0 ]; then
echo "$STATUSTEXT Passed `cat $TEST/status.txt`" > $TEST.status
else
echo "$STATUSTEXT Failed `cat $TEST/status.txt`" > $TEST.status
fi
cat $TEST.status
exit $ret