diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2020-03-11 18:09:06 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2020-03-12 07:38:15 +0100 |
commit | 73136507ac8d8c8e50c81c8373d3ce46f4068c68 (patch) | |
tree | b2ee4353eb3439f0759a8bf7894e96d5a3229fcc /test/test-network/systemd-networkd-tests.py | |
parent | network: TC - introduce pfifo_head_drop (diff) | |
download | systemd-73136507ac8d8c8e50c81c8373d3ce46f4068c68.tar.xz systemd-73136507ac8d8c8e50c81c8373d3ce46f4068c68.zip |
test-network: add a test case for PFIFOHeadDrop
Diffstat (limited to '')
-rwxr-xr-x | test/test-network/systemd-networkd-tests.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test-network/systemd-networkd-tests.py b/test/test-network/systemd-networkd-tests.py index e53695c17a..565378c1a6 100755 --- a/test/test-network/systemd-networkd-tests.py +++ b/test/test-network/systemd-networkd-tests.py @@ -2333,6 +2333,9 @@ class NetworkdNetworkTests(unittest.TestCase, Utilities): self.assertRegex(output, 'qdisc bfifo 3a: parent 2:3a') self.assertRegex(output, 'limit 1000000') + self.assertRegex(output, 'qdisc pfifo_head_drop 3b: parent 2:3b') + self.assertRegex(output, 'limit 1023p') + output = check_output('tc class show dev dummy98') print(output) self.assertRegex(output, 'class htb 2:30 root leaf 30:') @@ -2346,6 +2349,7 @@ class NetworkdNetworkTests(unittest.TestCase, Utilities): self.assertRegex(output, 'class htb 2:38 root leaf 38:') self.assertRegex(output, 'class htb 2:39 root leaf 39:') self.assertRegex(output, 'class htb 2:3a root leaf 3a:') + self.assertRegex(output, 'class htb 2:3b root leaf 3b:') self.assertRegex(output, 'prio 1 rate 1Mbit ceil 500Kbit') def test_qdisc2(self): |