summaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/lifecycle-signal.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/test/tap/lifecycle-signal.js')
-rw-r--r--deps/npm/test/tap/lifecycle-signal.js7
1 files changed, 0 insertions, 7 deletions
diff --git a/deps/npm/test/tap/lifecycle-signal.js b/deps/npm/test/tap/lifecycle-signal.js
index 9d88fbd79b..ee56e9afc5 100644
--- a/deps/npm/test/tap/lifecycle-signal.js
+++ b/deps/npm/test/tap/lifecycle-signal.js
@@ -13,13 +13,6 @@ test("lifecycle signal abort", function (t) {
cwd: pkg
})
child.on("close", function (code, signal) {
- // GNU shell returns a code, no signal
- if (process.platform === "linux") {
- t.equal(code, 1)
- t.equal(signal, null)
- return t.end()
- }
-
t.equal(code, null)
t.equal(signal, "SIGSEGV")
t.end()