Files
percona-toolkit/util/check-dev-env
Viktor Szépe 2bd40d8c39 Remove trailing spaces (#665)
* Remove trailing spaces

* PR-665 -  Remove trailing spaces

- Updated not stable test t/pt-online-schema-change/preserve_triggers.t
- Updated utilities in bin directory

* PR-665 -  Remove trailing spaces

- Fixed typos

* PR-665 -  Remove trailing spaces

- Fixed typos

---------

Co-authored-by: Sveta Smirnova <sveta.smirnova@percona.com>
2023-09-06 01:15:12 +03:00

68 lines
1.4 KiB
Perl
Executable File

#!/usr/bin/env perl
use warnings FATAL => 'all';
use English;
# This script checks if all modules necessary for testing Percona Toolkit
# are installed. It exits 0 if all modules are installed, else it exits
# non-zero.
#
# This check is just for testing Percona Toolkit. Other dev tasks, like
# building release packages, require other modules and programs.
my @required_modules = qw(
Data::Dumper
DBD::mysql
DBI
Digest::MD5
File::Basename
File::Find
File::Spec
File::Temp
File::Slurp
Getopt::Long
IO::File
List::Util
POSIX
Socket
Test::More
Time::HiRes
Time::Local
JSON
);
# CentOS doesn't seem to have this in its repo.
my @optional_modules = qw(
IO::Uncompress::Inflate
Net::Address::IP::Local
);
my $exit_status = 0;
my $fmt = "%-23s %8s\n";
# Not a module but we want to know the Perl version.
printf $fmt, "Perl", `perl -v | perl -ne '/v([\\d\\.]+)/ && print \$1'`;
foreach my $module (@required_modules) {
my $version = "NA";
eval "require $module";
if ( $EVAL_ERROR ) {
$exit_status = 1;
}
else {
$version = ${"${module}::VERSION"};
}
printf $fmt, $module, $version;
}
foreach my $module (@optional_modules) {
my $version = "NA";
eval "require $module";
if ( !$EVAL_ERROR ) {
$version = ${"${module}::VERSION"};
}
printf $fmt, $module, $version;
}
exit $exit_status;