summaryrefslogtreecommitdiffstats
path: root/bench
diff options
context:
space:
mode:
authordotnetCarpenter <jon.ronnenberg@gmail.com>2017-04-11 18:57:32 +0200
committerdotnetCarpenter <jon.ronnenberg@gmail.com>2017-04-11 18:57:32 +0200
commitae7b087db03e330bef21f026a652759d9bd7f57e (patch)
tree4b00fcba1713a691e3299a0089f227a5835597bc /bench
parent117b7fbe8db0bbbda7fc7c951d7d83005e1a669b (diff)
downloadsvg.js-ae7b087db03e330bef21f026a652759d9bd7f57e.tar.gz
svg.js-ae7b087db03e330bef21f026a652759d9bd7f57e.zip
change benchmark svg.js identifier to 2.5.2
Diffstat (limited to 'bench')
-rw-r--r--bench/tests/10000-circles.js4
-rw-r--r--bench/tests/10000-pathArrays.js6
-rw-r--r--bench/tests/10000-paths.js2
-rw-r--r--bench/tests/10000-rects.js8
4 files changed, 10 insertions, 10 deletions
diff --git a/bench/tests/10000-circles.js b/bench/tests/10000-circles.js
index 85dadb2..28fd609 100644
--- a/bench/tests/10000-circles.js
+++ b/bench/tests/10000-circles.js
@@ -1,5 +1,5 @@
SVG.bench.describe('Generate 10000 circles', function(bench) {
- bench.test('using SVG.js v2.5.1', function() {
+ bench.test('using SVG.js v2.5.2', function() {
for (var i = 0; i < 10000; i++)
bench.draw.circle(100,100)
})
@@ -18,7 +18,7 @@ SVG.bench.describe('Generate 10000 circles', function(bench) {
})
SVG.bench.describe('Generate 10000 circles with fill', function(bench) {
- bench.test('using SVG.js v2.5.1', function() {
+ bench.test('using SVG.js v2.5.2', function() {
for (var i = 0; i < 10000; i++)
bench.draw.circle(100,100).fill('#f06')
})
diff --git a/bench/tests/10000-pathArrays.js b/bench/tests/10000-pathArrays.js
index b30229a..871d022 100644
--- a/bench/tests/10000-pathArrays.js
+++ b/bench/tests/10000-pathArrays.js
@@ -5,17 +5,17 @@ SVG.bench.describe('Generate 10000 pathArrays', function(bench) {
var data3 = 'M10 10-45-30.5.5 .89L2e-2.5.5.5-.5C.5.5.5.5.5.5L-3-4z'
- bench.test('using SVG.js v2.5.1', function() {
+ bench.test('using SVG.js v2.5.2', function() {
for (var i = 0; i < 10000; i++)
new SVG.PathArray(data)
})
- bench.test('using SVG.js v2.5.1 more data', function() {
+ bench.test('using SVG.js v2.5.2 more data', function() {
for (var i = 0; i < 10000; i++)
new SVG.PathArray(data2)
})
- bench.test('using SVG.js v2.5.1 complicated data', function() {
+ bench.test('using SVG.js v2.5.2 complicated data', function() {
for (var i = 0; i < 10000; i++)
new SVG.PathArray(data3)
})
diff --git a/bench/tests/10000-paths.js b/bench/tests/10000-paths.js
index 54602dc..dcfbc43 100644
--- a/bench/tests/10000-paths.js
+++ b/bench/tests/10000-paths.js
@@ -1,7 +1,7 @@
SVG.bench.describe('Generate 10000 paths', function(bench) {
var data = 'M 100 200 C 200 100 300 0 400 100 C 500 200 600 300 700 200 C 800 100 900 100 900 100'
- bench.test('using SVG.js v2.5.1', function() {
+ bench.test('using SVG.js v2.5.2', function() {
for (var i = 0; i < 10000; i++)
bench.draw.path(data)
})
diff --git a/bench/tests/10000-rects.js b/bench/tests/10000-rects.js
index 4fa6b29..15fc94c 100644
--- a/bench/tests/10000-rects.js
+++ b/bench/tests/10000-rects.js
@@ -1,5 +1,5 @@
SVG.bench.describe('Generate 10000 rects', function(bench) {
- bench.test('using SVG.js v2.5.1', function() {
+ bench.test('using SVG.js v2.5.2', function() {
for (var i = 0; i < 10000; i++)
bench.draw.rect(100,100)
})
@@ -19,7 +19,7 @@ SVG.bench.describe('Generate 10000 rects', function(bench) {
SVG.bench.describe('Generate 10000 rects with fill', function(bench) {
- bench.test('using SVG.js v2.5.1', function() {
+ bench.test('using SVG.js v2.5.2', function() {
for (var i = 0; i < 10000; i++)
bench.draw.rect(100,100).fill('#f06')
})
@@ -40,7 +40,7 @@ SVG.bench.describe('Generate 10000 rects with fill', function(bench) {
SVG.bench.describe('Generate 10000 rects with position and fill', function(bench) {
- bench.test('using SVG.js v2.5.1', function() {
+ bench.test('using SVG.js v2.5.2', function() {
for (var i = 0; i < 10000; i++)
bench.draw.rect(100,100).move(50,50).fill('#f06')
})
@@ -63,7 +63,7 @@ SVG.bench.describe('Generate 10000 rects with position and fill', function(bench
SVG.bench.describe('Generate 10000 rects with gradient fill', function(bench) {
- bench.test('using SVG.js v2.5.1', function() {
+ bench.test('using SVG.js v2.5.2', function() {
for (var i = 0; i < 10000; i++) {
var g = bench.draw.gradient('linear', function(stop) {
stop.at(0, '#000')