All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/8] auto-t: remove waitstatus_to_exitcode for better compatibility
@ 2022-03-22 22:51 James Prestwood
  0 siblings, 0 replies; only message in thread
From: James Prestwood @ 2022-03-22 22:51 UTC (permalink / raw)
  To: iwd

[-- Attachment #1: Type: text/plain, Size: 843 bytes --]

This was added in Python 3.9 which isn't always supported. Instead use
the old way of checking the return status.
---
 autotests/testNetconfig/connection_test.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/autotests/testNetconfig/connection_test.py b/autotests/testNetconfig/connection_test.py
index 8eeffbbd..17788011 100644
--- a/autotests/testNetconfig/connection_test.py
+++ b/autotests/testNetconfig/connection_test.py
@@ -41,7 +41,8 @@ class Test(unittest.TestCase):
 
         time.sleep(2)
         ret = os.system('ip addr show ' + device.name + ' | grep \'inet6 3ffe:501:ffff:100::\'')
-        self.assertEqual(os.waitstatus_to_exitcode(ret), 0)
+        self.assertTrue(os.WIFEXITED(ret))
+        self.assertEqual(os.WEXITSTATUS(ret), 0)
 
         device.disconnect()
 
-- 
2.34.1

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

only message in thread, other threads:[~2022-03-22 22:51 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-22 22:51 [PATCH 1/8] auto-t: remove waitstatus_to_exitcode for better compatibility James Prestwood

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.