]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
test-network: check one more rule we configure 34110/head
authorYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 22 Aug 2024 19:30:02 +0000 (04:30 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Fri, 23 Aug 2024 14:57:17 +0000 (23:57 +0900)
test/test-network/systemd-networkd-tests.py

index 180db8bde914de8b31073d1da96d99009eb36c2f..04ababe827958fef6574cc89b48aa96e32d30b33 100755 (executable)
@@ -3225,6 +3225,10 @@ class NetworkdNetworkTests(unittest.TestCase, Utilities):
         print(output)
         self.assertIn('101:    from all iif test1 lookup 9', output)
 
+        output = check_output('ip -6 rule list iif test1 priority 101')
+        print(output)
+        self.assertIn('101:    from all iif test1 lookup 9', output)
+
         output = check_output('ip rule list iif test1 priority 102')
         print(output)
         self.assertIn('102:    from 0.0.0.0/8 iif test1 lookup 10', output)