summaryrefslogtreecommitdiff
path: root/iltest
blob: 7bc82236f41b841725131dbc673eae0d0ed76adb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#!/usr/bin/perl

# Copyright © 2011 by Red Hat, Inc.
#                                                                            
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# 
# Authors: Peter Hutterer <peter.hutterer@redhat.com>


use ILTest::ILTest;
use Getopt::Long;

use warnings;
use strict;

=head1 NAME

iltest - interleaved testing tool.

=head1 DESCRIPTION

The C<iltest> command provides simple testing of two different entities
against each other. A C<testee> is the primary program to be tested, and a
C<tester> is run against it.

=head1 SYNOPSIS

	# Run a tester C<bar> against a testee C<foo>
	$ iltest foo bar
=cut

sub usage () {
	print "Usage: $0 [options] <testee> <tester>\n";
	print "Options:\n";
	print "	--verbose	be verbose, very verbose\n";
	print "	--quiet		don't print anything but test results\n";
	print "	--suite		tester is a ILTest::TestSuite. If running a suite,\n";
	print "	       		the testee may be optional.\n";
	exit(1);
}

my $verbosity = "5";
my $quiet = "";
my $suite = "";

GetOptions("verbose=i" => \$verbosity,
	   "quiet" => \$quiet,
	   "suite" => \$suite);

$verbosity = 0 if ($quiet);

my $testee = shift;
my $tester = shift;

usage() if not $testee;
my $iltest;

if ($suite) {
	my $suite;
	$suite = $tester ? $tester : $testee;
	$testee = $tester ? $testee : undef;
	$iltest = ILTest::ILTest->new(testee => $testee,
				      suite => $suite,
				      verbosity => $verbosity);
} else {
	usage() if (not $testee or not $tester);
	$iltest = ILTest::ILTest->new(testee => $testee,
				      tester => $tester,
				      verbosity => $verbosity);
}

my $rc = $iltest->test();
if ($rc) {
	print "Test failed with code $rc\n";
} else {
	print "Test succeeded\n";
}
exit($rc);

# vim: set noexpandtab shiftwidth=8 tabstop=8: