search for: rhbz811650

Displaying 5 results from an estimated 5 matches for "rhbz811650".

Did you mean: rhbz811649
2016 Feb 12
2
[PATCH] python: tests: use more targeted assert*() functions/checks
...d of checking type and elements of the return values just check the return value as a whole (easier and already getting all the work needed by unittest) --- python/t/080-version.py | 6 +++--- python/t/420-log-messages.py | 2 +- python/t/800-explicit-close.py | 6 +----- python/t/810-rhbz811650.py | 5 +---- python/t/820-rhbz912499.py | 2 +- python/t/900-python-dict.py | 9 +-------- 6 files changed, 8 insertions(+), 22 deletions(-) diff --git a/python/t/080-version.py b/python/t/080-version.py index e8e1e25..cda4872 100644 --- a/python/t/080-version.py +++ b/python/t/080-ver...
2016 Feb 22
3
[PATCH 1/3] python: tests: refactor to use unittest's discovery
...-retvalues.py | 138 --------------------------------------- python/t/100-launch.py | 37 ----------- python/t/410-close-event.py | 41 ------------ python/t/420-log-messages.py | 57 ---------------- python/t/800-explicit-close.py | 57 ---------------- python/t/810-rhbz811650.py | 40 ------------ python/t/820-rhbz912499.py | 118 --------------------------------- python/t/910-libvirt.py | 52 --------------- python/t/__init__.py | 0 python/t/test010Load.py | 22 +++++++ python/t/test070OptArgs.py | 36 ++++++++++ p...
2016 May 04
9
[PATCH 0/8] python: PEP 8 fixes
...25 +++---- python/t/test090RetValues.py | 142 ++++++++++++++++++------------------- python/t/test100Launch.py | 25 +++---- python/t/test410CloseEvent.py | 18 ++--- python/t/test420LogMessages.py | 30 ++++---- python/t/test800ExplicitClose.py | 30 ++++---- python/t/test810RHBZ811650.py | 17 ++--- python/t/test820RHBZ912499.py | 58 ++++++++-------- python/t/test910Libvirt.py | 17 ++--- python/t/tests_helper.py | 30 ++++---- tests/http/test-http.py | 143 +++++++++++++++++++------------------- 19 files changed, 473 insertions(+), 403 deletion...
2014 Jan 28
11
[PATCH 00/10] New API: disk-create for creating blank disks.
A lot of code runs 'qemu-img create' or 'truncate' to create blank disk images. In the past I resisted adding an API to do this, since it essentially duplicates what you can already do using other tools (ie. qemu-img). However this does simplify calling code quite a lot since qemu-img is somewhat error-prone to use (eg: don't try to create a disk called "foo:bar")
2012 Jul 14
6
[PATCH 0/6] Allow non-optargs functions to gain optional arguments.
This rather complex set of patches allow non-optargs functions to gain optional arguments, while preserving source and binary backwards compatibility. The problem is that we cannot add an optional argument to an existing function. For example, we might want to add flags to the 'lvresize' API which currently has no optional arguments.