0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-22 07:37:56 +01:00

Add script for running V8 benchmarks

This commit is contained in:
Ryan Dahl 2011-02-14 17:26:54 -08:00
parent b11d78b386
commit bd094103d7

15
benchmark/v8_bench.js Normal file
View File

@ -0,0 +1,15 @@
// compare with "google-chrome deps/v8/benchmarks/run.html"
var fs = require('fs');
var path = require('path');
var vm = require('vm');
var dir = path.join(__dirname, '..', 'deps', 'v8', 'benchmarks');
global.print = console.log;
global.load = function (x) {
var source = fs.readFileSync(path.join(dir, x), 'utf8');
vm.runInThisContext(source, x);
}
load('run.js');