Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(245)

Unified Diff: slowwwww.py

Issue 2297663002: bot_update: add debug output if GCLIENT_KILL_GIT_FETCH_AFTER. (Closed)
Patch Set: actually WAI on top of this CL deps. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gclient_scm.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: slowwwww.py
diff --git a/slowwwww.py b/slowwwww.py
new file mode 100644
index 0000000000000000000000000000000000000000..5054fff4889822f9c0963b25c88ea8fadf3430ec
--- /dev/null
+++ b/slowwwww.py
@@ -0,0 +1,25 @@
+import time
+import sys
+import logging
+
+FORMAT='%(asctime)s - %(process)s - %(name)s - %(levelname)s - %(message)s'
+logging.basicConfig(
+ level=logging.DEBUG, format=FORMAT, stream=sys.stdout)
+
+if '--spawn' in sys.argv:
+ logging.warn('tan: spwaning')
+ sys.stdout.flush()
+ import subprocess
+ subprocess.call(
+ ['python', '/usr/local/google/home/tandrii/bin/depot_tools/slowwwww.py'],
+ stderr=subprocess.PIPE)
+ logging.warn('tan: finished!')
+ sys.stdout.flush()
+else:
+ logging.info('tan: sleeping')
+ sys.stdout.flush()
+ for i in xrange(6):
+ time.sleep(3)
+ logging.debug('tan: sleep partial %d', i)
+ logging.info('tan: sleeping no more.')
+ sys.stdout.flush()
« no previous file with comments | « gclient_scm.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698