Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Projets publics
Sympa
Commits
85889f6e
Commit
85889f6e
authored
Jun 19, 2019
by
IKEDA Soji
Browse files
Update to catch up Test::Compile 2.0.0.
parent
9c9c126d
Changes
2
Hide whitespace changes
Inline
Side-by-side
t/compile_executables.t
View file @
85889f6e
...
...
@@ -8,17 +8,12 @@ use warnings;
use
English
qw(-no_match_vars)
;
use
Test::
More
;
eval
{
require
Test::
Compile
;
Test::
Compile
->
import
();
};
if
(
$EVAL_ERROR
)
{
BEGIN
{
eval
'
use Test::Compile qw(all_pl_files_ok)
';
}
unless
(
$
Test::Compile::
VERSION
)
{
my
$msg
=
'
Test::Compile required
';
plan
(
skip_all
=>
$msg
);
}
#$ENV{PERL5LIB} = $ENV{PERL5LIB} ? "$ENV{PERL5LIB}:src/lib" : "src/lib";
all_pl_files_ok
(
##<po/*.pl>,
<
src
/sbin/
*.
pl
>
,
...
...
t/compile_modules.t
View file @
85889f6e
...
...
@@ -8,11 +8,8 @@ use warnings;
use
English
qw(-no_match_vars)
;
use
Test::
More
;
eval
{
require
Test::
Compile
;
Test::
Compile
->
import
();
};
if
(
$EVAL_ERROR
)
{
BEGIN
{
eval
'
use Test::Compile qw(all_pm_files all_pm_files_ok)
';
}
unless
(
$
Test::Compile::
VERSION
)
{
my
$msg
=
'
Test::Compile required
';
plan
(
skip_all
=>
$msg
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment