~ubuntu-branches/ubuntu/utopic/buildbot/utopic-proposed

« back to all changes in this revision

Viewing changes to buildbot/test/sleep.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2006-04-15 21:20:08 UTC
  • Revision ID: james.westby@ubuntu.com-20060415212008-jfj53u29zl30jqi1
Tags: upstream-0.7.2
ImportĀ upstreamĀ versionĀ 0.7.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /usr/bin/python
 
2
 
 
3
import sys, time
 
4
delay = int(sys.argv[1])
 
5
 
 
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)