From fdb1c0d31c19ee5242860992f2b28da1233cf3f0 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Wed, 4 Nov 2020 19:43:34 +0000 Subject: [PATCH] benchmark: remove modules that require intl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `inspector` and `trace_events` will throw errors if Node.js has been compiled with `--without-intl`. Refs: https://github.com/nodejs/node/pull/35816 PR-URL: https://github.com/nodejs/node/pull/35968 Fixes: https://github.com/nodejs/node/issues/35962 Reviewed-By: Luigi Pinca Reviewed-By: Antoine du Hamel Reviewed-By: Gireesh Punathil Reviewed-By: Harshitha K P Reviewed-By: Gerhard Stöbich --- benchmark/fixtures/require-builtins.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/benchmark/fixtures/require-builtins.js b/benchmark/fixtures/require-builtins.js index a100e9efd0cae5..685eef1875b301 100644 --- a/benchmark/fixtures/require-builtins.js +++ b/benchmark/fixtures/require-builtins.js @@ -17,7 +17,6 @@ const list = [ 'http', 'http2', 'https', - 'inspector', 'module', 'net', 'os', @@ -32,7 +31,6 @@ const list = [ 'string_decoder', 'timers', 'tls', - 'trace_events', 'tty', 'url', 'util',