~gl-az/percona-xtrabackup/2.0-ST31441-suspend-debugging

« back to all changes in this revision

Viewing changes to test/t/ib_part_tf_innodb.sh

  • Committer: Alexey Kopytov
  • Date: 2013-04-28 05:28:35 UTC
  • mfrom: (533.1.2 2.0)
  • Revision ID: akopytov@gmail.com-20130428052835-aadtc5yxcbadcmbj
Manual merge of lp:~akopytov/percona-xtrabackup/support-remote-tablespaces-2.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
vlog "Backup taken"
31
31
 
32
32
COUNT=`xtrabackup --stats --tables-file=$topdir/tables --datadir=$topdir/backup \
33
 
       | grep table: | awk '{print $2}' | sort -u | wc -l`
 
33
       | grep table: | grep -v SYS_ | awk '{print $2}' | sort -u | wc -l`
34
34
echo "COUNT = $COUNT"
35
 
if [ $COUNT != 7 ] ; then
 
35
if [ $COUNT != 5 ] ; then
36
36
        vlog "xtrabackup --stats does not work"
37
37
        exit -1
38
38
fi