-
Notifications
You must be signed in to change notification settings - Fork 30.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
n-api: use module name macro #16185
n-api: use module name macro #16185
Conversation
Update tests to use module name macro
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mhdawson there are a few more:
$ git grep -nEH '^(NAPI|NODE)_MODULE' -- test | \
grep -vE 'BUILTIN|NODE_GYP_MODULE_NAME|INTERNAL' | \
awk -F ':' '{ print $1; }' | \
sort -u
test/addons/callback-scope/binding.cc
test/addons/dlopen-ping-pong/binding.cc
test/addons-napi/test_warning/test_warning2.c
test/addons-napi/test_warning/test_warning.c
test/addons/node-module-version/binding.cc
test/addons/openssl-binding/binding.cc
test/addons/zlib-binding/binding.cc
test/gc/binding.cc
Might as well catch 'em all, eh?
sure, I guess I used the wrong search. Updating now. |
Ah I see they are not in the n-api set thats why I did not see them. Anyway fixing them up |
@gabrielschulhof pushed commit to update the rest of them |
Update tests to use module name macro PR-URL: #16185 Reviewed-By: Gabriel Schulhof <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
Landed in 6bc82da |
Update tests to use module name macro PR-URL: #16185 Reviewed-By: Gabriel Schulhof <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
Update tests to use module name macro PR-URL: nodejs/node#16185 Reviewed-By: Gabriel Schulhof <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
Update tests to use module name macro PR-URL: nodejs#16185 Reviewed-By: Gabriel Schulhof <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
Update tests to use module name macro Backport-PR-URL: #19447 PR-URL: #16185 Reviewed-By: Gabriel Schulhof <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
Update tests to use module name macro
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passesAffected core subsystem(s)
n-api, test