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