xref: /aosp_15_r20/kernel/tests/net/test/ping6_test.sh (revision 2f2c4c7ab4226c71756b9c31670392fdd6887c4f)
1#!/bin/bash
2
3# Minimal network initialization.
4ip link set eth0 up
5
6# Wait for autoconf and DAD to complete.
7sleep 3 &
8
9# Block on starting DHCPv4.
10udhcpc -i eth0
11
12# If DHCPv4 took less than 3 seconds, keep waiting.
13wait
14
15# Run the test.
16$(dirname $0)/ping6_test.py
17