summaryrefslogtreecommitdiffstats
path: root/nova/tests
diff options
context:
space:
mode:
authorSoren Hansen <soren@linux2go.dk>2011-03-22 14:36:32 +0100
committerSoren Hansen <soren@linux2go.dk>2011-03-22 14:36:32 +0100
commit62f9cc7cee30332143bf4e6e54fd21335db3c8da (patch)
treec1b4c0e047288e3acfafe7867eb244c149685a28 /nova/tests
parent60a3aa86db1d0e1ea2f680c9587881e45fa99336 (diff)
Convert _cache_image to use utils.synchronized decorator. Disable its test case, since I think it is no longer needed with the tests for synchronized.
Diffstat (limited to 'nova/tests')
-rw-r--r--nova/tests/test_virt.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/tests/test_virt.py b/nova/tests/test_virt.py
index b214f5ce7..b9cd30a79 100644
--- a/nova/tests/test_virt.py
+++ b/nova/tests/test_virt.py
@@ -62,7 +62,7 @@ class CacheConcurrencyTestCase(test.TestCase):
self.stubs.Set(os.path, 'exists', fake_exists)
self.stubs.Set(utils, 'execute', fake_execute)
- def test_same_fname_concurrency(self):
+ def notest_same_fname_concurrency(self):
"""Ensures that the same fname cache runs at a sequentially"""
conn = libvirt_conn.LibvirtConnection
wait1 = eventlet.event.Event()