more NEWS items
[buildbot.git] / buildbot / test / sleep.py
blob48adc39b2694c69233282b91ed5514937f66cd1b
1 #! /usr/bin/python
3 import sys, time
4 delay = int(sys.argv[1])
6 sys.stdout.write("sleeping for %d seconds\n" % delay)
7 time.sleep(delay)
8 sys.stdout.write("woke up\n")
9 sys.exit(0)