ps-watcher/tests/count.t.in

25 lines
521 B
Perl
Raw Normal View History

2006-11-03 21:35:23 +00:00
#!@PERL@ -w
# $Id: count.t.in,v 1.5 2006/03/10 13:12:36 rockyb Exp $
# Some count checks
use strict;
my $test='count';
print "1..2\n";
my $srcdir = $ENV{srcdir} ? $ENV{srcdir} : '.';
my @output = `@PERL@ ../ps-watcher --log --sleep -1 --nodaemon --config ${srcdir}/$test.cnf 2>&1`;
# First line is Id line. This doesn't count in testing.
shift @output;
my $count = @output;
foreach (@output) {
s/.+:\s+//;
print $_;
}
print "ok 2\n" unless $count == 2;
#;;; Local Variables: ***
#;;; mode:perl ***
#;;; End: ***