xref: /aosp_15_r20/external/llvm/utils/lit/tests/Inputs/shtest-timeout/slow.py (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1# 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)
10