From b1110b22b445fe5dad8f79b1de5b64cffa69c579 Mon Sep 17 00:00:00 2001 From: Ashok Date: Sat, 14 Apr 2018 16:07:29 +0530 Subject: [PATCH] test: fix test when NODE_OPTIONS env var is set to --trace-warnings PR-URL: https://github.com/nodejs/node/pull/20027 Reviewed-By: Gibson Fahnestock Reviewed-By: James M Snell --- tools/test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/test.py b/tools/test.py index 74216546741720..b90d144d5f5981 100755 --- a/tools/test.py +++ b/tools/test.py @@ -54,6 +54,7 @@ VERBOSE = False +os.environ['NODE_OPTIONS'] = '' # --------------------------------------------- # --- P r o g r e s s I n d i c a t o r s ---