summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan José Arboleda <soyjuanarbol@gmail.com>2020-03-29 00:01:29 -0500
committerAnna Henningsen <anna@addaleax.net>2020-04-02 18:28:23 +0200
commit7534477786bfaa06be4210e35f07860cb6ac5b1c (patch)
tree094ec412ff4acbb28e659119f13bda8936b4e0fe
parent060a170e296e17e73715ec8728816da6530e16a6 (diff)
downloadnode-new-7534477786bfaa06be4210e35f07860cb6ac5b1c.tar.gz
test: replace flag expose_internals to expose-internals
PR-URL: https://github.com/nodejs/node/pull/32542 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com>
-rw-r--r--test/parallel/test-child-process-bad-stdio.js2
-rw-r--r--test/parallel/test-child-process-exec-kill-throws.js2
-rw-r--r--test/parallel/test-child-process-http-socket-leak.js2
-rw-r--r--test/parallel/test-child-process-spawnsync-kill-signal.js2
-rw-r--r--test/parallel/test-child-process-spawnsync-shell.js2
-rw-r--r--test/parallel/test-child-process-validate-stdio.js2
-rw-r--r--test/parallel/test-child-process-windows-hide.js2
-rw-r--r--test/parallel/test-constants.js2
-rw-r--r--test/parallel/test-fs-open-flags.js2
-rw-r--r--test/parallel/test-http2-compat-socket.js2
-rw-r--r--test/parallel/test-http2-socket-proxy.js2
-rw-r--r--test/parallel/test-icu-stringwidth.js2
-rw-r--r--test/parallel/test-internal-util-decorate-error-stack.js2
-rw-r--r--test/parallel/test-os-checked-function.js2
-rw-r--r--test/parallel/test-readline-interface.js2
-rw-r--r--test/parallel/test-readline-tab-complete.js2
-rw-r--r--test/parallel/test-repl-history-perm.js2
-rw-r--r--test/parallel/test-repl.js2
-rw-r--r--test/parallel/test-safe-get-env.js2
-rw-r--r--test/parallel/test-stream-buffer-list.js2
-rw-r--r--test/parallel/test-stream2-readable-from-list.js2
-rw-r--r--test/parallel/test-tls-parse-cert-string.js2
-rw-r--r--test/parallel/test-tls-wrap-timeout.js2
-rw-r--r--test/parallel/test-util-internal.js2
24 files changed, 24 insertions, 24 deletions
diff --git a/test/parallel/test-child-process-bad-stdio.js b/test/parallel/test-child-process-bad-stdio.js
index 45294d7d82..1f382e2966 100644
--- a/test/parallel/test-child-process-bad-stdio.js
+++ b/test/parallel/test-child-process-bad-stdio.js
@@ -1,5 +1,5 @@
'use strict';
-// Flags: --expose_internals
+// Flags: --expose-internals
const common = require('../common');
const assert = require('assert');
const cp = require('child_process');
diff --git a/test/parallel/test-child-process-exec-kill-throws.js b/test/parallel/test-child-process-exec-kill-throws.js
index d6a0d4da19..fbc9677f53 100644
--- a/test/parallel/test-child-process-exec-kill-throws.js
+++ b/test/parallel/test-child-process-exec-kill-throws.js
@@ -1,5 +1,5 @@
'use strict';
-// Flags: --expose_internals
+// Flags: --expose-internals
const common = require('../common');
const assert = require('assert');
const cp = require('child_process');
diff --git a/test/parallel/test-child-process-http-socket-leak.js b/test/parallel/test-child-process-http-socket-leak.js
index 9b284f285c..cae4b051bc 100644
--- a/test/parallel/test-child-process-http-socket-leak.js
+++ b/test/parallel/test-child-process-http-socket-leak.js
@@ -1,4 +1,4 @@
-// Flags: --expose_internals
+// Flags: --expose-internals
'use strict';
diff --git a/test/parallel/test-child-process-spawnsync-kill-signal.js b/test/parallel/test-child-process-spawnsync-kill-signal.js
index 0c8f4a6d46..6d14f24724 100644
--- a/test/parallel/test-child-process-spawnsync-kill-signal.js
+++ b/test/parallel/test-child-process-spawnsync-kill-signal.js
@@ -1,4 +1,4 @@
-// Flags: --expose_internals
+// Flags: --expose-internals
'use strict';
const common = require('../common');
const assert = require('assert');
diff --git a/test/parallel/test-child-process-spawnsync-shell.js b/test/parallel/test-child-process-spawnsync-shell.js
index 0a20a490dd..0dd50cedd1 100644
--- a/test/parallel/test-child-process-spawnsync-shell.js
+++ b/test/parallel/test-child-process-spawnsync-shell.js
@@ -1,4 +1,4 @@
-// Flags: --expose_internals
+// Flags: --expose-internals
'use strict';
const common = require('../common');
const assert = require('assert');
diff --git a/test/parallel/test-child-process-validate-stdio.js b/test/parallel/test-child-process-validate-stdio.js
index 5b0259f19b..ff214ee2d7 100644
--- a/test/parallel/test-child-process-validate-stdio.js
+++ b/test/parallel/test-child-process-validate-stdio.js
@@ -1,5 +1,5 @@
'use strict';
-// Flags: --expose_internals
+// Flags: --expose-internals
const common = require('../common');
const assert = require('assert');
diff --git a/test/parallel/test-child-process-windows-hide.js b/test/parallel/test-child-process-windows-hide.js
index 42bca6471c..1d9593c0a9 100644
--- a/test/parallel/test-child-process-windows-hide.js
+++ b/test/parallel/test-child-process-windows-hide.js
@@ -1,4 +1,4 @@
-// Flags: --expose_internals
+// Flags: --expose-internals
'use strict';
const common = require('../common');
const assert = require('assert');
diff --git a/test/parallel/test-constants.js b/test/parallel/test-constants.js
index 62c62b101a..08d1f1dbcd 100644
--- a/test/parallel/test-constants.js
+++ b/test/parallel/test-constants.js
@@ -1,4 +1,4 @@
-// Flags: --expose_internals
+// Flags: --expose-internals
'use strict';
require('../common');
diff --git a/test/parallel/test-fs-open-flags.js b/test/parallel/test-fs-open-flags.js
index 80e54d169d..4c4b8039dc 100644
--- a/test/parallel/test-fs-open-flags.js
+++ b/test/parallel/test-fs-open-flags.js
@@ -19,7 +19,7 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-// Flags: --expose_internals
+// Flags: --expose-internals
'use strict';
const common = require('../common');
diff --git a/test/parallel/test-http2-compat-socket.js b/test/parallel/test-http2-compat-socket.js
index 0db2876738..95bc42180e 100644
--- a/test/parallel/test-http2-compat-socket.js
+++ b/test/parallel/test-http2-compat-socket.js
@@ -1,4 +1,4 @@
-// Flags: --expose_internals
+// Flags: --expose-internals
'use strict';
diff --git a/test/parallel/test-http2-socket-proxy.js b/test/parallel/test-http2-socket-proxy.js
index 17704e2fd9..3294cf7ccb 100644
--- a/test/parallel/test-http2-socket-proxy.js
+++ b/test/parallel/test-http2-socket-proxy.js
@@ -1,4 +1,4 @@
-// Flags: --expose_internals
+// Flags: --expose-internals
'use strict';
diff --git a/test/parallel/test-icu-stringwidth.js b/test/parallel/test-icu-stringwidth.js
index e2f2294115..66d75c4cbe 100644
--- a/test/parallel/test-icu-stringwidth.js
+++ b/test/parallel/test-icu-stringwidth.js
@@ -1,4 +1,4 @@
-// Flags: --expose_internals
+// Flags: --expose-internals
'use strict';
const common = require('../common');
diff --git a/test/parallel/test-internal-util-decorate-error-stack.js b/test/parallel/test-internal-util-decorate-error-stack.js
index 40fbf1d48c..b12d50bee7 100644
--- a/test/parallel/test-internal-util-decorate-error-stack.js
+++ b/test/parallel/test-internal-util-decorate-error-stack.js
@@ -1,4 +1,4 @@
-// Flags: --expose_internals
+// Flags: --expose-internals
'use strict';
require('../common');
const fixtures = require('../common/fixtures');
diff --git a/test/parallel/test-os-checked-function.js b/test/parallel/test-os-checked-function.js
index e0758437fe..819cdf1794 100644
--- a/test/parallel/test-os-checked-function.js
+++ b/test/parallel/test-os-checked-function.js
@@ -1,5 +1,5 @@
'use strict';
-// Flags: --expose_internals
+// Flags: --expose-internals
require('../common');
const { internalBinding } = require('internal/test/binding');
diff --git a/test/parallel/test-readline-interface.js b/test/parallel/test-readline-interface.js
index 0f96f8368b..59a65e8ca2 100644
--- a/test/parallel/test-readline-interface.js
+++ b/test/parallel/test-readline-interface.js
@@ -19,7 +19,7 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-// Flags: --expose_internals
+// Flags: --expose-internals
'use strict';
const common = require('../common');
diff --git a/test/parallel/test-readline-tab-complete.js b/test/parallel/test-readline-tab-complete.js
index 5afa60e4da..d7a4bb7a9a 100644
--- a/test/parallel/test-readline-tab-complete.js
+++ b/test/parallel/test-readline-tab-complete.js
@@ -1,6 +1,6 @@
'use strict';
-// Flags: --expose_internals
+// Flags: --expose-internals
const common = require('../common');
const readline = require('readline');
diff --git a/test/parallel/test-repl-history-perm.js b/test/parallel/test-repl-history-perm.js
index 3db2a009eb..7297689422 100644
--- a/test/parallel/test-repl-history-perm.js
+++ b/test/parallel/test-repl-history-perm.js
@@ -2,7 +2,7 @@
// Verifies that the REPL history file is created with mode 0600
-// Flags: --expose_internals
+// Flags: --expose-internals
const common = require('../common');
diff --git a/test/parallel/test-repl.js b/test/parallel/test-repl.js
index a7b0b453e9..cb66c22457 100644
--- a/test/parallel/test-repl.js
+++ b/test/parallel/test-repl.js
@@ -560,7 +560,7 @@ const errorTests = [
expect: '... ... ... undefined'
},
// REPL should get a normal require() function, not one that allows
- // access to internal modules without the --expose_internals flag.
+ // access to internal modules without the --expose-internals flag.
{
send: 'require("internal/repl")',
expect: [
diff --git a/test/parallel/test-safe-get-env.js b/test/parallel/test-safe-get-env.js
index 0bee9971db..f57dcb566d 100644
--- a/test/parallel/test-safe-get-env.js
+++ b/test/parallel/test-safe-get-env.js
@@ -1,5 +1,5 @@
'use strict';
-// Flags: --expose_internals
+// Flags: --expose-internals
require('../common');
const assert = require('assert');
diff --git a/test/parallel/test-stream-buffer-list.js b/test/parallel/test-stream-buffer-list.js
index c78efeea24..5b495a41e0 100644
--- a/test/parallel/test-stream-buffer-list.js
+++ b/test/parallel/test-stream-buffer-list.js
@@ -1,4 +1,4 @@
-// Flags: --expose_internals
+// Flags: --expose-internals
'use strict';
require('../common');
const assert = require('assert');
diff --git a/test/parallel/test-stream2-readable-from-list.js b/test/parallel/test-stream2-readable-from-list.js
index 0ab7c059d6..6564a01691 100644
--- a/test/parallel/test-stream2-readable-from-list.js
+++ b/test/parallel/test-stream2-readable-from-list.js
@@ -19,7 +19,7 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-// Flags: --expose_internals
+// Flags: --expose-internals
'use strict';
require('../common');
const assert = require('assert');
diff --git a/test/parallel/test-tls-parse-cert-string.js b/test/parallel/test-tls-parse-cert-string.js
index a3062c227e..f5412cad40 100644
--- a/test/parallel/test-tls-parse-cert-string.js
+++ b/test/parallel/test-tls-parse-cert-string.js
@@ -10,7 +10,7 @@ const {
restoreStderr
} = require('../common/hijackstdio');
const assert = require('assert');
-// Flags: --expose_internals
+// Flags: --expose-internals
const internalTLS = require('internal/tls');
const tls = require('tls');
diff --git a/test/parallel/test-tls-wrap-timeout.js b/test/parallel/test-tls-wrap-timeout.js
index 6ae2c39c59..7b9cb4170c 100644
--- a/test/parallel/test-tls-wrap-timeout.js
+++ b/test/parallel/test-tls-wrap-timeout.js
@@ -1,4 +1,4 @@
-// Flags: --expose_internals
+// Flags: --expose-internals
'use strict';
const common = require('../common');
diff --git a/test/parallel/test-util-internal.js b/test/parallel/test-util-internal.js
index f16ccfdbdc..cd38f3e7c5 100644
--- a/test/parallel/test-util-internal.js
+++ b/test/parallel/test-util-internal.js
@@ -1,5 +1,5 @@
'use strict';
-// Flags: --expose_internals
+// Flags: --expose-internals
require('../common');
const assert = require('assert');