mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Signed-off-by: Fiona Klute (WIWA) <fiona.klute@gmx.de> [Julien: - reword commit log title - replace python '%' formatting with '+' concatenation - remove IP address assertion in test controller as it is already in sample script ] Signed-off-by: Julien Olivain <ju.o@free.fr>
17 lines
331 B
Python
17 lines
331 B
Python
from pyroute2 import IPRoute
|
|
|
|
|
|
def test_ipr():
|
|
with IPRoute() as ipr:
|
|
lo = ipr.link('get', ifname='lo')[0]
|
|
a = [
|
|
dict(a['attrs'])['IFA_ADDRESS']
|
|
for a in ipr.get_addr(index=lo['index'])
|
|
]
|
|
print(repr(a))
|
|
assert '127.0.0.1' in a
|
|
|
|
|
|
if __name__ == '__main__':
|
|
test_ipr()
|