mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-29 05:38:00 +00:00
fb16dfecae
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
13 lines
633 B
Plaintext
13 lines
633 B
Plaintext
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.
|