From: Mike Taylor Date: Fri, 22 Sep 2006 15:04:29 +0000 (+0000) Subject: Superseded by all.html X-Git-Tag: CPAN-v1.02~54^2~1007 X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=commitdiff_plain;h=d619b4c73c11d7051bee2dc0ca01818cfd59ef32;hp=bbb121e61ea43f6cb1a72ac823e648f33461884b Superseded by all.html --- diff --git a/web/htdocs/run.html b/web/htdocs/run.html deleted file mode 100644 index 1a6d984..0000000 --- a/web/htdocs/run.html +++ /dev/null @@ -1,21 +0,0 @@ -%# $Id: run.html,v 1.2 2006-09-20 13:19:53 mike Exp $ -<%perl> -use lib "/usr/local/src/cvs/irspy/lib"; -use ZOOM::IRSpy; -my $dbname = "localhost:3313/IR-Explain---1"; -my @targets = qw(bagel.indexdata.dk/gils - z3950.loc.gov:7090/Voyager); - -IRSpy version <% $ZOOM::IRSpy::VERSION %>
-<%perl> -my $targetList = join(" ", @targets); -my $spy = new ZOOM::IRSpy($dbname); -$spy->targets($targetList); -$spy->initialise(); -my $res = $spy->check(); -if ($res == 0) { - print "All tests were run\n"; -} else { - print "Some tests were skipped\n"; -} -