X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=web%2Fhtdocs%2Frun.html;fp=web%2Fhtdocs%2Frun.html;h=0000000000000000000000000000000000000000;hb=c50f15e0b604e77b6b4bea632e6786678fa03379;hp=1a6d984e8f4ac72f7166ee2459f3a1a48b916221;hpb=2dba27004b48f94173867d20a21eb9188d30becf;p=irspy-moved-to-github.git 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"; -} -