Code

disable b0rken locking test
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 9 Dec 2002 02:51:46 +0000 (02:51 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 9 Dec 2002 02:51:46 +0000 (02:51 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1393 57a73879-2fb5-44c3-a270-3262357dd7e2

test/test_locking.py

index 0c27f03e4c7f57ab8dc8bdebea71f297f08cdb44..40756c7f5931e94add86a48ac0b00c62e02ef124 100644 (file)
@@ -18,7 +18,7 @@
 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 # SOFTWARE.
 
-# $Id: test_locking.py,v 1.2 2002-09-10 00:19:54 richard Exp $
+# $Id: test_locking.py,v 1.3 2002-12-09 02:51:46 richard Exp $
 
 import os, unittest, tempfile
 
@@ -29,7 +29,9 @@ class LockingTest(unittest.TestCase):
         self.path = tempfile.mktemp()
         open(self.path, 'w').write('hi\n')
 
-    def test_basics(self):
+    # XXX test disabled because it simply doesn't work on many platforms
+    # (Solaris and Irix are known to fail, but Linux works)
+    def xtest_basics(self):
         f = acquire_lock(self.path)
         try:
             acquire_lock(self.path, block=0)