Commit 5decebc5 authored by unknown's avatar unknown
Browse files

Skip innodb test if mysqld doesn't have innodb support

parent 7596e12b
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -554,6 +554,18 @@ sub collect_one_test_case($$$$$$$) {
      }
    }

    if ( $tinfo->{'innodb_test'} )
    {
      # This is a test that need inndob
      if ( $::mysqld_variables{'innodb'} eq "FALSE" )
      {
	# innodb is not supported, skip it
	$tinfo->{'skip'}= 1;
	$tinfo->{'comment'}= "No innodb support";
	return;
      }
    }

  }
}