diff options
| author | Dan Prince <dprince@redhat.com> | 2012-06-13 10:11:04 -0400 |
|---|---|---|
| committer | Dan Prince <dprince@redhat.com> | 2012-06-14 12:45:20 -0400 |
| commit | f28731c1941e57b776b519783b0337e52e1484ab (patch) | |
| tree | 87b740d9ed8fee547d42753fae2db10121fad280 /nova/tests | |
| parent | 2adeb5a76d8376d3506f4c63ec73211bfa1e5cc0 (diff) | |
Add libvirt min version check.
Fixes LP Bug #1012689.
Change-Id: I91c0b7c41804b2b25026cbe672b9210c305dc29b
Diffstat (limited to 'nova/tests')
| -rw-r--r-- | nova/tests/fakelibvirt.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nova/tests/fakelibvirt.py b/nova/tests/fakelibvirt.py index 563677cca..3e4c63719 100644 --- a/nova/tests/fakelibvirt.py +++ b/nova/tests/fakelibvirt.py @@ -509,6 +509,9 @@ class Connection(object): if self._uri == 'qemu:///system': return 'QEMU' + def getLibVersion(self): + return 9007 + def getVersion(self): return 14000 |
