Skip to content

Commit

Permalink
New benchmark - += / containers stress test
Browse files Browse the repository at this point in the history
  • Loading branch information
sorear committed Sep 16, 2010
1 parent 25acd31 commit 7b5ec9b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -6,3 +6,4 @@ VERSION
t/spec
perf/sample_*.json
perf/STD.errors
perf/*.exe
10 changes: 10 additions & 0 deletions perf/arithmark.pl
@@ -0,0 +1,10 @@
my $i = 0;
my $b = 0;
while $i < 1000000 {
$b += $i;
$b += $i;
$b += $i;
$b += $i;
$b += $i;
$i++;
}

0 comments on commit 7b5ec9b

Please sign in to comment.