X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=blobdiff_plain;f=irspy.pl;h=80a2455d6662aa0d09887cc8705720ddfc749556;hp=5ef77393e91adda4dff8615bb6a3241726cbb88b;hb=41124245036d761e9b2fc3afd07a4d9647ecbeb6;hpb=f4ad227f469be5cf0d848e1e7e99f7620abcf4a9 diff --git a/irspy.pl b/irspy.pl index 5ef7739..80a2455 100755 --- a/irspy.pl +++ b/irspy.pl @@ -1,9 +1,9 @@ #!/usr/bin/perl -w -# $Id: irspy.pl,v 1.5 2006-06-20 12:36:11 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; @@ -30,4 +30,9 @@ if (!defined $targetList && !$opts{a}) { 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"; +}