All of lore.kernel.org
 help / color / mirror / Atom feed
* main - lvmdbustest: Add env. variable to skip signal testing
@ 2023-03-10 18:52 Tony Asleson
  0 siblings, 0 replies; only message in thread
From: Tony Asleson @ 2023-03-10 18:52 UTC (permalink / raw)
  To: lvm-devel

Gitweb:        https://sourceware.org/git/?p=lvm2.git;a=commitdiff;h=1c550d7124d4bc1954f7d1d7efc372e1d996b570
Commit:        1c550d7124d4bc1954f7d1d7efc372e1d996b570
Parent:        f8876290bfc8d11400901e9eac32f6d613b0ed70
Author:        Tony Asleson <tasleson@redhat.com>
AuthorDate:    Fri Mar 10 10:43:02 2023 -0600
Committer:     Tony Asleson <tasleson@redhat.com>
CommitterDate: Fri Mar 10 12:51:53 2023 -0600

lvmdbustest: Add env. variable to skip signal testing

This is currently need if we are collecting code coverage data as we don't
handle this unit test correctly.
---
 test/dbus/lvmdbustest.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/test/dbus/lvmdbustest.py b/test/dbus/lvmdbustest.py
index b7224df96..e1c994e90 100755
--- a/test/dbus/lvmdbustest.py
+++ b/test/dbus/lvmdbustest.py
@@ -2347,6 +2347,9 @@ class TestDbusService(unittest.TestCase):
 
 	def test_z_sigint(self):
 		# Issue SIGINT while daemon is processing work to ensure we shut down.
+		if not bool(int(os.getenv("LVM_DBUSD_TEST_SKIP_SIGNAL", "0"))):
+			raise unittest.SkipTest("Skipping as env. LVM_DBUSD_TEST_SKIP_SIGNAL is '0'")
+
 		di = DaemonInfo.get()
 		self.assertTrue(di is not None)
 		if di:


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2023-03-10 18:52 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-10 18:52 main - lvmdbustest: Add env. variable to skip signal testing Tony Asleson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.