summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/luv/tests/test-signal.lua
blob: c05db77c888e1320b35a9c2589607c28ffa2eee2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
local child_code = string.dump(function ()
  local uv = require('luv')
  local signal = uv.new_signal()
  uv.ref(signal)
  uv.signal_start(signal, "sigint", function ()
    uv.unref(signal)
  end)
  uv.run()
  os.exit(7)
end)

return require('lib/tap')(function (test)

  if _G.isWindows then return end

  test("Catch SIGINT", function (print, p, expect, uv)
    local child, pid
    local input = uv.new_pipe(false)
    child, pid = assert(uv.spawn(uv.exepath(), {
      args = {"-"},
      -- cwd = uv.cwd(),
      stdio = {input,1,2}
    }, expect(function (code, signal)
      p("exit", {pid=pid,code=code,signal=signal})
      assert(code == 7)
      assert(signal == 0)
      uv.close(input)
      uv.close(child)
    end)))
    uv.write(input, child_code)
    uv.shutdown(input)
    local timer = uv.new_timer()
    uv.timer_start(timer, 200, 0, expect(function ()
      print("Sending child SIGINT")
      uv.process_kill(child, "sigint")
      uv.close(timer)
    end))
  end)

end)