aboutsummaryrefslogtreecommitdiffstats
path: root/vespaclient/src/perl/test/Generic/UseTest.pl
diff options
context:
space:
mode:
Diffstat (limited to 'vespaclient/src/perl/test/Generic/UseTest.pl')
-rw-r--r--vespaclient/src/perl/test/Generic/UseTest.pl34
1 files changed, 0 insertions, 34 deletions
diff --git a/vespaclient/src/perl/test/Generic/UseTest.pl b/vespaclient/src/perl/test/Generic/UseTest.pl
deleted file mode 100644
index 3b56873c775..00000000000
--- a/vespaclient/src/perl/test/Generic/UseTest.pl
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-#
-# That that all perl files use strict and warnings
-#
-
-use Test::More;
-use TestUtils::VespaTest;
-
-use strict;
-use warnings;
-
-my @dirs = (
- '../bin',
- '../lib',
- 'Yahoo/Vespa/Mocks'
-);
-
-my $checkdirs = join(' ', @dirs);
-
-my @files = `find $checkdirs -name \\*.pm -or -name \\*.pl`;
-chomp @files;
-
-printTest "Checking " . (scalar @files) . " files for includes.\n";
-
-foreach my $file (@files) {
- ok( system("cat $file | grep 'use strict;' >/dev/null") == 0,
- "$file use strict" );
- ok( system("cat $file | grep 'use warnings;' >/dev/null") == 0,
- "$file use warnings" );
-}
-
-done_testing();
-
-exit(0);