From 5131fbee481255ceb985642135e5f092753290e3 Mon Sep 17 00:00:00 2001 From: Hanjoung Lee Date: Tue, 2 Feb 2016 10:23:34 +0900 Subject: [PATCH] Fix benchmark links --- benchmark/benchmark.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/benchmark/benchmark.js b/benchmark/benchmark.js index 858da8196..63c0accb7 100644 --- a/benchmark/benchmark.js +++ b/benchmark/benchmark.js @@ -61,12 +61,14 @@ var measureTypes = ['memory', 'performance']; var measureUnits = {'memory': 'kb', 'performance': 's'}; var engines = ['jerryscript', 'jerryscript-snapshot', 'jerryscript_cbc', 'duktape']; var link_main = { - 'jerryscript': 'http://www.jerryscript.net', - 'duktape': 'http://duktape.org' + 'jerryscript': 'http://www.jerryscript.net', + 'jerryscript_cbc': 'http://www.jerryscript.net', + 'duktape': 'http://duktape.org' }; var link_code = { - 'jerryscript': 'https://github.com/Samsung/jerryscript/commit/', - 'duktape': 'https://github.com/svaarala/duktape/commit/' + 'jerryscript': 'https://github.com/Samsung/jerryscript/commit/', + 'jerryscript_cbc': 'https://github.com/Samsung/jerryscript/commit/', + 'duktape': 'https://github.com/svaarala/duktape/commit/' }; var beginDate = new Date('2015-07-11');