search for: skipunlessarchmatch

Displaying 3 results from an estimated 3 matches for "skipunlessarchmatch".

Did you mean: skipunlessarchmatches
2016 Mar 24
1
Malformed XML if LIBGUESTFS_HV is defined.
I was going to post this as a patch, but I realize the patch is just working around an actual bug in the libvirt backend [not in libvirt]. Anyway, posting it here so we don't forget about it. Rich.
2016 May 04
9
[PATCH 0/8] python: PEP 8 fixes
Hi, this series cleans up the Python sources, either static or generated, including also tests, to make them PEP 8 compliant; see https://www.python.org/dev/peps/pep-0008/ and tools like pep8. Almost all the issues reported by pep8 are fixed, reducing the issues from 3818 to 7. The changes should have no effect on the actual code, while it will help Python users with consistency with other
2016 Feb 22
3
[PATCH 1/3] python: tests: refactor to use unittest's discovery
...t SELinux relabelling code doesn't regress. +# See: https://bugzilla.redhat.com/912499#c10 +# https://bugzilla.redhat.com/1075164#c7 + +from subprocess import check_output +import unittest +import random +import string +import os +import sys +import guestfs +from .tests_helper import * + +@skipUnlessArchMatches ("(i.86|x86_64)") # If the architecture doesn't support IDE, skip the test. +@skipUnlessGuestfsBackendIs ('libvirt') +@skipUnlessLibirtHasCPointer () +class Test820RHBZ912499 (unittest.TestCase): + def setUp (self): + # Create a test disk. + self.filename...