diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2020-02-06 12:05:16 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2020-02-07 05:30:40 +0100 |
commit | e2c4070edfb07edbdec5ef41d72a2229db9bcf1b (patch) | |
tree | 5d9749ff3e36127847d9f8e708020a576ffd9238 /test/test-network/systemd-networkd-tests.py | |
parent | chromiumos: sync auto suspend rules with chromeos commit e348a229bacc3 (diff) | |
download | systemd-e2c4070edfb07edbdec5ef41d72a2229db9bcf1b.tar.xz systemd-e2c4070edfb07edbdec5ef41d72a2229db9bcf1b.zip |
network: rename eui64 to static
See RFC 4291.
Follow-up for 5f506a55606fed9fd74b851a18f15a9835a26d08.
Diffstat (limited to '')
-rwxr-xr-x | test/test-network/systemd-networkd-tests.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test-network/systemd-networkd-tests.py b/test/test-network/systemd-networkd-tests.py index 454b00889d..19e3634ae6 100755 --- a/test/test-network/systemd-networkd-tests.py +++ b/test/test-network/systemd-networkd-tests.py @@ -2645,7 +2645,7 @@ class NetworkdRATests(unittest.TestCase, Utilities): '25-veth.netdev', 'ipv6-prefix.network', 'ipv6-prefix-veth.network', - 'ipv6-prefix-veth-token-eui64.network', + 'ipv6-prefix-veth-token-static.network', 'ipv6-prefix-veth-token-prefixstable.network'] def setUp(self): @@ -2671,8 +2671,8 @@ class NetworkdRATests(unittest.TestCase, Utilities): print(output) self.assertRegex(output, '2002:da8:1:0') - def test_ipv6_token_eui64(self): - copy_unit_to_networkd_unit_path('25-veth.netdev', 'ipv6-prefix.network', 'ipv6-prefix-veth-token-eui64.network') + def test_ipv6_token_static(self): + copy_unit_to_networkd_unit_path('25-veth.netdev', 'ipv6-prefix.network', 'ipv6-prefix-veth-token-static.network') start_networkd() self.wait_online(['veth99:routable', 'veth-peer:degraded']) |