~percona-toolkit-dev/percona-toolkit/fix-923896

« back to all changes in this revision

Viewing changes to t/lib/VariableAdvisorRules.t

Merge fix-pva-mysql-5.5-bug-898138.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
use strict;
10
10
use warnings FATAL => 'all';
11
11
use English qw(-no_match_vars);
12
 
use Test::More tests => 80;
 
12
use Test::More tests => 83;
13
13
 
14
14
use PodParser;
15
15
use AdvisorRules;
64
64
      vars   => [qw(concurrent_insert 2)],
65
65
      advice => [qw(concurrent_insert)],
66
66
   },
 
67
   {  name   => "concurrent insert",
 
68
      vars   => [qw(concurrent_insert NEVER)],
 
69
      advice => [qw()],
 
70
   },
 
71
   {  name   => "concurrent insert",
 
72
      vars   => [qw(concurrent_insert AUTO)],
 
73
      advice => [qw()],
 
74
   },
 
75
   {  name   => "concurrent insert",
 
76
      vars   => [qw(concurrent_insert ALWAYS)],
 
77
      advice => [qw(concurrent_insert)],
 
78
   },
67
79
   {  name   => "connect timeout",
68
80
      vars   => [qw(connect_timeout 11)],
69
81
      advice => [qw(connect_timeout)],