[Python-checkins] cpython (3.3): Issue #19588: Fixed tests in test_random that were silently skipped most

zach.ware python-checkins at python.org
Tue Nov 26 21:59:20 CET 2013


http://hg.python.org/cpython/rev/c65882d79c5f
changeset:   87597:c65882d79c5f
branch:      3.3
parent:      87591:8662734296a0
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Tue Nov 26 14:50:10 2013 -0600
summary:
  Issue #19588: Fixed tests in test_random that were silently skipped most
of the time.  Patch by Julian Gindi.

files:
  Lib/test/test_random.py |  12 ++++++------
  Misc/ACKS               |   1 +
  Misc/NEWS               |   3 +++
  3 files changed, 10 insertions(+), 6 deletions(-)


diff --git a/Lib/test/test_random.py b/Lib/test/test_random.py
--- a/Lib/test/test_random.py
+++ b/Lib/test/test_random.py
@@ -194,10 +194,10 @@
 
     def test_bigrand_ranges(self):
         for i in [40,80, 160, 200, 211, 250, 375, 512, 550]:
-            start = self.gen.randrange(2 ** i)
-            stop = self.gen.randrange(2 ** (i-2))
+            start = self.gen.randrange(2 ** (i-2))
+            stop = self.gen.randrange(2 ** i)
             if stop <= start:
-                return
+                continue
             self.assertTrue(start <= self.gen.randrange(start, stop) < stop)
 
     def test_rangelimits(self):
@@ -357,10 +357,10 @@
 
     def test_bigrand_ranges(self):
         for i in [40,80, 160, 200, 211, 250, 375, 512, 550]:
-            start = self.gen.randrange(2 ** i)
-            stop = self.gen.randrange(2 ** (i-2))
+            start = self.gen.randrange(2 ** (i-2))
+            stop = self.gen.randrange(2 ** i)
             if stop <= start:
-                return
+                continue
             self.assertTrue(start <= self.gen.randrange(start, stop) < stop)
 
     def test_rangelimits(self):
diff --git a/Misc/ACKS b/Misc/ACKS
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -435,6 +435,7 @@
 Jonathan Giddy
 Johannes Gijsbers
 Michael Gilfix
+Julian Gindi
 Yannick Gingras
 Matt Giuca
 Wim Glenn
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -65,6 +65,9 @@
 Tests
 -----
 
+- Issue #19588: Fixed tests in test_random that were silently skipped most
+  of the time.  Patch by Julian Gindi.
+
 - Issue #19596: Set untestable tests in test_importlib to None to avoid
   reporting success on empty tests.
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list