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