diff options
| author | Sven Nierlein <sven@nierlein.de> | 2013-09-16 08:59:37 +0200 |
|---|---|---|
| committer | Sven Nierlein <sven@nierlein.de> | 2013-09-16 08:59:37 +0200 |
| commit | 0b656ecd2f6539b0b43b945128e20d5c98ebbf6c (patch) | |
| tree | 80808a174152456f77c15413b18c1d129273caad | |
| parent | 095e2e5db52ff5ff60eb319099d047c7c060d800 (diff) | |
| download | monitoring-plugins-0b656ecd2f6539b0b43b945128e20d5c98ebbf6c.tar.gz | |
tests: don't skip utils test
| -rw-r--r-- | NPTest.pm | 12 |
1 files changed, 6 insertions, 6 deletions
| @@ -559,12 +559,12 @@ sub TestsFrom | |||
| 559 | { | 559 | { |
| 560 | if ( $excludeIfAppMissing ) | 560 | if ( $excludeIfAppMissing ) |
| 561 | { | 561 | { |
| 562 | $application = basename( $filename, ".t" ); | 562 | $application = basename( $filename, ".t" ); |
| 563 | if ( ! -e $application ) | 563 | if ( ! -e $application and ! -e $application.'.pm' ) |
| 564 | { | 564 | { |
| 565 | print STDERR "No application (${application}) found for test harness (${filename})\n"; | 565 | print STDERR "No application (${application}) found for test harness (${filename})\n"; |
| 566 | next; | 566 | next; |
| 567 | } | 567 | } |
| 568 | } | 568 | } |
| 569 | push @tests, "${directory}/${filename}"; | 569 | push @tests, "${directory}/${filename}"; |
| 570 | } | 570 | } |
