xref: /netbsd-src/external/apache2/llvm/dist/llvm/utils/lit/tests/check-tested-lit-timeout-ability (revision 82d56013d7b633d116a93943de88e08335357a7c)
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