blob: 2dccd6331360b46d4e29350be871e83b6eb9bd91 [file] [log] [blame]
Dan Liew75742412015-12-27 14:03:49 +00001# RUN: %{python} %s
2from __future__ import print_function
3
4import time
5import sys
6
7print("Running slow program")
8sys.stdout.flush() # Make sure the print gets flushed so it appears in lit output.
9time.sleep(6)