mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
tests: lvmdbustest.py skip if g_tmo != 0
This test doesn't have any additional value when running when g_tmo != 0.
This commit is contained in:
parent
3430395c85
commit
f2edc96bb6
@ -2352,6 +2352,9 @@ class TestDbusService(unittest.TestCase):
|
||||
if bool(int(os.getenv("LVM_DBUSD_TEST_SKIP_SIGNAL", "0"))):
|
||||
raise unittest.SkipTest("Skipping as env. LVM_DBUSD_TEST_SKIP_SIGNAL is '1'")
|
||||
|
||||
if g_tmo != 0:
|
||||
raise unittest.SkipTest("Skipping for g_tmo != 0")
|
||||
|
||||
di = DaemonInfo.get()
|
||||
self.assertTrue(di is not None)
|
||||
if di:
|
||||
|
Loading…
Reference in New Issue
Block a user