From cdc06cc3e2c4670d3cd46b0a03adcf7e6958eff1 Mon Sep 17 00:00:00 2001 From: Peter Bray Date: Mon, 25 Jul 2005 01:47:15 +0000 Subject: [1185704] New Testing Infrastructure. Complete rewrite of the original testing infrastructure and all test cases (to use the new infrastructure) See NPTest.pm and issue 1185704 for more details. git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1207 f882894a-f735-0410-b71e-b25c423dba1c --- plugins-scripts/t/check_rpc.t | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) (limited to 'plugins-scripts/t/check_rpc.t') diff --git a/plugins-scripts/t/check_rpc.t b/plugins-scripts/t/check_rpc.t index afcb867c..9fff0ee9 100644 --- a/plugins-scripts/t/check_rpc.t +++ b/plugins-scripts/t/check_rpc.t @@ -1,19 +1,22 @@ +#! /usr/bin/perl -w -I .. +# +# Remote Procedure Call (RPC) Tests via check_rpc +# +# $Id$ +# + use strict; use Test; -use vars qw($tests); +use NPTest; +use vars qw($tests); BEGIN {$tests = 2; plan tests => $tests} -my $null = ''; -my $cmd; -my $str; -my $t=0; +my $successOutput = '/^check_rpc/'; + +my $t; -$cmd = "./check_rpc -V"; -$str = `$cmd`; -$t += ok $?>>8,0; -print "Test was: $cmd\n" if ($?); -$t += ok $str, '/^check_rpc/'; +$t += checkCmd( "./check_rpc -V", 0, $successOutput ); exit(0) if defined($Test::Harness::VERSION); exit($tests - $t); -- cgit v1.2.3