1# RUN: %{python} %s 2from __future__ import print_function 3 4import time 5import sys 6 7print("Running infinite loop") 8sys.stdout.flush() # Make sure the print gets flushed so it appears in lit output. 9while True: 10 pass 11