mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
a14de3b2db
More changes according to review comments. unittest/README.txt: Changes to manifest. unittest/mysys/bitmap.t.c: Removed unused functions and variables. Marked unused parameters as unused. No need to test every size up to 4096 bits, testing to 1024, but I think this is too much as well. unittest/unit.pl: Added test for version-specific function.
109 lines
2.5 KiB
Perl
109 lines
2.5 KiB
Perl
#!/usr/bin/perl
|
|
|
|
# Override _command_line in the standard Perl test harness to prevent
|
|
# it from using "perl" to run the test scripts.
|
|
package MySQL::Straps;
|
|
|
|
use base qw(Test::Harness::Straps);
|
|
|
|
use strict;
|
|
|
|
sub _command_line {
|
|
return $_[1]
|
|
}
|
|
|
|
package main;
|
|
|
|
use Test::Harness qw(&runtests $verbose);
|
|
use File::Find;
|
|
|
|
use strict;
|
|
|
|
sub run_cmd (@);
|
|
|
|
my %dispatch = (
|
|
"run" => \&run_cmd,
|
|
);
|
|
|
|
=head1 NAME
|
|
|
|
unit - Run unit tests in directory
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
unit run
|
|
|
|
=cut
|
|
|
|
my $cmd = shift;
|
|
|
|
# $Test::Harness::Verbose = 1;
|
|
# $Test::Harness::Debug = 1;
|
|
|
|
if (defined $cmd && exists $dispatch{$cmd}) {
|
|
$dispatch{$cmd}->(@ARGV);
|
|
} else {
|
|
print "Unknown command", (defined $cmd ? " $cmd" : ""), ".\n";
|
|
print "Available commands are: ", join(", ", keys %dispatch), "\n";
|
|
}
|
|
|
|
=head2 run
|
|
|
|
Run all unit tests in the current directory and all subdirectories.
|
|
|
|
=cut
|
|
|
|
|
|
sub _find_test_files (@) {
|
|
my @dirs = @_;
|
|
my @files;
|
|
find sub {
|
|
$File::Find::prune = 1 if /^SCCS$/;
|
|
push(@files, $File::Find::name) if -x _ && /\.t\z/;
|
|
}, @dirs;
|
|
return @files;
|
|
}
|
|
|
|
sub run_cmd (@) {
|
|
my @files;
|
|
|
|
# If no directories were supplied, we add all directories in the
|
|
# current directory except 'mytap' since it is not part of the
|
|
# test suite.
|
|
if (@_ == 0) {
|
|
# Ignore these directories
|
|
my @ignore = qw(mytap SCCS);
|
|
|
|
# Build an expression from the directories above that tests if a
|
|
# directory should be included in the list or not.
|
|
my $ignore = join(' && ', map { '$_ ne ' . "'$_'"} @ignore);
|
|
|
|
# Open and read the directory. Filter out all files, hidden
|
|
# directories, and directories named above.
|
|
opendir(DIR, ".") or die "Cannot open '.': $!\n";
|
|
@_ = grep { -d $_ && $_ !~ /^\..*/ && eval $ignore } readdir(DIR);
|
|
closedir(DIR);
|
|
}
|
|
|
|
print "Running tests: @_\n";
|
|
|
|
foreach my $name (@_) {
|
|
push(@files, _find_test_files $name) if -d $name;
|
|
push(@files, $name) if -f $name;
|
|
}
|
|
|
|
if (@files > 0) {
|
|
# Removing the first './' from the file names
|
|
foreach (@files) { s!^\./!! }
|
|
|
|
# Install the strap above instead of the default strap. Since
|
|
# we are replacing the straps under the feet of Test::Harness,
|
|
# we need to do some basic initializations in the new straps.
|
|
$Test::Harness::Strap = MySQL::Straps->new;
|
|
$Test::Harness::Strap->{callback} = \&Test::Harness::strap_callback
|
|
if defined &Test::Harness::strap_callback;
|
|
|
|
runtests @files;
|
|
}
|
|
}
|
|
|