Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/pummel/test-repl-empty-maybelocal-crash.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/pummel/test-repl-empty-maybelocal-crash.js b/test/pummel/test-repl-empty-maybelocal-crash.js
deleted file mode 100644
index c2428508bef..00000000000
--- a/test/pummel/test-repl-empty-maybelocal-crash.js
+++ /dev/null
@@ -1,20 +0,0 @@
-'use strict';
-const common = require('../common');
-
-if (common.isPi) {
- common.skip('Too slow for Raspberry Pi devices');
-}
-
-// The process should not crash when the REPL receives the string, 'ss'.
-// Test for https://github.com/nodejs/node/issues/42407.
-
-const repl = require('repl');
-
-const r = repl.start();
-
-r.write('var buf = Buffer.from({length:200e6},(_,i) => i%256);\n');
-r.write('var ss = buf.toString("binary");\n');
-r.write('ss');
-r.write('.');
-
-r.close();