aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/libposix/posix004.hs
blob: de1ec743d4c3799234d3cb4fe07b7749a1e0c510 (plain)
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
41
42
43
44

import System.Exit (ExitCode(..), exitWith)
import System.Posix.Process
import System.Posix.Signals

main = do test1
          test2
          test3
          test4
          putStrLn "I'm happy."

test1 = do
    forkProcess $ raiseSignal floatingPointException
    Just (pid, tc) <- getAnyProcessStatus True False
    case tc of
        Terminated sig _ | sig == floatingPointException -> return ()
        _ -> error "unexpected termination cause"

test2 = do
    forkProcess $ exitImmediately (ExitFailure 42)
    Just (pid, tc) <- getAnyProcessStatus True False
    case tc of
        Exited (ExitFailure 42) -> return ()
        _ -> error "unexpected termination cause (2)"

test3 = do
    forkProcess $ exitImmediately ExitSuccess
    Just (pid, tc) <- getAnyProcessStatus True False
    case tc of
        Exited ExitSuccess -> return ()
        _ -> error "unexpected termination cause (3)"

test4 = do
    forkProcess $ raiseSignal softwareStop
    Just (pid, tc) <- getAnyProcessStatus True True
    case tc of
        Stopped sig | sig == softwareStop -> do
            signalProcess killProcess pid
            Just (pid, tc) <- getAnyProcessStatus True True
            case tc of
                Terminated sig _ | sig == killProcess -> return ()
                _ -> error "unexpected termination cause (5)"
        _ -> error "unexpected termination cause (4)"