blob: a441f424c6ef30e34cdb097b370f3e46a8e22424 [file] [log] [blame]
njn9fb16f52003-04-23 17:47:13 +00001#! @PERL@
njna217f3d2002-09-27 08:26:27 +00002##--------------------------------------------------------------------##
3##--- Valgrind regression testing script vg_regtest ---##
4##--------------------------------------------------------------------##
njnc2e7f482002-09-27 08:44:17 +00005
njnb9c427c2004-12-01 14:14:42 +00006# This file is part of Valgrind, a dynamic binary instrumentation
7# framework.
njnc2e7f482002-09-27 08:44:17 +00008#
sewardjb3a1e4b2015-08-21 11:32:26 +00009# Copyright (C) 2003-2015 Nicholas Nethercote
njn2bc10122005-05-08 02:10:27 +000010# njn@valgrind.org
njnc2e7f482002-09-27 08:44:17 +000011#
12# This program is free software; you can redistribute it and/or
13# modify it under the terms of the GNU General Public License as
14# published by the Free Software Foundation; either version 2 of the
15# License, or (at your option) any later version.
16#
17# This program is distributed in the hope that it will be useful, but
18# WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20# General Public License for more details.
21#
22# You should have received a copy of the GNU General Public License
23# along with this program; if not, write to the Free Software
24# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
25# 02111-1307, USA.
26#
27# The GNU General Public License is contained in the file COPYING.
28
29#----------------------------------------------------------------------------
njna217f3d2002-09-27 08:26:27 +000030# usage: vg_regtest [options] <dirs | files>
njn25e49d8e72002-09-23 09:36:25 +000031#
njna217f3d2002-09-27 08:26:27 +000032# Options:
njna217f3d2002-09-27 08:26:27 +000033# --all: run tests in all subdirs
njn3ed89602006-10-23 18:38:35 +000034# --valgrind: valgrind launcher to use. Default is ./coregrind/valgrind.
35# (This option should probably only be used in conjunction with
36# --valgrind-lib.)
37# --valgrind-lib: valgrind libraries to use. Default is $tests_dir/.in_place.
38# (This option should probably only be used in conjunction with
39# --valgrind.)
sewardjeefeeb72011-05-10 11:01:07 +000040# --keep-unfiltered: keep a copy of the unfiltered output/error output
41# of each test by adding an extension .unfiltered.out
njna217f3d2002-09-27 08:26:27 +000042#
philippe72faf102012-03-11 22:24:03 +000043# --outer-valgrind: run this valgrind under the given outer valgrind.
44# This valgrind must be configured with --enable-inner.
45# --outer-tool: tool to use by the outer valgrind (default memcheck).
46# --outer-args: use this as outer tool args.
philippe69e8f172015-03-14 18:29:35 +000047# --loop-till-fail: loops on the test(s) till one fail, then exit
48# This is useful to obtain detailed trace or --keep-unfiltered
49# output of a non deterministic test failure
philippe72faf102012-03-11 22:24:03 +000050#
njn4ba5a792002-09-30 10:23:54 +000051# The easiest way is to run all tests in valgrind/ with (assuming you installed
52# in $PREFIX):
53#
54# $PREFIX/bin/vg_regtest --all
55#
njna217f3d2002-09-27 08:26:27 +000056# You can specify individual files to test, or whole directories, or both.
jsgf855d93d2003-10-13 22:26:55 +000057# Directories are traversed recursively, except for ones named, for example,
58# CVS/ or docs/.
njn25e49d8e72002-09-23 09:36:25 +000059#
60# Each test is defined in a file <test>.vgtest, containing one or more of the
njna217f3d2002-09-27 08:26:27 +000061# following lines, in any order:
florian8d228442015-04-02 22:02:24 +000062# - prog: <prog to run>
63# - prog-asis: <prog to run>
64# - env: <environment variable for prog> (default: none)
njn25e49d8e72002-09-23 09:36:25 +000065# - args: <args for prog> (default: none)
njnf6b00762009-04-17 04:26:41 +000066# - vgopts: <Valgrind options> (default: none;
67# multiple are allowed)
njn25e49d8e72002-09-23 09:36:25 +000068# - stdout_filter: <filter to run stdout through> (default: none)
njna217f3d2002-09-27 08:26:27 +000069# - stderr_filter: <filter to run stderr through> (default: ./filter_stderr)
florian31014da2011-09-26 00:29:44 +000070# - stdout_filter_args: <args for stdout_filter> (default: basename of .vgtest file)
71# - stderr_filter_args: <args for stderr_filter> (default: basename of .vgtest file)
sewardj3b290482011-05-06 21:02:55 +000072#
73# - progB: <prog to run in parallel with prog> (default: none)
florian064ed862015-08-26 20:24:47 +000074# - envB: <environment variable for progB> (default: none)
sewardj3b290482011-05-06 21:02:55 +000075# - argsB: <args for progB> (default: none)
76# - stdinB: <input file for progB> (default: none)
77# - stdoutB_filter: <filter progB stdout through> (default: none)
78# - stderrB_filter: <filter progB stderr through> (default: ./filter_stderr)
florian31014da2011-09-26 00:29:44 +000079# - stdoutB_filter_args: <args for stdout_filterB> (default: basename of .vgtest file)
80# - stderrB_filter_args: <args for stderr_filterB> (default: basename of .vgtest file)
sewardj3b290482011-05-06 21:02:55 +000081#
nethercotec5e1d802004-11-18 12:48:17 +000082# - prereq: <prerequisite command> (default: none)
njn734b8052007-11-01 04:40:37 +000083# - post: <post-test check command> (default: none)
84# - cleanup: <post-test cleanup cmd> (default: none)
njn25e49d8e72002-09-23 09:36:25 +000085#
florian8d228442015-04-02 22:02:24 +000086# One of prog or prog-asis must be specified.
sewardj3b290482011-05-06 21:02:55 +000087# If prog or probB is a relative path, it will be prefix with the test directory.
florian8d228442015-04-02 22:02:24 +000088# prog-asis will be taken as is, i.e. not prefixed with the test directory.
njna217f3d2002-09-27 08:26:27 +000089# Note that filters are necessary for stderr results to filter out things that
90# always change, eg. process id numbers.
sewardj3b290482011-05-06 21:02:55 +000091# Note that if a progB is specified, it is started in background (before prog).
njn25e49d8e72002-09-23 09:36:25 +000092#
florian8d228442015-04-02 22:02:24 +000093# There can be more than one env: declaration. Here is an example:
94# env: PATH=/opt/bin:$PATH
florian064ed862015-08-26 20:24:47 +000095# Likewise for envB.
florian8d228442015-04-02 22:02:24 +000096#
njn1ee25f02008-02-27 18:10:19 +000097# Expected stdout (filtered) is kept in <test>.stdout.exp* (can be more
nethercote4592db62004-02-29 01:31:09 +000098# than one expected output). It can be missing if it would be empty. Expected
sewardj79e88da2007-11-09 23:29:46 +000099# stderr (filtered) is kept in <test>.stderr.exp*. There must be at least
njne8ffe522008-03-02 22:48:14 +0000100# one stderr.exp* file. Any .exp* file that ends in '~' or '#' is ignored;
101# this is because Emacs creates temporary files of these names.
njn25e49d8e72002-09-23 09:36:25 +0000102#
sewardj3b290482011-05-06 21:02:55 +0000103# Expected output for progB is handled similarly, except that
104# expected stdout and stderr for progB are in <test>.stdoutB.exp*
105# and <test>.stderrB.exp*.
106#
njn25e49d8e72002-09-23 09:36:25 +0000107# If results don't match, the output can be found in <test>.std<strm>.out,
njn1ee25f02008-02-27 18:10:19 +0000108# and the diff between expected and actual in <test>.std<strm>.diff*.
sewardj3b290482011-05-06 21:02:55 +0000109# (for progB, in <test>.std<strm>2.out and <test>.std<strm>2.diff*).
njn25e49d8e72002-09-23 09:36:25 +0000110#
njn61485ab2009-03-04 04:15:16 +0000111# The prerequisite command, if present, works like this:
112# - if it returns 0 the test is run
113# - if it returns 1 the test is skipped
114# - if it returns anything else the script aborts.
115# The idea here is results other than 0 or 1 are likely to be due to
116# problems with the commands, and you don't want to conflate them with the 1
117# case, which would happen if you just tested for zero or non-zero.
118#
119# The post-test command, if present, must return 0 and its stdout must match
120# the expected stdout which is kept in <test>.post.exp*.
121#
sewardj91368992006-05-26 00:13:21 +0000122# Sometimes it is useful to run all the tests at a high sanity check
123# level or with arbitrary other flags. To make this simple, extra
124# options, applied to all tests run, are read from $EXTRA_REGTEST_OPTS,
125# and handed to valgrind prior to any other flags specified by the
126# .vgtest file.
127#
njn7358d522006-11-26 22:49:58 +0000128# Some more notes on adding regression tests for a new tool are in
129# docs/xml/manual-writing-tools.xml.
njn25e49d8e72002-09-23 09:36:25 +0000130#----------------------------------------------------------------------------
131
njn9fb16f52003-04-23 17:47:13 +0000132use warnings;
njn25e49d8e72002-09-23 09:36:25 +0000133use strict;
134
135#----------------------------------------------------------------------------
136# Global vars
137#----------------------------------------------------------------------------
sewardja8162b22007-11-30 21:24:05 +0000138my $usage="\n"
sewardjeefeeb72011-05-10 11:01:07 +0000139 . "Usage:\n"
philippe72faf102012-03-11 22:24:03 +0000140 . " vg_regtest [--all, --valgrind, --valgrind-lib, --keep-unfiltered\n"
philippe69e8f172015-03-14 18:29:35 +0000141 . " --outer-valgrind, --outer-tool, --outer-args\n"
142 . " --loop-till-fail]\n"
sewardjeefeeb72011-05-10 11:01:07 +0000143 . " Use EXTRA_REGTEST_OPTS to supply extra args for all tests\n"
144 . "\n";
njn25e49d8e72002-09-23 09:36:25 +0000145
146my $tmp="vg_regtest.tmp.$$";
147
148# Test variables
149my $vgopts; # valgrind options
150my $prog; # test prog
151my $args; # test prog args
152my $stdout_filter; # filter program to run stdout results file through
153my $stderr_filter; # filter program to run stderr results file through
florian31014da2011-09-26 00:29:44 +0000154my $stdout_filter_args; # arguments passed to stdout_filter
155my $stderr_filter_args; # arguments passed to stderr_filter
sewardj3b290482011-05-06 21:02:55 +0000156my $progB; # Same but for progB
157my $argsB; #
158my $stdoutB_filter; #
159my $stderrB_filter; #
florian31014da2011-09-26 00:29:44 +0000160my $stdoutB_filter_args;# arguments passed to stdout_filterB
161my $stderrB_filter_args;# arguments passed to stderr_filterB
sewardj3b290482011-05-06 21:02:55 +0000162my $stdinB; # Input file for progB
nethercotec5e1d802004-11-18 12:48:17 +0000163my $prereq; # prerequisite test to satisfy before running test
njn734b8052007-11-01 04:40:37 +0000164my $post; # check command after running test
nethercote64bc5af2004-11-18 11:57:00 +0000165my $cleanup; # cleanup command to run
florian8d228442015-04-02 22:02:24 +0000166my @env = (); # environment variable to set prior calling $prog
florian064ed862015-08-26 20:24:47 +0000167my @envB = (); # environment variable to set prior calling $progB
njn25e49d8e72002-09-23 09:36:25 +0000168
169my @failures; # List of failed tests
170
njn9fb16f52003-04-23 17:47:13 +0000171my $num_tests_done = 0;
sewardj3b290482011-05-06 21:02:55 +0000172my %num_failures = (stderr => 0, stdout => 0,
173 stderrB => 0, stdoutB => 0,
174 post => 0);
njn25e49d8e72002-09-23 09:36:25 +0000175
njn71fe3e62003-04-23 21:48:20 +0000176# Default valgrind to use is this build tree's (uninstalled) one
njn71fe3e62003-04-23 21:48:20 +0000177my $valgrind = "./coregrind/valgrind";
njn25e49d8e72002-09-23 09:36:25 +0000178
179chomp(my $tests_dir = `pwd`);
180
philippe72faf102012-03-11 22:24:03 +0000181# Outer valgrind to use, and args to use for it.
philippe72faf102012-03-11 22:24:03 +0000182my $outer_valgrind;
183my $outer_tool = "memcheck";
184my $outer_args;
185
njn3ed89602006-10-23 18:38:35 +0000186my $valgrind_lib = "$tests_dir/.in_place";
sewardjeefeeb72011-05-10 11:01:07 +0000187my $keepunfiltered = 0;
philippe69e8f172015-03-14 18:29:35 +0000188my $looptillfail = 0;
njn3ed89602006-10-23 18:38:35 +0000189
njn25e49d8e72002-09-23 09:36:25 +0000190# default filter is the one named "filter_stderr" in the test's directory
191my $default_stderr_filter = "filter_stderr";
192
193
194#----------------------------------------------------------------------------
195# Process command line, setup
196#----------------------------------------------------------------------------
197
198# If $prog is a relative path, it prepends $dir to it. Useful for two reasons:
199#
200# 1. Can prepend "." onto programs to avoid trouble with users who don't have
201# "." in their path (by making $dir = ".")
202# 2. Can prepend the current dir to make the command absolute to avoid
203# subsequent trouble when we change directories.
204#
205# Also checks the program exists and is executable.
nethercotef4928da2004-06-15 10:54:40 +0000206sub validate_program ($$$$)
njn25e49d8e72002-09-23 09:36:25 +0000207{
nethercotef4928da2004-06-15 10:54:40 +0000208 my ($dir, $prog, $must_exist, $must_be_executable) = @_;
njn25e49d8e72002-09-23 09:36:25 +0000209
210 # If absolute path, leave it alone. If relative, make it
211 # absolute -- by prepending current dir -- so we can change
212 # dirs and still use it.
213 $prog = "$dir/$prog" if ($prog !~ /^\//);
nethercotef4928da2004-06-15 10:54:40 +0000214 if ($must_exist) {
215 (-f $prog) or die "vg_regtest: `$prog' not found or not a file ($dir)\n";
216 }
njn71fe3e62003-04-23 21:48:20 +0000217 if ($must_be_executable) {
nethercotef4928da2004-06-15 10:54:40 +0000218 (-x $prog) or die "vg_regtest: `$prog' not executable ($dir)\n";
njn71fe3e62003-04-23 21:48:20 +0000219 }
njn25e49d8e72002-09-23 09:36:25 +0000220
221 return $prog;
222}
223
224sub process_command_line()
225{
226 my $alldirs = 0;
227 my @fs;
228
229 for my $arg (@ARGV) {
230 if ($arg =~ /^-/) {
njnd8ced862003-04-08 00:47:05 +0000231 if ($arg =~ /^--all$/) {
njn25e49d8e72002-09-23 09:36:25 +0000232 $alldirs = 1;
233 } elsif ($arg =~ /^--valgrind=(.*)$/) {
234 $valgrind = $1;
philippe72faf102012-03-11 22:24:03 +0000235 } elsif ($arg =~ /^--outer-valgrind=(.*)$/) {
236 $outer_valgrind = $1;
237 } elsif ($arg =~ /^--outer-tool=(.*)$/) {
238 $outer_tool = $1;
239 } elsif ($arg =~ /^--outer-args=(.*)$/) {
240 $outer_args = $1;
njn3ed89602006-10-23 18:38:35 +0000241 } elsif ($arg =~ /^--valgrind-lib=(.*)$/) {
242 $valgrind_lib = $1;
sewardjeefeeb72011-05-10 11:01:07 +0000243 } elsif ($arg =~ /^--keep-unfiltered$/) {
244 $keepunfiltered = 1;
philippe69e8f172015-03-14 18:29:35 +0000245 } elsif ($arg =~ /^--loop-till-fail$/) {
246 $looptillfail = 1;
njn25e49d8e72002-09-23 09:36:25 +0000247 } else {
248 die $usage;
249 }
250 } else {
251 push(@fs, $arg);
252 }
253 }
nethercotef4928da2004-06-15 10:54:40 +0000254 $valgrind = validate_program($tests_dir, $valgrind, 1, 0);
philippe72faf102012-03-11 22:24:03 +0000255
256 if (defined $outer_valgrind) {
philippe14ab1a32012-04-08 19:52:38 +0000257 $outer_valgrind = validate_program($tests_dir, $outer_valgrind, 1, 1);
philippe72faf102012-03-11 22:24:03 +0000258 if (not defined $outer_args) {
259 $outer_args =
philippe14ab1a32012-04-08 19:52:38 +0000260 " --command-line-only=yes"
philippe72faf102012-03-11 22:24:03 +0000261 . " --run-libc-freeres=no --sim-hints=enable-outer"
philippe14ab1a32012-04-08 19:52:38 +0000262 . " --smc-check=all-non-file"
philippe72faf102012-03-11 22:24:03 +0000263 . " --vgdb=no --trace-children=yes --read-var-info=no"
philippe0a961fc2014-06-25 23:27:08 +0000264 . " --read-inline-info=yes"
philippe72faf102012-03-11 22:24:03 +0000265 . " --suppressions="
266 . validate_program($tests_dir,"./tests/outer_inner.supp",1,0)
267 . " --memcheck:leak-check=full --memcheck:show-reachable=no"
268 . " ";
269 }
270 }
njn25e49d8e72002-09-23 09:36:25 +0000271
272 if ($alldirs) {
273 @fs = ();
274 foreach my $f (glob "*") {
275 push(@fs, $f) if (-d $f);
276 }
277 }
278
279 (0 != @fs) or die "No test files or directories specified\n";
280
281 return @fs;
282}
283
284#----------------------------------------------------------------------------
285# Read a .vgtest file
286#----------------------------------------------------------------------------
287sub read_vgtest_file($)
288{
289 my ($f) = @_;
290
291 # Defaults.
sewardj3b290482011-05-06 21:02:55 +0000292 ($vgopts, $prog, $args) = ("", undef, "");
293 ($stdout_filter, $stderr_filter) = (undef, undef);
294 ($progB, $argsB, $stdinB) = (undef, "", undef);
295 ($stdoutB_filter, $stderrB_filter) = (undef, undef);
296 ($prereq, $post, $cleanup) = (undef, undef, undef);
florian31014da2011-09-26 00:29:44 +0000297 ($stdout_filter_args, $stderr_filter_args) = (undef, undef);
298 ($stdoutB_filter_args, $stderrB_filter_args) = (undef, undef);
njn25e49d8e72002-09-23 09:36:25 +0000299
300 # Every test directory must have a "filter_stderr"
nethercotef4928da2004-06-15 10:54:40 +0000301 $stderr_filter = validate_program(".", $default_stderr_filter, 1, 1);
sewardj3b290482011-05-06 21:02:55 +0000302 $stderrB_filter = validate_program(".", $default_stderr_filter, 1, 1);
303
njn25e49d8e72002-09-23 09:36:25 +0000304
305 open(INPUTFILE, "< $f") || die "File $f not openable\n";
306
307 while (my $line = <INPUTFILE>) {
sewardjb5f6f512005-03-10 23:59:00 +0000308 if ($line =~ /^\s*#/ || $line =~ /^\s*$/) {
309 next;
310 } elsif ($line =~ /^\s*vgopts:\s*(.*)$/) {
bartef386252010-08-31 15:15:35 +0000311 my $addvgopts = $1;
florian70172362015-09-05 21:19:11 +0000312 $addvgopts =~ s/\$\{PWD\}/$ENV{PWD}/g;
bartef386252010-08-31 15:15:35 +0000313 $vgopts = $vgopts . " " . $addvgopts; # Nb: Make sure there's a space!
njn25e49d8e72002-09-23 09:36:25 +0000314 } elsif ($line =~ /^\s*prog:\s*(.*)$/) {
nethercotef4928da2004-06-15 10:54:40 +0000315 $prog = validate_program(".", $1, 0, 0);
florian8d228442015-04-02 22:02:24 +0000316 } elsif ($line =~ /^\s*prog-asis:\s*(.*)$/) {
317 $prog = $1;
njn25e49d8e72002-09-23 09:36:25 +0000318 } elsif ($line =~ /^\s*args:\s*(.*)$/) {
319 $args = $1;
njn25e49d8e72002-09-23 09:36:25 +0000320 } elsif ($line =~ /^\s*stdout_filter:\s*(.*)$/) {
nethercotef4928da2004-06-15 10:54:40 +0000321 $stdout_filter = validate_program(".", $1, 1, 1);
njn25e49d8e72002-09-23 09:36:25 +0000322 } elsif ($line =~ /^\s*stderr_filter:\s*(.*)$/) {
nethercotef4928da2004-06-15 10:54:40 +0000323 $stderr_filter = validate_program(".", $1, 1, 1);
florian31014da2011-09-26 00:29:44 +0000324 } elsif ($line =~ /^\s*stdout_filter_args:\s*(.*)$/) {
325 $stdout_filter_args = $1;
326 } elsif ($line =~ /^\s*stderr_filter_args:\s*(.*)$/) {
327 $stderr_filter_args = $1;
sewardj3b290482011-05-06 21:02:55 +0000328 } elsif ($line =~ /^\s*progB:\s*(.*)$/) {
329 $progB = validate_program(".", $1, 0, 0);
330 } elsif ($line =~ /^\s*argsB:\s*(.*)$/) {
331 $argsB = $1;
332 } elsif ($line =~ /^\s*stdinB:\s*(.*)$/) {
333 $stdinB = $1;
334 } elsif ($line =~ /^\s*stdoutB_filter:\s*(.*)$/) {
335 $stdoutB_filter = validate_program(".", $1, 1, 1);
336 } elsif ($line =~ /^\s*stderrB_filter:\s*(.*)$/) {
337 $stderrB_filter = validate_program(".", $1, 1, 1);
florian4b5c3f02011-10-03 00:19:05 +0000338 } elsif ($line =~ /^\s*stdoutB_filter_args:\s*(.*)$/) {
339 $stdoutB_filter_args = $1;
340 } elsif ($line =~ /^\s*stderrB_filter_args:\s*(.*)$/) {
341 $stderrB_filter_args = $1;
nethercotec5e1d802004-11-18 12:48:17 +0000342 } elsif ($line =~ /^\s*prereq:\s*(.*)$/) {
343 $prereq = $1;
njn734b8052007-11-01 04:40:37 +0000344 } elsif ($line =~ /^\s*post:\s*(.*)$/) {
345 $post = $1;
nethercote64bc5af2004-11-18 11:57:00 +0000346 } elsif ($line =~ /^\s*cleanup:\s*(.*)$/) {
347 $cleanup = $1;
florian8d228442015-04-02 22:02:24 +0000348 } elsif ($line =~ /^\s*env:\s*(.*)$/) {
349 push @env,$1;
florian064ed862015-08-26 20:24:47 +0000350 } elsif ($line =~ /^\s*envB:\s*(.*)$/) {
351 push @envB,$1;
njn25e49d8e72002-09-23 09:36:25 +0000352 } else {
353 die "Bad line in $f: $line\n";
354 }
355 }
356 close(INPUTFILE);
357
358 if (!defined $prog) {
nethercotef4928da2004-06-15 10:54:40 +0000359 $prog = ""; # allow no prog for testing error and --help cases
njn25e49d8e72002-09-23 09:36:25 +0000360 }
361}
362
363#----------------------------------------------------------------------------
364# Do one test
365#----------------------------------------------------------------------------
366# Since most of the program time is spent in system() calls, need this to
367# propagate a Ctrl-C enabling us to quit.
368sub mysystem($)
369{
njn734b8052007-11-01 04:40:37 +0000370 my $exit_code = system($_[0]);
371 ($exit_code == 2) and exit 1; # 2 is SIGINT
372 return $exit_code;
njn25e49d8e72002-09-23 09:36:25 +0000373}
374
sewardjeefeeb72011-05-10 11:01:07 +0000375# if $keepunfiltered, copies $1 to $1.unfiltered.out
376# renames $0 tp $1
377sub filtered_rename($$)
378{
379 if ($keepunfiltered == 1) {
380 mysystem("cp $_[1] $_[1].unfiltered.out");
381 }
382 rename ($_[0], $_[1]);
383}
384
385
nethercote137bc552003-11-14 17:47:54 +0000386# from a directory name like "/foo/cachesim/tests/" determine the tool name
387sub determine_tool()
njn25cac76cb2002-09-23 11:21:57 +0000388{
389 my $dir = `pwd`;
nethercote137bc552003-11-14 17:47:54 +0000390 $dir =~ /.*\/([^\/]+)\/tests.*/; # foo/tool_name/tests/foo
njn25cac76cb2002-09-23 11:21:57 +0000391 return $1;
392}
393
nethercote4592db62004-02-29 01:31:09 +0000394# Compare output against expected output; it should match at least one of
395# them.
396sub do_diffs($$$$)
397{
398 my ($fullname, $name, $mid, $f_exps) = @_;
399
400 for my $f_exp (@$f_exps) {
401 (-r $f_exp) or die "Could not read `$f_exp'\n";
402
njne8ffe522008-03-02 22:48:14 +0000403 # Emacs produces temporary files that end in '~' and '#'. We ignore
404 # these.
405 if ($f_exp !~ /[~#]$/) {
406 # $n is the (optional) suffix after the ".exp"; we tack it onto
407 # the ".diff" file.
408 my $n = "";
409 if ($f_exp =~ /.*\.exp(.*)$/) {
410 $n = $1;
411 } else {
412 $n = "";
413 ($f_exp eq "/dev/null") or die "Unexpected .exp file: $f_exp\n";
414 }
nethercote4592db62004-02-29 01:31:09 +0000415
njn0d2e58f2009-02-25 04:57:56 +0000416 mysystem("@DIFF@ $f_exp $name.$mid.out > $name.$mid.diff$n");
nethercote4592db62004-02-29 01:31:09 +0000417
njne8ffe522008-03-02 22:48:14 +0000418 if (not -s "$name.$mid.diff$n") {
419 # A match; remove .out and any previously created .diff files.
420 unlink("$name.$mid.out");
421 unlink(<$name.$mid.diff*>);
422 return;
423 }
nethercote4592db62004-02-29 01:31:09 +0000424 }
425 }
426 # If we reach here, none of the .exp files matched.
427 print "*** $name failed ($mid) ***\n";
428 push(@failures, sprintf("%-40s ($mid)", "$fullname"));
429 $num_failures{$mid}++;
philippe69e8f172015-03-14 18:29:35 +0000430 if ($looptillfail == 1) {
431 print "Failure encountered, stopping to loop\n";
432 exit 1
433 }
nethercote4592db62004-02-29 01:31:09 +0000434}
435
njn25e49d8e72002-09-23 09:36:25 +0000436sub do_one_test($$)
437{
438 my ($dir, $vgtest) = @_;
439 $vgtest =~ /^(.*)\.vgtest/;
440 my $name = $1;
441 my $fullname = "$dir/$name";
442
sewardj91368992006-05-26 00:13:21 +0000443 # Pull any extra options (for example, --sanity-level=4)
444 # from $EXTRA_REGTEST_OPTS.
445 my $maybe_extraopts = $ENV{"EXTRA_REGTEST_OPTS"};
446 my $extraopts = $maybe_extraopts ? $maybe_extraopts : "";
447
njn25e49d8e72002-09-23 09:36:25 +0000448 read_vgtest_file($vgtest);
449
nethercotec5e1d802004-11-18 12:48:17 +0000450 if (defined $prereq) {
bart3a89e002015-07-23 02:46:44 +0000451 my $prereq_res = system("/bin/sh", "-c", $prereq);
njn61485ab2009-03-04 04:15:16 +0000452 if (0 == $prereq_res) {
453 # Do nothing (ie. continue with the test)
454 } elsif (256 == $prereq_res) {
455 # Nb: weird Perl-ism -- exit code of '1' is seen by Perl as 256...
456 # Prereq failed, skip.
nethercotec5e1d802004-11-18 12:48:17 +0000457 printf("%-16s (skipping, prereq failed: $prereq)\n", "$name:");
nethercote781bed42004-10-19 16:56:41 +0000458 return;
njn61485ab2009-03-04 04:15:16 +0000459 } else {
460 # Bad prereq; abort.
461 $prereq_res /= 256;
462 die "prereq returned $prereq_res: $prereq\n";
nethercote781bed42004-10-19 16:56:41 +0000463 }
nethercoteb1affa82004-01-19 19:14:18 +0000464 }
465
njn25e49d8e72002-09-23 09:36:25 +0000466
sewardj3b290482011-05-06 21:02:55 +0000467 if (defined $progB) {
florian064ed862015-08-26 20:24:47 +0000468 # Collect environment variables, if any.
469 my $envBvars = "";
470 foreach my $e (@envB) {
471 $envBvars = "$envBvars $e";
472 }
sewardj3b290482011-05-06 21:02:55 +0000473 # If there is a progB, let's start it in background:
474 printf("%-16s valgrind $extraopts $vgopts $prog $args (progB: $progB $argsB)\n",
475 "$name:");
476 # progB.done used to detect child has finished. See below.
477 # Note: redirection of stdout and stderr is before $progB to allow argsB
478 # to e.g. redirect stdoutB to stderrB
479 if (defined $stdinB) {
480 mysystem("(rm -f progB.done;"
florian064ed862015-08-26 20:24:47 +0000481 . " < $stdinB > $name.stdoutB.out 2> $name.stderrB.out"
482 . " $envBvars $progB $argsB;"
sewardj3b290482011-05-06 21:02:55 +0000483 . "touch progB.done) &");
484 } else {
485 mysystem("(rm -f progB.done;"
florian064ed862015-08-26 20:24:47 +0000486 . " > $name.stdoutB.out 2> $name.stderrB.out"
487 . "$envBvars $progB $argsB;"
sewardj3b290482011-05-06 21:02:55 +0000488 . "touch progB.done) &");
489 }
490 } else {
491 printf("%-16s valgrind $extraopts $vgopts $prog $args\n", "$name:");
492 }
florian8d228442015-04-02 22:02:24 +0000493
494 # Collect environment variables, if any.
495 my $envvars = "";
496 foreach my $e (@env) {
497 $envvars = "$envvars $e";
498 }
499
nethercote137bc552003-11-14 17:47:54 +0000500 # Pass the appropriate --tool option for the directory (can be overridden
philippe14ab1a32012-04-08 19:52:38 +0000501 # by an "args:" line, though).
nethercote137bc552003-11-14 17:47:54 +0000502 my $tool=determine_tool();
philippe72faf102012-03-11 22:24:03 +0000503 if (defined $outer_valgrind ) {
philippe14ab1a32012-04-08 19:52:38 +0000504 # in an outer-inner setup, only set VALGRIND_LIB_INNER
florian8d228442015-04-02 22:02:24 +0000505 mysystem( "$envvars VALGRIND_LIB_INNER=$valgrind_lib "
philippe14ab1a32012-04-08 19:52:38 +0000506 . "$outer_valgrind "
philippe72faf102012-03-11 22:24:03 +0000507 . "--tool=" . $outer_tool . " "
508 . "$outer_args "
509 . "--log-file=" . "$name.outer.log "
510 . "$valgrind --command-line-only=yes --memcheck:leak-check=no "
511 . "--sim-hints=no-inner-prefix "
512 . "--tool=$tool $extraopts $vgopts "
513 . "$prog $args > $name.stdout.out 2> $name.stderr.out");
514 } else {
philippe14ab1a32012-04-08 19:52:38 +0000515 # Set both VALGRIND_LIB and VALGRIND_LIB_INNER in case this Valgrind
516 # was configured with --enable-inner.
florian8d228442015-04-02 22:02:24 +0000517 mysystem( "$envvars VALGRIND_LIB=$valgrind_lib VALGRIND_LIB_INNER=$valgrind_lib "
philippe72faf102012-03-11 22:24:03 +0000518 . "$valgrind --command-line-only=yes --memcheck:leak-check=no "
519 . "--tool=$tool $extraopts $vgopts "
520 . "$prog $args > $name.stdout.out 2> $name.stderr.out");
521 }
njn25e49d8e72002-09-23 09:36:25 +0000522
njn0001fc32006-04-03 14:25:23 +0000523 # Filter stdout
njn25e49d8e72002-09-23 09:36:25 +0000524 if (defined $stdout_filter) {
florian31014da2011-09-26 00:29:44 +0000525 $stdout_filter_args = $name if (! defined $stdout_filter_args);
526 mysystem("$stdout_filter $stdout_filter_args < $name.stdout.out > $tmp");
sewardjeefeeb72011-05-10 11:01:07 +0000527 filtered_rename($tmp, "$name.stdout.out");
njn25e49d8e72002-09-23 09:36:25 +0000528 }
nethercote4592db62004-02-29 01:31:09 +0000529 # Find all the .stdout.exp files. If none, use /dev/null.
530 my @stdout_exps = <$name.stdout.exp*>;
531 @stdout_exps = ( "/dev/null" ) if (0 == scalar @stdout_exps);
njn0001fc32006-04-03 14:25:23 +0000532 do_diffs($fullname, $name, "stdout", \@stdout_exps);
njn25e49d8e72002-09-23 09:36:25 +0000533
njn0001fc32006-04-03 14:25:23 +0000534 # Filter stderr
florian31014da2011-09-26 00:29:44 +0000535 $stderr_filter_args = $name if (! defined $stderr_filter_args);
536 mysystem("$stderr_filter $stderr_filter_args < $name.stderr.out > $tmp");
sewardjeefeeb72011-05-10 11:01:07 +0000537 filtered_rename($tmp, "$name.stderr.out");
sewardj79e88da2007-11-09 23:29:46 +0000538 # Find all the .stderr.exp files. At least one must exist.
nethercote4592db62004-02-29 01:31:09 +0000539 my @stderr_exps = <$name.stderr.exp*>;
sewardj79e88da2007-11-09 23:29:46 +0000540 (0 != scalar @stderr_exps) or die "Could not find `$name.stderr.exp*'\n";
nethercote4592db62004-02-29 01:31:09 +0000541 do_diffs($fullname, $name, "stderr", \@stderr_exps);
njn0001fc32006-04-03 14:25:23 +0000542
sewardj3b290482011-05-06 21:02:55 +0000543 if (defined $progB) {
544 # wait for the child to be finished
545 # tried things such as:
546 # wait;
547 # $SIG{CHLD} = sub { wait };
548 # but nothing worked:
549 # e.g. running mssnapshot.vgtest in a loop failed from time to time
550 # due to some missing output (not yet written?).
551 # So, we search progB.done during max 100 times 100 millisecond.
552 my $count;
553 for ($count = 1; $count <= 100; $count++) {
554 (-f "progB.done") or select(undef, undef, undef, 0.100);
555 }
556 # Filter stdout
557 if (defined $stdoutB_filter) {
florian31014da2011-09-26 00:29:44 +0000558 $stdoutB_filter_args = $name if (! defined $stdoutB_filter_args);
559 mysystem("$stdoutB_filter $stdoutB_filter_args < $name.stdoutB.out > $tmp");
sewardjeefeeb72011-05-10 11:01:07 +0000560 filtered_rename($tmp, "$name.stdoutB.out");
sewardj3b290482011-05-06 21:02:55 +0000561 }
562 # Find all the .stdoutB.exp files. If none, use /dev/null.
563 my @stdoutB_exps = <$name.stdoutB.exp*>;
564 @stdoutB_exps = ( "/dev/null" ) if (0 == scalar @stdoutB_exps);
565 do_diffs($fullname, $name, "stdoutB", \@stdoutB_exps);
566
567 # Filter stderr
florian31014da2011-09-26 00:29:44 +0000568 $stderrB_filter_args = $name if (! defined $stderrB_filter_args);
569 mysystem("$stderrB_filter $stderrB_filter_args < $name.stderrB.out > $tmp");
sewardjeefeeb72011-05-10 11:01:07 +0000570 filtered_rename($tmp, "$name.stderrB.out");
sewardj3b290482011-05-06 21:02:55 +0000571 # Find all the .stderrB.exp files. At least one must exist.
572 my @stderrB_exps = <$name.stderrB.exp*>;
573 (0 != scalar @stderrB_exps) or die "Could not find `$name.stderrB.exp*'\n";
574 do_diffs($fullname, $name, "stderrB", \@stderrB_exps);
575 }
576
njn0001fc32006-04-03 14:25:23 +0000577 # Maybe do post-test check
njn734b8052007-11-01 04:40:37 +0000578 if (defined $post) {
579 if (mysystem("$post > $name.post.out") != 0) {
580 print("post check failed: $post\n");
581 $num_failures{"post"}++;
njn0001fc32006-04-03 14:25:23 +0000582 } else {
njn734b8052007-11-01 04:40:37 +0000583 # Find all the .post.exp files. If none, use /dev/null.
584 my @post_exps = <$name.post.exp*>;
585 @post_exps = ( "/dev/null" ) if (0 == scalar @post_exps);
586 do_diffs($fullname, $name, "post", \@post_exps);
njn0001fc32006-04-03 14:25:23 +0000587 }
588 }
nethercotec1f8ad92004-04-17 17:25:08 +0000589
nethercote64bc5af2004-11-18 11:57:00 +0000590 if (defined $cleanup) {
591 (system("$cleanup") == 0) or
592 print("(cleanup operation failed: $cleanup)\n");
nethercotec1f8ad92004-04-17 17:25:08 +0000593 }
594
njn9fb16f52003-04-23 17:47:13 +0000595 $num_tests_done++;
njn25e49d8e72002-09-23 09:36:25 +0000596}
597
598#----------------------------------------------------------------------------
njn25cac76cb2002-09-23 11:21:57 +0000599# Test one directory (and any subdirs)
njn25e49d8e72002-09-23 09:36:25 +0000600#----------------------------------------------------------------------------
njndb3c4692002-10-04 10:03:34 +0000601sub test_one_dir($$); # forward declaration
njn25cac76cb2002-09-23 11:21:57 +0000602
njndb3c4692002-10-04 10:03:34 +0000603sub test_one_dir($$)
njn25e49d8e72002-09-23 09:36:25 +0000604{
njndb3c4692002-10-04 10:03:34 +0000605 my ($dir, $prev_dirs) = @_;
njn25e49d8e72002-09-23 09:36:25 +0000606 $dir =~ s/\/$//; # trim a trailing '/'
607
nethercote362c0d22004-11-18 18:21:56 +0000608 # Ignore dirs into which we should not recurse.
mueller92f0b802003-11-19 00:55:32 +0000609 if ($dir =~ /^(BitKeeper|CVS|SCCS|docs|doc)$/) { return; }
njn25cac76cb2002-09-23 11:21:57 +0000610
njn107bc572009-02-16 00:42:10 +0000611 (-x "$tests_dir/tests/arch_test") or die
612 "vg_regtest: 'arch_test' is missing. Did you forget to 'make check'?\n";
njn52783ca2005-12-08 22:39:04 +0000613
nethercote362c0d22004-11-18 18:21:56 +0000614 # Ignore any dir whose name matches that of an architecture which is not
njn107bc572009-02-16 00:42:10 +0000615 # the architecture we are running on. Eg. when running on x86, ignore
616 # ppc/ directories ('arch_test' returns 1 for this case). Likewise for
617 # the OS and platform.
nethercote362c0d22004-11-18 18:21:56 +0000618 # Nb: weird Perl-ism -- exit code of '1' is seen by Perl as 256...
njn61485ab2009-03-04 04:15:16 +0000619 if (256 == system("$tests_dir/tests/arch_test $dir")) { return; }
620 if (256 == system("$tests_dir/tests/os_test $dir")) { return; }
njn107bc572009-02-16 00:42:10 +0000621 if ($dir =~ /(\w+)-(\w+)/ &&
622 256 == system("sh $tests_dir/tests/platform_test $1 $2")) { return; }
nethercote362c0d22004-11-18 18:21:56 +0000623
njn25e49d8e72002-09-23 09:36:25 +0000624 chdir($dir) or die "Could not change into $dir\n";
625
njn584eaac2002-10-04 15:30:48 +0000626 # Nb: Don't prepend a '/' to the base directory
627 my $full_dir = $prev_dirs . ($prev_dirs eq "" ? "" : "/") . $dir;
njndb3c4692002-10-04 10:03:34 +0000628 my $dashes = "-" x (50 - length $full_dir);
njn25cac76cb2002-09-23 11:21:57 +0000629
njndb3c4692002-10-04 10:03:34 +0000630 my @fs = glob "*";
njndb3c4692002-10-04 10:03:34 +0000631 my $found_tests = (0 != (grep { $_ =~ /\.vgtest$/ } @fs));
632
633 if ($found_tests) {
634 print "-- Running tests in $full_dir $dashes\n";
njndb3c4692002-10-04 10:03:34 +0000635 }
njn25cac76cb2002-09-23 11:21:57 +0000636 foreach my $f (@fs) {
637 if (-d $f) {
njndb3c4692002-10-04 10:03:34 +0000638 test_one_dir($f, $full_dir);
njn25cac76cb2002-09-23 11:21:57 +0000639 } elsif ($f =~ /\.vgtest$/) {
njndb3c4692002-10-04 10:03:34 +0000640 do_one_test($full_dir, $f);
njn25cac76cb2002-09-23 11:21:57 +0000641 }
njn25e49d8e72002-09-23 09:36:25 +0000642 }
njndb3c4692002-10-04 10:03:34 +0000643 if ($found_tests) {
644 print "-- Finished tests in $full_dir $dashes\n";
645 }
646
njn25e49d8e72002-09-23 09:36:25 +0000647 chdir("..");
njn25e49d8e72002-09-23 09:36:25 +0000648}
649
650#----------------------------------------------------------------------------
651# Summarise results
652#----------------------------------------------------------------------------
njn9fb16f52003-04-23 17:47:13 +0000653sub plural($)
654{
655 return ( $_[0] == 1 ? "" : "s" );
656}
657
njn25e49d8e72002-09-23 09:36:25 +0000658sub summarise_results
659{
njnd8ced862003-04-08 00:47:05 +0000660 my $x = ( $num_tests_done == 1 ? "test" : "tests" );
njnd8ced862003-04-08 00:47:05 +0000661
njn0001fc32006-04-03 14:25:23 +0000662 printf("\n== %d test%s, %d stderr failure%s, %d stdout failure%s, "
sewardj3b290482011-05-06 21:02:55 +0000663 . "%d stderrB failure%s, %d stdoutB failure%s, "
njn734b8052007-11-01 04:40:37 +0000664 . "%d post failure%s ==\n",
njn9fb16f52003-04-23 17:47:13 +0000665 $num_tests_done, plural($num_tests_done),
njn0001fc32006-04-03 14:25:23 +0000666 $num_failures{"stderr"}, plural($num_failures{"stderr"}),
667 $num_failures{"stdout"}, plural($num_failures{"stdout"}),
sewardj3b290482011-05-06 21:02:55 +0000668 $num_failures{"stderrB"}, plural($num_failures{"stderrB"}),
669 $num_failures{"stdoutB"}, plural($num_failures{"stdoutB"}),
njn734b8052007-11-01 04:40:37 +0000670 $num_failures{"post"}, plural($num_failures{"post"}));
njn9fb16f52003-04-23 17:47:13 +0000671
672 foreach my $failure (@failures) {
673 print "$failure\n";
njn25e49d8e72002-09-23 09:36:25 +0000674 }
njn9fb16f52003-04-23 17:47:13 +0000675 print "\n";
njn25e49d8e72002-09-23 09:36:25 +0000676}
677
678#----------------------------------------------------------------------------
679# main(), sort of
680#----------------------------------------------------------------------------
sewardj91368992006-05-26 00:13:21 +0000681sub warn_about_EXTRA_REGTEST_OPTS()
682{
683 print "WARNING: \$EXTRA_REGTEST_OPTS is set. You probably don't want\n";
684 print "to run the regression tests with it set, unless you are doing some\n";
685 print "strange experiment, and/or you really know what you are doing.\n";
686 print "\n";
687}
njn25e49d8e72002-09-23 09:36:25 +0000688
daywalkerbb936982003-04-23 16:52:06 +0000689# nuke VALGRIND_OPTS
690$ENV{"VALGRIND_OPTS"} = "";
njn25e49d8e72002-09-23 09:36:25 +0000691
sewardj91368992006-05-26 00:13:21 +0000692if ($ENV{"EXTRA_REGTEST_OPTS"}) {
693 print "\n";
694 warn_about_EXTRA_REGTEST_OPTS();
695}
696
njn25e49d8e72002-09-23 09:36:25 +0000697my @fs = process_command_line();
philippe69e8f172015-03-14 18:29:35 +0000698while (1) { # we will exit after one loop, unless looptillfail
699 foreach my $f (@fs) {
700 if (-d $f) {
701 test_one_dir($f, "");
702 } else {
703 # Allow the .vgtest suffix to be given or omitted
704 if ($f =~ /.vgtest$/ && -r $f) {
705 # do nothing
706 } elsif (-r "$f.vgtest") {
707 $f = "$f.vgtest";
708 } else {
709 die "`$f' neither a directory nor a readable test file/name\n"
710 }
711 my $dir = `dirname $f`; chomp $dir;
712 my $file = `basename $f`; chomp $file;
713 chdir($dir) or die "Could not change into $dir\n";
714 do_one_test($dir, $file);
njn25e49d8e72002-09-23 09:36:25 +0000715 }
philippe69e8f172015-03-14 18:29:35 +0000716 chdir($tests_dir);
njn25e49d8e72002-09-23 09:36:25 +0000717 }
philippe69e8f172015-03-14 18:29:35 +0000718 if ($looptillfail == 0) {
719 last;
720 }
njn25e49d8e72002-09-23 09:36:25 +0000721}
722summarise_results();
723
sewardj91368992006-05-26 00:13:21 +0000724if ($ENV{"EXTRA_REGTEST_OPTS"}) {
725 warn_about_EXTRA_REGTEST_OPTS();
726}
727
njn0001fc32006-04-03 14:25:23 +0000728if (0 == $num_failures{"stdout"} &&
729 0 == $num_failures{"stderr"} &&
sewardj3b290482011-05-06 21:02:55 +0000730 0 == $num_failures{"stdoutB"} &&
731 0 == $num_failures{"stderrB"} &&
njn734b8052007-11-01 04:40:37 +0000732 0 == $num_failures{"post"}) {
nethercoteab422192004-03-01 08:27:37 +0000733 exit 0;
734} else {
735 exit 1;
736}
737
njnc2e7f482002-09-27 08:44:17 +0000738##--------------------------------------------------------------------##
739##--- end vg_regtest ---##
740##--------------------------------------------------------------------##