Skip to content

Commit 5752056

Browse files
committed
add EU:F77 dump test
1 parent 1591abb commit 5752056

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

MANIFEST

+1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ pgfun.c
7979
PGPLOT.xs
8080
README
8181
t/00-report-prereqs.t
82+
t/eu-f77-dump.t
8283
t/lut.t
8384
t/pdl-graphics.t
8485
t/t1.t

t/eu-f77-dump.t

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
use strict;
2+
use warnings;
3+
use Test::More;
4+
use ExtUtils::F77;
5+
6+
pass "ok";
7+
8+
my $mod = 'ExtUtils::F77';
9+
10+
is $mod->testcompiler, 1, 'testcompiler method returns 1';
11+
is $mod->runtimeok, 1, 'runtime libs found';
12+
diag "Method: $_, ", explain $mod->$_ for qw(runtime trail_ compiler cflags);
13+
14+
done_testing;

0 commit comments

Comments
 (0)