Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/buildbot/buildbot/test/sleep.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildbot/buildbot/test/sleep.py')
-rw-r--r--buildbot/buildbot/test/sleep.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/buildbot/buildbot/test/sleep.py b/buildbot/buildbot/test/sleep.py
deleted file mode 100644
index 4662852..0000000
--- a/buildbot/buildbot/test/sleep.py
+++ /dev/null
@@ -1,8 +0,0 @@
-
-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)