X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=irspy.pl;h=80a2455d6662aa0d09887cc8705720ddfc749556;hp=5628a3a6a2eb0e0ccdcda982b9a6464997a59792;hb=f38c3dad824e6c5df688506978ca5e00b31e67c8;hpb=095f63eb4032d8e3c887dc315d540b94343c30c6 diff --git a/irspy.pl b/irspy.pl index 5628a3a..80a2455 100755 --- a/irspy.pl +++ b/irspy.pl @@ -1,14 +1,14 @@ #!/usr/bin/perl -w -# $Id: irspy.pl,v 1.4 2006-06-07 17:04:52 mike Exp $ +# $Id: irspy.pl,v 1.7 2006-06-21 15:58:08 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 +# YAZ_LOG=irspy,irspy_test,irspy_debug perl -I lib irspy.pl -t "bagel.indexdata.dk/gils z3950.loc.gov:7090/Voyager" localhost:1313/IR-Explain---1 use strict; use warnings; use Getopt::Std; -use Net::Z3950::IRSpy; +use ZOOM::IRSpy; my %opts; if (!getopts('t:au', \%opts) || @ARGV != 1) { @@ -27,7 +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(); -$spy->check(); +my $res = $spy->check(); +if ($res == 0) { + print "All tests were run\n"; +} else { + print "Some tests were skipped\n"; +}