~ubuntu-branches/ubuntu/quantal/mysql-5.5/quantal-security

« back to all changes in this revision

Viewing changes to .pc/72_fix_standalone_tests.patch/mysql-test/lib/mtr_cases.pm

  • Committer: Package Import Robot
  • Author(s): Seth Arnold
  • Date: 2013-04-18 18:15:39 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20130418181539-7uo1w041b4h2ulbs
Tags: 5.5.31-0ubuntu0.12.10.1
* SECURITY UPDATE: Update to 5.5.31 to fix security issues (LP: #1170516)
  - http://www.oracle.com/technetwork/topics/security/cpuapr2013-1899555.html
* debian/patches/71_disable_rpl_tests.patch: refreshed.
* debian/patches/fix-mysqldump-test.patch: removed, fixed differently
  upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
963
963
  if ( $tinfo->{'ndb_test'} )
964
964
  {
965
965
    # This is a NDB test
966
 
    if ( $::opt_skip_ndbcluster == 2 )
967
 
    {
968
 
      # Ndb is not supported, skip it
969
 
      $tinfo->{'skip'}= 1;
970
 
      $tinfo->{'comment'}= "No ndbcluster support or ndb tests not enabled";
971
 
      return $tinfo;
972
 
    }
973
 
    elsif ( $::opt_skip_ndbcluster )
974
 
    {
975
 
      # All ndb test's should be skipped
976
 
      $tinfo->{'skip'}= 1;
977
 
      $tinfo->{'comment'}= "No ndbcluster tests(--skip-ndbcluster)";
 
966
    if ( $::ndbcluster_enabled == 0)
 
967
    {
 
968
      # ndbcluster is disabled
 
969
      $tinfo->{'skip'}= 1;
 
970
      $tinfo->{'comment'}= "ndbcluster disabled";
978
971
      return $tinfo;
979
972
    }
980
973
  }