summaryrefslogtreecommitdiff
path: root/buildbot/buildbot-source/build/lib/buildbot/test/sleep.py
blob: 48adc39b2694c69233282b91ed5514937f66cd1b (plain)
1
2
3
4
5
6
7
8
9
#! /usr/bin/python

import sys, time
delay = int(sys.argv[1])

sys.stdout.write("sleeping for %d seconds\n" % delay)
time.sleep(delay)
sys.stdout.write("woke up\n")
sys.exit(0)