diff options
author | unknown <serg@janus.mylan> | 2008-01-29 18:15:38 +0100 |
---|---|---|
committer | unknown <serg@janus.mylan> | 2008-01-29 18:15:38 +0100 |
commit | db58a1378cd5427284cd9f794c19ac286da5f2b1 (patch) | |
tree | 6c4ae99b76cbf786c5ff8891aef13324cdbff950 /unittest | |
parent | 71eb292f37b25c11fd3d041d38d3397d7ce8ccb7 (diff) | |
download | mariadb-git-db58a1378cd5427284cd9f794c19ac286da5f2b1.tar.gz |
changes for big unit tests
Makefile.am:
make test-unit-big
storage/maria/unittest/Makefile.am:
support big unit tests
storage/maria/unittest/ma_pagecache_consist.c:
support big unit tests and other changes
storage/maria/unittest/ma_pagecache_single.c:
support big unit tests
storage/maria/unittest/ma_test_all-t:
support big unit tests and sub skip()
storage/maria/unittest/ma_test_loghandler-t.c:
support big unit tests
unittest/unit.pl:
don't ignore existing $MYTAP_CONFIG
Diffstat (limited to 'unittest')
-rw-r--r-- | unittest/unit.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unittest/unit.pl b/unittest/unit.pl index 0b2a26446f0..a1aab376fdf 100644 --- a/unittest/unit.pl +++ b/unittest/unit.pl @@ -32,18 +32,18 @@ unit - Run unit tests in directory =head1 SYNOPSIS - unit run + unit [--[no]big] [--[no]verbose] run [tests to run] =cut -my $big=1; +my $big= $ENV{'MYTAP_CONFIG'} eq 'big'; my $result = GetOptions ( "big!" => \$big, "verbose!" => \$Test::Harness::verbose, ); -$ENV{'MYTAP_CONFIG'} = $big ? "big" : ""; +$ENV{'MYTAP_CONFIG'} = $big ? 'big' : ''; my $cmd = shift; |