~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to storage/maria/ma_test_big.sh

manual merge 6.0-main --> 6.0-bka-review

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
#
 
3
# This tests is good to find bugs in the redo/undo handling and in
 
4
# finding bugs in blob handling
 
5
#
 
6
 
 
7
set -e
 
8
a=15
 
9
while test $a -le 5000
 
10
do
 
11
  echo $a
 
12
  rm -f maria_log*
 
13
  ma_test2 -s -L -K -W -P -M -T -c -b32768 -t4 -A1 -m$a > /dev/null
 
14
  maria_read_log -a -s >& /dev/null
 
15
  maria_chk -es test2
 
16
  maria_read_log -a -s >& /dev/null
 
17
  maria_chk -es test2
 
18
  rm test2.MA?
 
19
  maria_read_log -a -s >& /dev/null
 
20
  maria_chk -es test2
 
21
  a=$((a+1))
 
22
done