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
path: root/test
diff options
context:
space:
mode:
authorDarshan Sen <raisinten@gmail.com>2022-04-13 17:16:13 +0300
committerBeth Griggs <bgriggs@redhat.com>2022-04-14 22:32:29 +0300
commit19064bec341185a8c15fc438cfcf0df8633a179e (patch)
tree527bbba7023841f99dd8f1d35652ac620f3a9c96 /test
parentaa88e5e4b90af1f16ece3250fbb840e3790c5c81 (diff)
test: delete test/pummel/test-repl-empty-maybelocal-crash.js
It was disconnecting the runners from the CI server. Not worth having a resource-intensive test for this kind of an edge cases. Fixes: https://github.com/nodejs/node/issues/42719 Signed-off-by: Darshan Sen <raisinten@gmail.com> PR-URL: https://github.com/nodejs/node/pull/42720 Fixes: https://github.com/nodejs/node/issues/42719 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Beth Griggs <bgriggs@redhat.com> Reviewed-By: Stewart X Addison <sxa@redhat.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to 'test')
-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();