~codership/galera/2.x

« back to all changes in this revision

Viewing changes to tests/regressions/lp1073220/run.sh

  • Committer: Alexey Yurchenko
  • Date: 2014-01-29 14:43:26 UTC
  • mto: This revision was merged to the branch mainline in revision 167.
  • Revision ID: alexey.yurchenko@codership.com-20140129144326-aa70nhzofl0smkm8
Fixes:
* provider pause() is fixed to avoid potential deadlock with replicating threads.
* lp:1099478 - handle own address in the address list properly (do not throw exception)
* lp:1259952 - fixed allocation of multiple of pages when posix_fallocate() is unavailable
* lp:1261996 - fixed compilation on Solaris 11
* lp:1232747 - fixed group remerge after partitioning event

Synced with SVN r3450

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/bash -e
2
2
#
3
 
# lp:861212
4
 
# https://bugs.launchpad.net/codership-mysql/+bug/861212
 
3
# lp:1073220
 
4
# https://bugs.launchpad.net/codership-mysql/+bug/1073220
5
5
#
6
6
# TEST SETUP
7
7
#
14
14
# PARAMETERS
15
15
#
16
16
# Number of test rounds
17
 
ROUNDS=${ROUNDS:-"200"}
 
17
ROUNDS=${ROUNDS:-"100"}
18
18
# Duration of single iteration
19
19
DURATION=${DURATION:-"3"}
20
20
#
32
32
. $SCRIPTS/misc.sh
33
33
 
34
34
echo "##################################################################"
35
 
echo "##             regression test for lp:861212"
 
35
echo "##             regression test for lp:1073220"
36
36
echo "##################################################################"
37
37
 
38
38
echo "restarting cluster to clean state"
53
53
            --stat-interval 30 --rows 1000 --ac-frac 10 --rollbacks 0.1 \
54
54
            --alters 1
55
55
 
 
56
    wait_sync $NODE_LIST
56
57
    echo "checking consistency"
57
58
    check || (sleep 5 && check)
58
59
    round=$(($round + 1))