mirror of
https://github.com/proot-me/proot.git
synced 2025-08-28 16:43:49 +02:00
10 lines
161 B
Bash
10 lines
161 B
Bash
#!/bin/sh
|
|
|
|
# Skip test when run on Travis, as it doesn't support IPv6
|
|
if [ "${TRAVIS}" ]; then
|
|
exit 125;
|
|
fi
|
|
|
|
cd sockets || exit 125
|
|
|
|
sh testtcpsocketipv6.sh
|