From fc471731af7e62ea6eeb0aac7df12bb03746cfd1 Mon Sep 17 00:00:00 2001 From: Yosuke Furukawa Date: Sat, 24 Jan 2015 08:56:04 +0900 Subject: [PATCH 1/2] make: Add benchmark make bench-url target --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6c8636013f8924..81a4684f5a0910 100644 --- a/Makefile +++ b/Makefile @@ -368,7 +368,10 @@ bench-array: all bench-buffer: all @$(NODE) benchmark/common.js buffers -bench-all: bench bench-misc bench-array bench-buffer +bench-url: all + @$(NODE) benchmark/common.js url + +bench-all: bench bench-misc bench-array bench-buffer bench-url bench: bench-net bench-http bench-fs bench-tls From 6cb1c57141b1f9600c85037777fad2760e25b2be Mon Sep 17 00:00:00 2001 From: Yosuke Furukawa Date: Wed, 28 Jan 2015 02:55:23 +0900 Subject: [PATCH 2/2] make: Add benchmark make bench-events target --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 81a4684f5a0910..d8ad3feee99cce 100644 --- a/Makefile +++ b/Makefile @@ -371,7 +371,10 @@ bench-buffer: all bench-url: all @$(NODE) benchmark/common.js url -bench-all: bench bench-misc bench-array bench-buffer bench-url +bench-events: all + @$(NODE) benchmark/common.js events + +bench-all: bench bench-misc bench-array bench-buffer bench-url bench-events bench: bench-net bench-http bench-fs bench-tls