llvm-project/llvm/utils/lit/tests/check-tested-lit-timeout-ab...

12 lines
199 B
Python
Executable File

#!/usr/bin/python3
import sys
from lit.util import killProcessAndChildrenIsSupported
supported, errormsg = killProcessAndChildrenIsSupported()
if not supported:
sys.exit(errormsg)
sys.exit()