diff options
author | Gabriel Schulhof <gabriel.schulhof@intel.com> | 2018-11-17 12:34:54 -0800 |
---|---|---|
committer | Gabriel Schulhof <gabriel.schulhof@intel.com> | 2018-12-04 13:58:17 -0800 |
commit | 938e11882b96e19b443477571455088baaa054d8 (patch) | |
tree | eb828a60957a2881995ba9a83f44a32a18fbff16 /tools/test.py | |
parent | 83ee137c4565112177f22f2c735b266b22262220 (diff) | |
download | node-new-938e11882b96e19b443477571455088baaa054d8.tar.gz |
test: partition N-API tests
Partition test/addons-napi into test/js-native-api and test/node-api to
isolate the Node.js-agnostic portion of the N-API tests from the
Node.js-specific portion.
PR-URL: https://github.com/nodejs/node/pull/24557
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
Diffstat (limited to 'tools/test.py')
-rwxr-xr-x | tools/test.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/test.py b/tools/test.py index 46235ab05a..e59dd8b782 100755 --- a/tools/test.py +++ b/tools/test.py @@ -1499,7 +1499,8 @@ def PrintCrashed(code): # addons/ requires compilation. IGNORED_SUITES = [ 'addons', - 'addons-napi', + 'js-native-api', + 'node-api', 'benchmark', 'doctool', 'internet', |