in reply to Re^4: exec, system, or backticks
in thread exec, system, or backticks

Benchmarking (in computing field) has mostly to do with performance comparisons. There is a whole suite of perl modules Benchmark and Benchmark::Harness, neither of which have I used. I did work for several years on Spec95 Benchmarks and at the BYTE Magazine Lab. I don't know if you are looking for performance evaluation, but if you are, I'm passing on these experiences:

In this later case, I would use a Perl invocation like this:

my $results = system("time $program_to_time");
And parse the results.

Not sure if any of this is of any interest to you. If so, I'll dig up what I can. -ben

P.S., Those SPEC95 benchmarks were a real pain, from which I learned: a whole lot about Perl and the fundemetal difference between UNIX and VMS.