/
githubmirror
/
libnet
Обзор
Документация
Войти
/
githubmirror
/
libnet
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v1.3
test/setup.sh
16 строк
399 B
Joachim Wiberg
test: follow-up to
7a14026
, fix macOS 'make check'
01 окт 2023, 19:40
01 окт 2023, 19:40
cdda3af
Код
Авторство
О чём код?
#!/bin/sh # Set up a virtual world in an unshare for the unit tests to run in. # http://staskobzar.blogspot.com/2017/04/test-anything-protocol-tap-with.html export CMOCKA_MESSAGE_OUTPUT=TAP if [ $(uname) = Linux ]; then ip link add eth0 type dummy ip link set eth0 up ip link set lo up ip addr add 192.168.2.200/24 dev eth0 ip route add default via 192.168.2.1 fi exec "$@"