mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-05-28 04:35:40 -04:00
tests: don't skip utils test
This commit is contained in:
parent
095e2e5db5
commit
0b656ecd2f
1 changed files with 6 additions and 6 deletions
12
NPTest.pm
12
NPTest.pm
|
|
@ -559,12 +559,12 @@ sub TestsFrom
|
|||
{
|
||||
if ( $excludeIfAppMissing )
|
||||
{
|
||||
$application = basename( $filename, ".t" );
|
||||
if ( ! -e $application )
|
||||
{
|
||||
print STDERR "No application (${application}) found for test harness (${filename})\n";
|
||||
next;
|
||||
}
|
||||
$application = basename( $filename, ".t" );
|
||||
if ( ! -e $application and ! -e $application.'.pm' )
|
||||
{
|
||||
print STDERR "No application (${application}) found for test harness (${filename})\n";
|
||||
next;
|
||||
}
|
||||
}
|
||||
push @tests, "${directory}/${filename}";
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue