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:
authorSascha Silbe <sascha-org-sugar-git@silbe.org>2009-03-20 21:08:09 (GMT)
committer Sascha Silbe <sascha-org-sugar-git@silbe.org>2009-03-20 21:08:09 (GMT)
commite531658c078f58a0499de629eb1b6c950b969261 (patch)
treea1cdcf4c8d80305f7e11ea17e0942d50da371ed4 /buildbot/buildbot/test/sleep.py
parentbf3828896306f11454501db8acdba33aff6a1ae0 (diff)
use sugar-jhbuild to build buildbot instead of including it directly in the tree, so "sugar-jhbuild bot --setup" works
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)