[llvm] [cmake] Add possibility to use ChooseMSVCCRT.cmake when include LLVM library
[llvm-core.git] / utils / lit / tests / Inputs / shtest-timeout / infinite_loop.py
blobc8ced24f29c52c3a5b699ad72da250ff394656ea
1 # RUN: %{python} %s
2 from __future__ import print_function
4 import sys
6 print("Running infinite loop")
7 sys.stdout.flush() # Make sure the print gets flushed so it appears in lit output.
8 while True:
9 pass