Skip to content
Snippets Groups Projects
Commit cc2e323c authored by benjamin.franksen's avatar benjamin.franksen
Browse files

test/compiler: factor out common stuff into make_test_lib.pm

parent c069f552
No related branches found
No related tags found
No related merge requests found
...@@ -2,44 +2,15 @@ ...@@ -2,44 +2,15 @@
# Instead, run make64_test.t inside O.$(EPICS_HOST_ARCH) # Instead, run make64_test.t inside O.$(EPICS_HOST_ARCH)
use strict; use strict;
use Test::More; use lib "..";
use make_test_lib;
my $success = {
}; make_test_lib::do_tests(
success => [qw(
my $error = { )],
tooLong => undef, failure => [qw(
varinit => undef, tooLong
varinitOptr => undef, varinit
}; varinitOptr
)]
sub do_test {
my ($test) = @_;
$_ = `make -B -s TESTPROD=$test 2>&1`;
# uncomment this comment to find out what went wrong:
#diag("$test result=$?, response=$_");
}
sub check_success {
ok($? != -1 and $? == 0 and not /error/);
}
sub check_error {
my $ne = 0;
ok($? != -1 and $? != 0);
}
plan tests => keys(%$success) + keys(%$error);
my @alltests = (
[\&check_success, $success],
[\&check_error, $error],
); );
foreach my $group (@alltests) {
my ($check,$tests) = @$group;
foreach my $test (sort(keys(%$tests))) {
do_test($test);
&$check();
}
}
...@@ -2,44 +2,15 @@ ...@@ -2,44 +2,15 @@
# Instead, run make_test.t inside O.$(EPICS_HOST_ARCH) # Instead, run make_test.t inside O.$(EPICS_HOST_ARCH)
use strict; use strict;
use Test::More; use lib "..";
use make_test_lib;
my $success = {
tooLong => undef, make_test_lib::do_tests(
}; success => [qw(
tooLong
my $error = { )],
varinit => undef, failure => [qw(
varinitOptr => undef, varinit
}; varinitOptr
)]
sub do_test {
my ($test) = @_;
$_ = `make -B -s TESTPROD=$test 2>&1`;
# uncomment this comment to find out what went wrong:
#diag("$test result=$?, response=$_");
}
sub check_success {
ok($? != -1 and $? == 0 and not /error/);
}
sub check_error {
my $ne = 0;
ok($? != -1 and $? != 0);
}
plan tests => keys(%$success) + keys(%$error);
my @alltests = (
[\&check_success, $success],
[\&check_error, $error],
); );
foreach my $group (@alltests) {
my ($check,$tests) = @$group;
foreach my $test (sort(keys(%$tests))) {
do_test($test);
&$check();
}
}
package make_test_lib;
use strict;
use Test::More;
sub do_test {
my ($test) = @_;
$_ = `make -B -s TESTPROD=$test 2>&1`;
# uncomment this comment to find out what went wrong:
#diag("$test result=$?, response=$_");
}
sub check_success {
ok($? != -1 and $? == 0 and not /error/);
}
sub check_failure {
my $ne = 0;
ok($? != -1 and $? != 0);
}
sub do_tests {
my %tests = @_;
my @alltests = (
[\&check_success, $tests{success}],
[\&check_failure, $tests{failure}],
);
plan tests => @{$tests{success}} + @{$tests{failure}};
foreach my $group (@alltests) {
my ($check,$tests) = @$group;
foreach my $test (@$tests) {
do_test($test);
&$check();
}
}
}
1;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment