git ssb

4+

Dominic / scuttlebot



Commit 4d6529c78769b028dbd0726144e4fb67232d1796

Specify "SIGKILL" to pass Travis tests

Christian Bundy committed on 12/5/2018, 8:12:37 PM
Parent: 98073738664294ded7f111ec6d6a62529686182e

Files changed

test/bin.jschanged
test/bin.jsView
@@ -13,14 +13,14 @@
1313 var children = []
1414
1515 process.on('exit', function () {
1616 children.forEach(function (e) {
17- e.kill(9)
17+ e.kill('SIGKILL')
1818 })
1919 })
2020 process.on('SIGINT', function () {
2121 children.forEach(function (e) {
22- e.kill(9)
22+ e.kill('SIGKILL')
2323 })
2424 process.exit(1)
2525 })
2626
@@ -52,9 +52,9 @@
5252
5353 children.push(sh)
5454
5555 return function end () {
56- while(children.length) children.shift().kill(9)
56+ while(children.length) children.shift().kill('SIGKILL')
5757 }
5858 }
5959
6060 function try_often(times, opts, work, done) {

Built with git-ssb-web