Initial commit of OpenSPARC T2 architecture model.
[OpenSPARC-T2-SAM] / sam-t2 / devtools / v9 / bin / prove
CommitLineData
920dae64
AT
1#!/import/archperf/ws/devtools/4/v9/bin/perl
2 eval 'exec /import/archperf/ws/devtools/4/v9/bin/perl -S $0 ${1+"$@"}'
3 if $running_under_some_shell;
4#!/usr/bin/perl -w
5
6use strict;
7
8use Test::Harness;
9use Getopt::Long;
10use Pod::Usage 1.12;
11use File::Spec;
12
13use vars qw( $VERSION );
14$VERSION = "1.04";
15
16my @ext = ();
17my $shuffle = 0;
18my $dry = 0;
19my $blib = 0;
20my $lib = 0;
21my $recurse = 0;
22my @includes = ();
23my @switches = ();
24
25# Allow cuddling the paths with the -I
26@ARGV = map { /^(-I)(.+)/ ? ($1,$2) : $_ } @ARGV;
27
28# Stick any default switches at the beginning, so they can be overridden
29# by the command line switches.
30unshift @ARGV, split( " ", $ENV{PROVE_SWITCHES} ) if defined $ENV{PROVE_SWITCHES};
31
32Getopt::Long::Configure( "no_ignore_case" );
33Getopt::Long::Configure( "bundling" );
34GetOptions(
35 'b|blib' => \$blib,
36 'd|debug' => \$Test::Harness::debug,
37 'D|dry' => \$dry,
38 'h|help|?' => sub {pod2usage({-verbose => 1}); exit},
39 'H|man' => sub {pod2usage({-verbose => 2}); exit},
40 'I=s@' => \@includes,
41 'l|lib' => \$lib,
42 'r|recurse' => \$recurse,
43 's|shuffle' => \$shuffle,
44 't' => sub { unshift @switches, "-t" }, # Always want -t up front
45 'T' => sub { unshift @switches, "-T" }, # Always want -T up front
46 'timer' => \$Test::Harness::Timer,
47 'v|verbose' => \$Test::Harness::verbose,
48 'V|version' => sub { print_version(); exit; },
49 'ext=s@' => \@ext,
50) or exit 1;
51
52$ENV{TEST_VERBOSE} = 1 if $Test::Harness::verbose;
53
54# Build up extensions regex
55@ext = map { split /,/ } @ext;
56s/^\.// foreach @ext;
57@ext = ("t") unless @ext;
58my $ext_regex = join( "|", map { quotemeta } @ext );
59$ext_regex = qr/\.($ext_regex)$/;
60
61# Handle blib includes
62if ( $blib ) {
63 my @blibdirs = blibdirs();
64 if ( @blibdirs ) {
65 unshift @includes, @blibdirs;
66 } else {
67 warn "No blib directories found.\n";
68 }
69}
70
71# Handle lib includes
72if ( $lib ) {
73 unshift @includes, "lib";
74}
75
76# Build up TH switches
77push( @switches, map { /\s/ && !/^".*"$/ ? qq["-I$_"] : "-I$_" } @includes );
78$Test::Harness::Switches = join( " ", @switches );
79print "# \$Test::Harness::Switches: $Test::Harness::Switches\n" if $Test::Harness::debug;
80
81my @tests;
82@ARGV = File::Spec->curdir unless @ARGV;
83push( @tests, -d $_ ? all_in( $_ ) : $_ ) for map { glob } @ARGV;
84
85if ( @tests ) {
86 shuffle(@tests) if $shuffle;
87 if ( $dry ) {
88 print join( "\n", @tests, "" );
89 } else {
90 print "# ", scalar @tests, " tests to run\n" if $Test::Harness::debug;
91 runtests(@tests);
92 }
93}
94
95sub all_in {
96 my $start = shift;
97
98 my @hits = ();
99
100 local *DH;
101 if ( opendir( DH, $start ) ) {
102 my @files = sort readdir DH;
103 closedir DH;
104 for my $file ( @files ) {
105 next if $file eq File::Spec->updir || $file eq File::Spec->curdir;
106 next if $file eq ".svn";
107 next if $file eq "CVS";
108
109 my $currfile = File::Spec->catfile( $start, $file );
110 if ( -d $currfile ) {
111 push( @hits, all_in( $currfile ) ) if $recurse;
112 } else {
113 push( @hits, $currfile ) if $currfile =~ $ext_regex;
114 }
115 }
116 } else {
117 warn "$start: $!\n";
118 }
119
120 return @hits;
121}
122
123sub shuffle {
124 # Fisher-Yates shuffle
125 my $i = @_;
126 while ($i) {
127 my $j = rand $i--;
128 @_[$i, $j] = @_[$j, $i];
129 }
130}
131
132sub print_version {
133 printf( "prove v%s, using Test::Harness v%s and Perl v%vd\n",
134 $VERSION, $Test::Harness::VERSION, $^V );
135}
136
137# Stolen directly from blib.pm
138sub blibdirs {
139 my $dir = File::Spec->curdir;
140 if ($^O eq 'VMS') {
141 ($dir = VMS::Filespec::unixify($dir)) =~ s-/\z--;
142 }
143 my $archdir = "arch";
144 if ( $^O eq "MacOS" ) {
145 # Double up the MP::A so that it's not used only once.
146 $archdir = $MacPerl::Architecture = $MacPerl::Architecture;
147 }
148
149 my $i = 5;
150 while ($i--) {
151 my $blib = File::Spec->catdir( $dir, "blib" );
152 my $blib_lib = File::Spec->catdir( $blib, "lib" );
153 my $blib_arch = File::Spec->catdir( $blib, $archdir );
154
155 if ( -d $blib && -d $blib_arch && -d $blib_lib ) {
156 return ($blib_arch,$blib_lib);
157 }
158 $dir = File::Spec->catdir($dir, File::Spec->updir);
159 }
160 warn "$0: Cannot find blib\n";
161 return;
162}
163
164__END__
165
166=head1 NAME
167
168prove -- A command-line tool for running tests against Test::Harness
169
170=head1 SYNOPSIS
171
172prove [options] [files/directories]
173
174Options:
175
176 -b, --blib Adds blib/lib to the path for your tests, a la "use blib".
177 -d, --debug Includes extra debugging information.
178 -D, --dry Dry run: Show the tests to run, but don't run them.
179 --ext=x Extensions (defaults to .t)
180 -h, --help Display this help
181 -H, --man Longer manpage for prove
182 -I Add libraries to @INC, as Perl's -I
183 -l, --lib Add lib to the path for your tests.
184 -r, --recurse Recursively descend into directories.
185 -s, --shuffle Run the tests in a random order.
186 -T Enable tainting checks
187 -t Enable tainting warnings
188 --timer Print elapsed time after each test file
189 -v, --verbose Display standard output of test scripts while running them.
190 -V, --version Display version info
191
192Single-character options may be stacked. Default options may be set by
193specifying the PROVE_SWITCHES environment variable.
194
195=head1 OVERVIEW
196
197F<prove> is a command-line interface to the test-running functionality
198of C<Test::Harness>. With no arguments, it will run all tests in the
199current directory.
200
201Shell metacharacters may be used with command lines options and will be exanded
202via C<glob>.
203
204=head1 PROVE VS. "MAKE TEST"
205
206F<prove> has a number of advantages over C<make test> when doing development.
207
208=over 4
209
210=item * F<prove> is designed as a development tool
211
212Perl users typically run the test harness through a makefile via
213C<make test>. That's fine for module distributions, but it's
214suboptimal for a test/code/debug development cycle.
215
216=item * F<prove> is granular
217
218F<prove> lets your run against only the files you want to check.
219Running C<prove t/live/ t/master.t> checks every F<*.t> in F<t/live>,
220plus F<t/master.t>.
221
222=item * F<prove> has an easy verbose mode
223
224F<prove> has a C<-v> option to see the raw output from the tests.
225To do this with C<make test>, you must set C<HARNESS_VERBOSE=1> in
226the environment.
227
228=item * F<prove> can run under taint mode
229
230F<prove>'s C<-T> runs your tests under C<perl -T>, and C<-t> runs them
231under C<perl -t>.
232
233=item * F<prove> can shuffle tests
234
235You can use F<prove>'s C<--shuffle> option to try to excite problems
236that don't show up when tests are run in the same order every time.
237
238=item * F<prove> doesn't rely on a make tool
239
240Not everyone wants to write a makefile, or use L<ExtUtils::MakeMaker>
241to do so. F<prove> has no external dependencies.
242
243=item * Not everything is a module
244
245More and more users are using Perl's testing tools outside the
246context of a module distribution, and may not even use a makefile
247at all.
248
249=back
250
251=head1 COMMAND LINE OPTIONS
252
253=head2 -b, --blib
254
255Adds blib/lib to the path for your tests, a la "use blib".
256
257=head2 -d, --debug
258
259Include debug information about how F<prove> is being run. This
260option doesn't show the output from the test scripts. That's handled
261by -v,--verbose.
262
263=head2 -D, --dry
264
265Dry run: Show the tests to run, but don't run them.
266
267=head2 --ext=extension
268
269Specify extensions of the test files to run. By default, these are .t,
270but you may have other non-.t test files, most likely .sh shell scripts.
271The --ext is repeatable.
272
273=head2 -I
274
275Add libraries to @INC, as Perl's -I.
276
277=head2 -l, --lib
278
279Add C<lib> to @INC. Equivalent to C<-Ilib>.
280
281=head2 -r, --recurse
282
283Descends into subdirectories of any directories specified, looking for tests.
284
285=head2 -s, --shuffle
286
287Sometimes tests are accidentally dependent on tests that have been
288run before. This switch will shuffle the tests to be run prior to
289running them, thus ensuring that hidden dependencies in the test
290order are likely to be revealed. The author hopes the run the
291algorithm on the preceding sentence to see if he can produce something
292slightly less awkward.
293
294=head2 -t
295
296Runs test programs under perl's -t taint warning mode.
297
298=head2 -T
299
300Runs test programs under perl's -T taint mode.
301
302=head2 --timer
303
304Print elapsed time after each test file
305
306=head2 -v, --verbose
307
308Display standard output of test scripts while running them. Also sets
309TEST_VERBOSE in case your tests rely on them.
310
311=head2 -V, --version
312
313Display version info.
314
315=head1 BUGS
316
317Please use the CPAN bug ticketing system at L<http://rt.cpan.org/>.
318You can also mail bugs, fixes and enhancements to
319C<< <bug-test-harness@rt.cpan.org> >>.
320
321=head1 TODO
322
323=over 4
324
325=item *
326
327Shuffled tests must be recreatable
328
329=back
330
331=head1 AUTHORS
332
333Andy Lester C<< <andy@petdance.com> >>
334
335=head1 COPYRIGHT
336
337Copyright 2005 by Andy Lester C<< <andy@petdance.com> >>.
338
339This program is free software; you can redistribute it and/or
340modify it under the same terms as Perl itself.
341
342See L<http://www.perl.com/perl/misc/Artistic.html>.
343
344=cut