From afac3019dbcdf269ccea23d03dc7bd5b653652c3 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Tue, 20 Jun 2006 16:25:48 +0000 Subject: [PATCH 1/1] Use return-value of check() --- irspy.pl | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/irspy.pl b/irspy.pl index 5ef7739..6a487cf 100755 --- a/irspy.pl +++ b/irspy.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl -w -# $Id: irspy.pl,v 1.5 2006-06-20 12:36:11 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 @@ -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"; +} -- 1.7.10.4