From 0b656ecd2f6539b0b43b945128e20d5c98ebbf6c Mon Sep 17 00:00:00 2001 From: Sven Nierlein Date: Mon, 16 Sep 2013 08:59:37 +0200 Subject: tests: don't skip utils test diff --git a/NPTest.pm b/NPTest.pm index f14657c..0713b5e 100644 --- a/NPTest.pm +++ b/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}"; } -- cgit v0.10-9-g596f