Bug 107593 - [NEW PORT] benchmarks/p5-Benchmark-Forking: Run benchmarks in separate processes
Summary: [NEW PORT] benchmarks/p5-Benchmark-Forking: Run benchmarks in separate processes
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Cheng-Lung Sung
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-01-05 22:40 UTC by gslin
Modified: 2007-01-08 03:50 UTC (History)
1 user (show)

See Also:


Attachments
p5-Benchmark-Forking-0.99.shar (2.86 KB, text/plain)
2007-01-05 22:40 UTC, gslin
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description gslin 2007-01-05 22:40:25 UTC
The Benchmark::Forking module changes the behavior of the standard
Benchmark module, running each piece of code to be timed in a separate
forked process. Because each child exits after running its timing loop,
the computations it performs can't propogate back to affect subsequent
test cases.

This can make benchmark comparisons more accurate, because the
separate test cases are mostly isolated from side-effects caused by
the others. Benchmark scripts typically don't depend on those
side-effects, so in most cases you can simply use or require this
module at the top of your existing code without having to change
anything else.

WWW:	http://search.cpan.org/dist/Benchmark-Forking/

Generated with FreeBSD Port Tools 0.77
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2007-01-05 22:40:42 UTC
Responsible Changed
From-To: freebsd-ports-bugs->clsung

clsung@ wants his PRs
Comment 2 dfilter service freebsd_committer freebsd_triage 2007-01-08 03:48:37 UTC
clsung      2007-01-08 03:48:30 UTC

  FreeBSD ports repository

  Modified files:
    benchmarks           Makefile 
  Added files:
    benchmarks/p5-Benchmark-Forking Makefile distinfo pkg-descr 
                                    pkg-plist 
  Log:
  Add p5-Benchmark-Forking 0.99, run benchmarks in separate processes.
  
  PR:             ports/107593
  Submitted by:   Gea-Suan Lin <gslin at gslin.org>
  
  Revision  Changes    Path
  1.56      +1 -0      ports/benchmarks/Makefile
  1.1       +22 -0     ports/benchmarks/p5-Benchmark-Forking/Makefile (new)
  1.1       +3 -0      ports/benchmarks/p5-Benchmark-Forking/distinfo (new)
  1.1       +14 -0     ports/benchmarks/p5-Benchmark-Forking/pkg-descr (new)
  1.1       +8 -0      ports/benchmarks/p5-Benchmark-Forking/pkg-plist (new)
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
Comment 3 Cheng-Lung Sung freebsd_committer freebsd_triage 2007-01-08 03:49:53 UTC
State Changed
From-To: open->closed

New port added. Thank You.