chiark / gitweb /
Avoid play.py looping indefinitely.
authorRichard Kettlewell <rjk@greenend.org.uk>
Mon, 2 Jun 2008 14:06:30 +0000 (15:06 +0100)
committerRichard Kettlewell <rjk@greenend.org.uk>
Mon, 2 Jun 2008 14:06:30 +0000 (15:06 +0100)
tests/dtest.py
tests/play.py

index 5eac2ea6ba519f652cb17d95ba803e008bf6cf3a..be454354b3e2a799c19c0262be043b715d0c2442 100644 (file)
@@ -313,6 +313,7 @@ def run(module=None, report=True):
         if type(module) == str:
             module = __import__(module)
         name = module.__name__
+    print "--- %s ---" % name
     # Open the error log
     global errs
     logfile = "%s.log" % name
index 0013d7e3e62b420d4c0b496ffa3d598e1a2c0000..c298ce514656403f6133de31f13b38e3abcc2fec 100755 (executable)
@@ -18,7 +18,7 @@
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 # USA
 #
-import dtest,time,disorder,re
+import dtest,time,disorder,re,sys
 
 def test():
     """Play some tracks"""
@@ -66,7 +66,9 @@ def test():
 
     print " testing scratches"
     retry = False
-    while True:
+    scratchlimit = 5
+    while scratchlimit > 0:
+        scratchlimit -= 1
         c.disable()
         print " starting a track"
         c.play(track)
@@ -95,6 +97,10 @@ def test():
             continue
         assert ts[0]['state'] == 'scratched', "checking track scratched"
         break
+    if scratchlimit == 0:
+        # TODO this is really not a great approach!
+        print " didn't complete in a reasonable time"
+        sys.exit(77)
     print " waiting for scratch to complete"
     p = c.recent()
     while p is not None: