X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;ds=sidebyside;f=irspy.pl;h=6a487cf80ce94f51f3a2beb76b9439b1fa1b0de9;hb=afac3019dbcdf269ccea23d03dc7bd5b653652c3;hp=8407d9a2d9d935842dd58fafd282d86c4534cb3e;hpb=ac7fd934476b9dbd9c0dad89b59f93bc216bdf7d;p=irspy-moved-to-github.git diff --git a/irspy.pl b/irspy.pl index 8407d9a..6a487cf 100755 --- a/irspy.pl +++ b/irspy.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl -w -# $Id: irspy.pl,v 1.2 2006-05-18 21:58:43 mike Exp $ +# $Id: irspy.pl,v 1.6 2006-06-20 16:25:48 mike Exp $ # # Run like this: # YAZ_LOG=irspy perl -I lib irspy.pl -t "bagel.indexdata.dk/gils z3950.loc.gov:7090/Voyager" localhost:1313/IR-Explain---1 @@ -8,9 +8,7 @@ use strict; use warnings; use Getopt::Std; -use Net::Z3950::IRSpy; -#use ZOOM::Pod; - +use ZOOM::IRSpy; my %opts; if (!getopts('t:au', \%opts) || @ARGV != 1) { @@ -29,10 +27,12 @@ if (!defined $targetList && !$opts{a}) { exit 2; } -my $spy = new Net::Z3950::IRSpy($dbname); +my $spy = new ZOOM::IRSpy($dbname); $spy->targets($targetList) if defined $targetList; $spy->initialise(); -my $query = $spy->query(); -my $n = $spy->hitcount(); -print "found $n records from query: $query\n"; -$spy->check(); +my $res = $spy->check(); +if ($res == 0) { + print "All tests were run\n"; +} else { + print "Some tests were skipped\n"; +}