bench: Fail gracefully if function_call binding fails

pull/24507/merge
isaacs 2013-02-12 00:13:18 -08:00
parent 0e59efd079
commit 7658f4c29c
1 changed files with 10 additions and 1 deletions

View File

@ -6,7 +6,16 @@
var assert = require('assert');
var common = require('../../common.js');
var binding = require('./build/Release/binding');
// this fails when we try to open with a different version of node,
// which is quite common for benchmarks. so in that case, just
// abort quietly.
try {
var binding = require('./build/Release/binding');
} catch (er) {
console.error('misc/function_call.js Binding failed to load');
process.exit(0);
}
var cxx = binding.hello;
var c = 0;