xref: /llvm-project/llvm/utils/lit/tests/check-tested-lit-timeout-ability (revision d618c6e8ceb7e3f08631cd2e6669f9479cdca45d)
1#!/usr/bin/python3
2
3import sys
4from lit.util import killProcessAndChildrenIsSupported
5
6supported, errormsg = killProcessAndChildrenIsSupported()
7
8if not supported:
9    sys.exit(errormsg)
10
11sys.exit()
12