~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to runall.pl

added --notnull option to all scripts

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
    $redefine_file, $seed, $mask, $mask_level, $mem, $rows,
58
58
    $varchar_len, $xml_output, $valgrind, $views, $start_dirty,
59
59
    $filter, $build_thread, $testname, $report_xml_tt, $report_xml_tt_type,
60
 
    $report_xml_tt_dest);
 
60
    $report_xml_tt_dest, $notnull);
61
61
 
62
62
my $threads = my $default_threads = 10;
63
63
my $queries = my $default_queries = 1000;
90
90
        'report-xml-tt-type=s' => \$report_xml_tt_type,
91
91
        'report-xml-tt-dest=s' => \$report_xml_tt_dest,
92
92
        'gendata:s' => \$gendata,
 
93
        'notnull' => \$notnull,
93
94
        'seed=s' => \$seed,
94
95
        'mask=i' => \$mask,
95
96
        'mask-level=i' => \$mask_level,
328
329
 
329
330
push @gentest_options, "--start-dirty" if defined $start_dirty;
330
331
push @gentest_options, "--gendata=$gendata";
 
332
push @gentest_options, "--notnull" if defined $notnull;
331
333
push @gentest_options, "--engine=$engine" if defined $engine;
332
334
push @gentest_options, "--rpl_mode=$rpl_mode" if defined $rpl_mode;
333
335
push @gentest_options, map {'--validator='.$_} split(/,/,$validators) if defined $validators;