We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 955ef71 commit b9ab821Copy full SHA for b9ab821
test/test_locking.py
@@ -18,7 +18,7 @@
18
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
# SOFTWARE.
20
21
-# $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 $
22
23
import os, unittest, tempfile
24
@@ -29,7 +29,9 @@ def setUp(self):
29
self.path = tempfile.mktemp()
30
open(self.path, 'w').write('hi\n')
31
32
- def test_basics(self):
+ # XXX test disabled because it simply doesn't work on many platforms
33
+ # (Solaris and Irix are known to fail, but Linux works)
34
+ def xtest_basics(self):
35
f = acquire_lock(self.path)
36
try:
37
acquire_lock(self.path, block=0)
0 commit comments