[tor-commits] [ooni-probe/master] Disabled test_pushFilenameStack, because it's failing in travis

art at torproject.org art at torproject.org
Tue Apr 30 13:01:44 UTC 2013


commit 2c80cebaa2f2e1421756e123e3922163cc85e765
Author: Arturo Filastò <art at fuffa.org>
Date:   Mon Apr 22 18:19:36 2013 +0200

    Disabled test_pushFilenameStack, because it's failing in travis
---
 ooni/tests/disabled_test_utils.py |   21 +++++++++++++++++++++
 ooni/tests/test_utils.py          |   21 ---------------------
 2 files changed, 21 insertions(+), 21 deletions(-)

diff --git a/ooni/tests/disabled_test_utils.py b/ooni/tests/disabled_test_utils.py
new file mode 100644
index 0000000..cafb00f
--- /dev/null
+++ b/ooni/tests/disabled_test_utils.py
@@ -0,0 +1,21 @@
+import os
+import unittest
+from ooni.utils import pushFilenameStack
+basefilename = os.path.abspath('dummyfile')
+class TestUtils(unittest.TestCase):
+    def test_pushFilenameStack(self):
+        f = open(basefilename, "w+")
+        f.write("0\n")
+        f.close()
+        for i in xrange(1, 5):
+            f = open(basefilename+".%s" % i, "w+")
+            f.write("%s\n" % i)
+            f.close()
+
+        pushFilenameStack(basefilename)
+        for i in xrange(1, 5):
+            f = open(basefilename+".%s" % i)
+            c = f.readlines()[0].strip()
+            self.assertEqual(str(i-1), str(c))
+            f.close()
+
diff --git a/ooni/tests/test_utils.py b/ooni/tests/test_utils.py
deleted file mode 100644
index cafb00f..0000000
--- a/ooni/tests/test_utils.py
+++ /dev/null
@@ -1,21 +0,0 @@
-import os
-import unittest
-from ooni.utils import pushFilenameStack
-basefilename = os.path.abspath('dummyfile')
-class TestUtils(unittest.TestCase):
-    def test_pushFilenameStack(self):
-        f = open(basefilename, "w+")
-        f.write("0\n")
-        f.close()
-        for i in xrange(1, 5):
-            f = open(basefilename+".%s" % i, "w+")
-            f.write("%s\n" % i)
-            f.close()
-
-        pushFilenameStack(basefilename)
-        for i in xrange(1, 5):
-            f = open(basefilename+".%s" % i)
-            c = f.readlines()[0].strip()
-            self.assertEqual(str(i-1), str(c))
-            f.close()
-





More information about the tor-commits mailing list