moving former sanity tests into system/hooks + iterating
[tests.git] / qaapi / qa / tests / node / _busyloop.py
diff --git a/qaapi/qa/tests/node/_busyloop.py b/qaapi/qa/tests/node/_busyloop.py
deleted file mode 100755 (executable)
index 8cff8a5..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/python
-
-import sys
-import time
-
-def main(sec):                         
-    now = time.time()
-    stop = now + float(sec)
-    print 'about to busy-wait for', sec, 'seconds'
-    while now < stop:
-        now = time.time()
-
-if __name__ == "__main__":
-    main(sys.argv[1])