|
From: <sv...@va...> - 2009-07-01 04:51:48
|
Author: njn
Date: 2009-07-01 05:50:41 +0100 (Wed, 01 Jul 2009)
New Revision: 10390
Log:
Remove the --all option from vg_perf. It's useless now that there are
tool-specific tests in massif/perf/ and memcheck/perf/.
Modified:
trunk/perf/vg_perf.in
Modified: trunk/perf/vg_perf.in
===================================================================
--- trunk/perf/vg_perf.in 2009-07-01 02:44:12 UTC (rev 10389)
+++ trunk/perf/vg_perf.in 2009-07-01 04:50:41 UTC (rev 10390)
@@ -29,11 +29,6 @@
#----------------------------------------------------------------------------
# usage: see usage message.
#
-# The easiest way is to run all tests in valgrind/ with (assuming you installed
-# in $PREFIX):
-#
-# perl perf/vg_perf --all
-#
# You can specify individual files to test, or whole directories, or both.
# Directories are traversed recursively, except for ones named, for example,
# CVS/ or docs/.
@@ -61,7 +56,6 @@
options for the user, with defaults in [ ], are:
-h --help show this message
- --all run all tests under this directory
--reps=<n> number of repeats for each program [1]
--tools=<t1,t2,t3> tools to run [Nulgrind and Memcheck]
--vg Valgrind(s) to measure (can be specified multiple
@@ -131,14 +125,11 @@
sub process_command_line()
{
- my $alldirs = 0;
my @fs;
for my $arg (@ARGV) {
if ($arg =~ /^-/) {
- if ($arg =~ /^--all$/) {
- $alldirs = 1;
- } elsif ($arg =~ /^--reps=(\d+)$/) {
+ if ($arg =~ /^--reps=(\d+)$/) {
$n_reps = $1;
if ($n_reps < 1) { die "bad --reps value: $n_reps\n"; }
} elsif ($arg =~ /^--vg=(.+)$/) {
@@ -159,13 +150,6 @@
add_vgdir($tests_dir);
}
- if ($alldirs) {
- @fs = ();
- foreach my $f (glob "*") {
- push(@fs, $f) if (-d $f);
- }
- }
-
(0 != @fs) or die "No test files or directories specified\n";
return @fs;
|