summaryrefslogtreecommitdiff
path: root/tools/test.py
diff options
context:
space:
mode:
authorGabriel Schulhof <gabriel.schulhof@intel.com>2018-11-17 12:34:54 -0800
committerGabriel Schulhof <gabriel.schulhof@intel.com>2018-12-04 13:58:17 -0800
commit938e11882b96e19b443477571455088baaa054d8 (patch)
treeeb828a60957a2881995ba9a83f44a32a18fbff16 /tools/test.py
parent83ee137c4565112177f22f2c735b266b22262220 (diff)
downloadnode-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-xtools/test.py3
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',