From c2359bdad62b83d40976d91e91097684c23a7ae3 Mon Sep 17 00:00:00 2001 From: Joyee Cheung Date: Wed, 30 Jan 2019 23:19:45 +0800 Subject: process: expose process.features.inspector Instead of using process.config.variables.v8_enable_inspector to detect whether inspector is enabled in the build. PR-URL: https://github.com/nodejs/node/pull/25819 Refs: https://github.com/nodejs/node/issues/25343 Reviewed-By: Eugene Ostroukhov Reviewed-By: Gus Caplan Reviewed-By: James M Snell Reviewed-By: Richard Lau Reviewed-By: Colin Ihrig Reviewed-By: Anna Henningsen --- tools/test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools') diff --git a/tools/test.py b/tools/test.py index 4ac8d0e631..b9750b2035 100755 --- a/tools/test.py +++ b/tools/test.py @@ -1653,8 +1653,8 @@ def Main(): # We want to skip the inspector tests if node was built without the inspector. has_inspector = Execute([vm, - '-p', 'process.config.variables.v8_enable_inspector'], context) - if has_inspector.stdout.rstrip() == '0': + '-p', 'process.features.inspector'], context) + if has_inspector.stdout.rstrip() == 'false': context.v8_enable_inspector = False has_crypto = Execute([vm, -- cgit v1.2.3