diff options
author | 2025-05-22 15:33:18 +0200 | |
---|---|---|
committer | 2025-06-03 13:08:15 +0200 | |
commit | 9c7e8b31da035fe81399891b2630a8e0c4b09137 (patch) | |
tree | 89550221be27aa746813adb20080675cd472c680 | |
parent | selftest/net/ovpn: fix TCP socket creation (diff) | |
download | wireguard-linux-9c7e8b31da035fe81399891b2630a8e0c4b09137.tar.xz wireguard-linux-9c7e8b31da035fe81399891b2630a8e0c4b09137.zip |
selftest/net/ovpn: fix missing file
test-large-mtu.sh is referenced by the Makefile
but does not exist.
Add it along the other scripts.
Fixes: 944f8b6abab6 ("selftest/net/ovpn: extend coverage with more test cases")
Signed-off-by: Antonio Quartulli <antonio@openvpn.net>
-rwxr-xr-x | tools/testing/selftests/net/ovpn/test-large-mtu.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/testing/selftests/net/ovpn/test-large-mtu.sh b/tools/testing/selftests/net/ovpn/test-large-mtu.sh new file mode 100755 index 000000000000..ce2a2cb64f72 --- /dev/null +++ b/tools/testing/selftests/net/ovpn/test-large-mtu.sh @@ -0,0 +1,9 @@ +#!/bin/bash +# SPDX-License-Identifier: GPL-2.0 +# Copyright (C) 2025 OpenVPN, Inc. +# +# Author: Antonio Quartulli <antonio@openvpn.net> + +MTU="1500" + +source test.sh |