~tsarev/percona-server/replication_slave_skip_columns-mysqlbinlog

« back to all changes in this revision

Viewing changes to install_tests

  • Committer: Oleg Tsarev
  • Date: 2011-08-14 20:54:28 UTC
  • mfrom: (179.1.7 rnt-5.1)
  • Revision ID: oleg.tsarev@percona.com-20110814205428-lsfrdv5uhzoknoyy
1) update from lp:percona-server/5.1
2) move rnt-5.1-specific patches and mysql-test-rnt.diff to patches/ folder
3) remove patch bug61222.patch (already fixed in 5.1.58)
4) add to normalize_patches "set -eux" for better output diagnostics

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 
5
5
MYSQL_VERSION="$(grep ^MYSQL_VERSION= "Makefile" \
6
6
    | cut -d = -f 2)"
7
 
export PERCONA_SERVER="Percona-Server-$MYSQL_VERSION"
 
7
PERCONA_SERVER_VERSION="$(grep ^PERCONA_SERVER_VERSION= "Makefile" \
 
8
    | cut -d = -f 2)"
 
9
PERCONA_SERVER="Percona-Server-${MYSQL_VERSION}-${PERCONA_SERVER_VERSION}"
8
10
 
9
11
install_file_type()
10
12
{
26
28
    test -d $1 && do_install_path $1 $2
27
29
}
28
30
current=0;
29
 
count=`wc -l series`;
 
31
count=`wc -l patches/series`;
30
32
install_path mysql-test "global" $current $count
31
 
for test_name in `cat series`; do
 
33
for test_name in `cat patches/series`; do
32
34
    current=$((current+1));
33
35
    install_path mysql-test/$test_name $test_name $current $count
34
36
done
35
37
echo "Done"
 
38
exit 0;
 
 
b'\\ No newline at end of file'