From: Nicholas Nethercote Date: Wed, 1 Jul 2009 04:50:41 +0000 (+0000) Subject: Remove the --all option from vg_perf. It's useless now that there are X-Git-Tag: svn/VALGRIND_3_5_0~456 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=00f539d5735ff185faa26d31e262efcc921f48e2;p=thirdparty%2Fvalgrind.git Remove the --all option from vg_perf. It's useless now that there are tool-specific tests in massif/perf/ and memcheck/perf/. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10390 --- diff --git a/perf/vg_perf.in b/perf/vg_perf.in index 0f3e44882f..2188a31ed6 100644 --- a/perf/vg_perf.in +++ b/perf/vg_perf.in @@ -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 @@ usage: vg_perf [options] [files or dirs] options for the user, with defaults in [ ], are: -h --help show this message - --all run all tests under this directory --reps= number of repeats for each program [1] --tools= tools to run [Nulgrind and Memcheck] --vg Valgrind(s) to measure (can be specified multiple @@ -131,14 +125,11 @@ sub add_vgdir($) 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 @@ sub process_command_line() 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;