You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
var test = require("tap").test
|
|
|
|
var npm = require.resolve("../../bin/npm-cli.js")
|
|
|
|
var node = process.execPath
|
|
|
|
var spawn = require("child_process").spawn
|
|
|
|
var path = require("path")
|
|
|
|
var pkg = path.resolve(__dirname, "lifecycle-signal")
|
|
|
|
|
|
|
|
test("lifecycle signal abort", function (t) {
|
|
|
|
// windows does not use lifecycle signals, abort
|
|
|
|
if (process.platform === "win32") return t.end()
|
|
|
|
var child = spawn(node, [npm, "install"], {
|
|
|
|
cwd: pkg
|
|
|
|
})
|
|
|
|
child.on("close", function (code, signal) {
|
|
|
|
t.equal(code, null)
|
|
|
|
t.equal(signal, "SIGSEGV")
|
|
|
|
t.end()
|
|
|
|
})
|
|
|
|
})
|