From 8b2630a82fbecfd57fa38aebb397a755936690e5 Mon Sep 17 00:00:00 2001 From: stbuehler Date: Fri, 18 Sep 2015 15:15:18 +0000 Subject: add README to point to lighttpd-1.4.x as stable git-svn-id: svn://svn.lighttpd.net/lighttpd/trunk@3041 152afb58-edef-0310-8abb-c4023f1b3aa9 --- tests/run-tests.pl | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100755 tests/run-tests.pl (limited to 'tests/run-tests.pl') diff --git a/tests/run-tests.pl b/tests/run-tests.pl deleted file mode 100755 index 3650d557..00000000 --- a/tests/run-tests.pl +++ /dev/null @@ -1,20 +0,0 @@ -#! /usr/bin/env perl - -use strict; - -use Test::Harness qw(&runtests $verbose); -$verbose = (defined $ENV{'VERBOSE'} ? $ENV{'VERBOSE'} : 0); -my $tests = (defined $ENV{'RUNTESTS'} ? $ENV{'RUNTESTS'} : ''); - -my $srcdir = (defined $ENV{'srcdir'} ? $ENV{'srcdir'} : '.'); - -opendir DIR, $srcdir; -my (@fs, $f); -while ($f = readdir(DIR)) { - if ($f =~ /^(.*)\.t$/) { - next if ($tests ne '' and $tests !~ /(^|\s+)$1(\s+|$)/); - push @fs, $srcdir.'/'.$f; - } -} -closedir DIR; -runtests @fs; -- cgit v1.2.1