aboutsummaryrefslogtreecommitdiff
path: root/llvm/utils/lit/tests/check-tested-lit-timeout-ability
blob: 3b8dc139052157454636264705f6c254926f4f14 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/python3

import sys
from lit.util import killProcessAndChildrenIsSupported

supported, errormsg = killProcessAndChildrenIsSupported()

if not supported:
    sys.exit(errormsg)

sys.exit()