mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 13:43:55 +00:00

* Get rid of recursive `make` when building the node binary. An earlier commit makes GYP write out rules that we can use for proper dependency tracking. * Use module name 'binding' in addons.md and addons-napi/*/binding.gyp. This massively simplifies the logic for generating the build rules. * Check in auto-generated add-on tests from `doc/api/addons.md`. The files change rarely and generating them dynamically causes no end of race conditions and special-casing during the build. PR-URL: https://github.com/nodejs/node/pull/17407 Reviewed-By: Richard Lau <riclau@uk.ibm.com>
32 lines
739 B
JavaScript
32 lines
739 B
JavaScript
'use strict';
|
|
const common = require('../../common');
|
|
const assert = require('assert');
|
|
|
|
// testing api calls for function
|
|
const test_function = require(`./build/${common.buildType}/binding`);
|
|
|
|
|
|
function func1() {
|
|
return 1;
|
|
}
|
|
assert.strictEqual(test_function.TestCall(func1), 1);
|
|
|
|
function func2() {
|
|
console.log('hello world!');
|
|
return null;
|
|
}
|
|
assert.strictEqual(test_function.TestCall(func2), null);
|
|
|
|
function func3(input) {
|
|
return input + 1;
|
|
}
|
|
assert.strictEqual(test_function.TestCall(func3, 1), 2);
|
|
|
|
function func4(input) {
|
|
return func3(input);
|
|
}
|
|
assert.strictEqual(test_function.TestCall(func4, 1), 2);
|
|
|
|
assert.strictEqual(test_function.TestName.name, 'Name');
|
|
assert.strictEqual(test_function.TestNameShort.name, 'Name_');
|