mirror of https://github.com/nodejs/node.git
test-cluster-worker-kill: use SIGKILL instead of SIGHUP
In this test sending SIGKILL has the same effect as sending SIGHUP, but SIGKILL has the advantage that it works on Windows too.pull/24503/head
parent
3795d77113
commit
7a4dfb6aa8
|
@ -21,7 +21,7 @@
|
|||
|
||||
|
||||
// test-cluster-worker-kill.js
|
||||
// verifies that, when a child process is killed (we use SIGHUP)
|
||||
// verifies that, when a child process is killed (we use SIGKILL)
|
||||
// - the parent receives the proper events in the proper order, no duplicates
|
||||
// - the exitCode and signalCode are correct in the 'exit' event
|
||||
// - the worker.suicide flag, and worker.state are correct
|
||||
|
@ -40,7 +40,7 @@ if (cluster.isWorker) {
|
|||
|
||||
} else if (cluster.isMaster) {
|
||||
|
||||
var KILL_SIGNAL = 'SIGHUP',
|
||||
var KILL_SIGNAL = 'SIGKILL',
|
||||
expected_results = {
|
||||
cluster_emitDisconnect: [1, "the cluster did not emit 'disconnect'"],
|
||||
cluster_emitExit: [1, "the cluster did not emit 'exit'"],
|
||||
|
|
Loading…
Reference in New Issue