~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/lib/mtr_cases.pl

  • Committer: Brian Aker
  • Date: 2009-01-24 09:43:35 UTC
  • Revision ID: brian@gir-3.local-20090124094335-6qdtvc35gl5fvivz
Adding in an example singe thread scheduler

Show diffs side-by-side

added added

removed removed

Lines of Context:
213
213
 
214
214
  mtr_verbose("Collecting: $suite");
215
215
 
216
 
  my $suitepath= "$::glob_suite_path";
217
216
  my $suitedir= "$::glob_mysql_test_dir"; # Default
218
217
  if ( $suite ne "main" )
219
218
  {
220
 
    $suitedir= mtr_path_exists(
221
 
             "$suitepath/$suite/drizzle-tests",
222
 
             "$suitepath/$suite/tests",
223
 
             "$suitedir/suite/$suite",
 
219
    $suitedir= mtr_path_exists("$suitedir/suite/$suite",
224
220
                               "$suitedir/$suite");
225
221
    mtr_verbose("suitedir: $suitedir");
226
222
  }
791
787
        if ( $::used_default_engine =~ /^innodb/i );
792
788
    }
793
789
 
 
790
    if ( $tinfo->{'big_test'} and ! $::opt_big_test )
 
791
    {
 
792
      $tinfo->{'skip'}= 1;
 
793
      $tinfo->{'comment'}= "Test need 'big-test' option";
 
794
      return;
 
795
    }
 
796
 
794
797
    if ( $tinfo->{'ndb_extra'} and ! $::opt_ndb_extra_test )
795
798
    {
796
799
      $tinfo->{'skip'}= 1;
831
834
  "sup_binlog_formats", ["mixed","statement"]],
832
835
 ["include/have_binlog_format_row_or_statement.inc",
833
836
  "sup_binlog_formats", ["row","statement"]],
 
837
 ["include/big_test.inc", "big_test", 1],
834
838
 ["include/have_debug.inc", "need_debug", 1],
835
839
 ["require_manager", "require_manager", 1],
836
840
);