aboutsummaryrefslogtreecommitdiff
path: root/deprecated/produce_output.py
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2021-06-17 19:05:20 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2021-06-17 19:05:20 +0000
commit1fc276040d574012e4f46891409fa93b6f0fec11 (patch)
tree73936aba47fe1dc71e9cc05af9747036e935608c /deprecated/produce_output.py
parentb75f321fc8978b92ce3db6886ccb966768f0c7a8 (diff)
parent4e4201457e5f51a132101c611c79ccff9f713c8b (diff)
downloadtoolchain-utils-android12-mainline-mediaprovider-release.tar.gz
Change-Id: I025bd1851bc27970c5b4ef6a391e3e8edb26d9b4
Diffstat (limited to 'deprecated/produce_output.py')
-rwxr-xr-xdeprecated/produce_output.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/deprecated/produce_output.py b/deprecated/produce_output.py
deleted file mode 100755
index 46512c49..00000000
--- a/deprecated/produce_output.py
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/usr/bin/env python2
-#
-# Copyright 2010 Google Inc. All Rights Reserved.
-"""This simulates a real job by producing a lot of output."""
-
-from __future__ import print_function
-
-__author__ = 'asharif@google.com (Ahmad Sharif)'
-
-import time
-
-
-def Main():
- """The main function."""
-
- for j in range(10):
- for i in range(10000):
- print(str(j) + 'The quick brown fox jumped over the lazy dog.' + str(i))
- time.sleep(60)
-
- return 0
-
-
-if __name__ == '__main__':
- Main()