1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-13 17:18:18 +03:00

Merge pull request #30445 from mrc0mmand/networkd-test-skip

Temporarily skip tests with known issues in the systemd-networkd test suite
This commit is contained in:
Yu Watanabe 2023-12-12 22:02:44 +09:00 committed by GitHub
commit b37e2261fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2621,9 +2621,10 @@ class NetworkdNetworkTests(unittest.TestCase, Utilities):
ip6_null_74=ip6_null_74, ip6_null_74=ip6_null_74,
) )
# nft set # nft set
self.check_nftset('addr4', r'10\.10\.1\.1') # FIXME: re-enable once https://github.com/systemd/systemd/issues/30427 is resolved
self.check_nftset('network4', r'10\.10\.1\.0/24') #self.check_nftset('addr4', r'10\.10\.1\.1')
self.check_nftset('ifindex', 'dummy98') #self.check_nftset('network4', r'10\.10\.1\.0/24')
#self.check_nftset('ifindex', 'dummy98')
self.teardown_nftset('addr4', 'network4', 'ifindex') self.teardown_nftset('addr4', 'network4', 'ifindex')
@ -3564,6 +3565,7 @@ class NetworkdNetworkTests(unittest.TestCase, Utilities):
print(output) print(output)
self.assertRegex(output, 'inet6 .* scope link') self.assertRegex(output, 'inet6 .* scope link')
@unittest.skip("Re-enable once https://github.com/systemd/systemd/issues/30056 is resolved")
def test_sysctl(self): def test_sysctl(self):
copy_networkd_conf_dropin('25-global-ipv6-privacy-extensions.conf') copy_networkd_conf_dropin('25-global-ipv6-privacy-extensions.conf')
copy_network_unit('25-sysctl.network', '12-dummy.netdev', copy_dropins=False) copy_network_unit('25-sysctl.network', '12-dummy.netdev', copy_dropins=False)