diff options
Diffstat (limited to 'user/ifupdown-ng/tunnel-test.patch')
-rw-r--r-- | user/ifupdown-ng/tunnel-test.patch | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/user/ifupdown-ng/tunnel-test.patch b/user/ifupdown-ng/tunnel-test.patch new file mode 100644 index 000000000..7ced0bacf --- /dev/null +++ b/user/ifupdown-ng/tunnel-test.patch @@ -0,0 +1,39 @@ +Shell behaviour changed, I guess? + +--- ifupdown-ng-0.12.1/tests/linux/tunnel_test.old 2022-04-18 16:27:21.000000000 +0000 ++++ ifupdown-ng-0.12.1/tests/linux/tunnel_test 2025-08-13 09:00:18.391795205 +0000 +@@ -17,9 +17,9 @@ + atf_check -s exit:0 \ + -o match:"ip -4 tunnel add tun0" \ + -o match:"mode gre" \ +- -o match:"ttl '255'" \ +- -o match:"local '1.2.3.4'" \ +- -o match:"remote '5.6.7.8'" \ ++ -o match:"ttl 255" \ ++ -o match:"local 1.2.3.4" \ ++ -o match:"remote 5.6.7.8" \ + ${EXECUTOR} + } + +@@ -39,8 +39,8 @@ + atf_check -s exit:0 \ + -o match:"ip -4 link add foo" \ + -o match:"type gretap" \ +- -o match:"local '1.2.3.4'" \ +- -o match:"remote '5.6.7.8'" \ ++ -o match:"local 1.2.3.4" \ ++ -o match:"remote 5.6.7.8" \ + ${EXECUTOR} + } + +@@ -58,8 +58,8 @@ + atf_check -s exit:0 \ + -o match:"ip -6 link add foo" \ + -o match:"type gretap" \ +- -o match:"local '2001:db8::aaaa'" \ +- -o match:"remote '2001:db8::eeee'" \ ++ -o match:"local 2001:db8::aaaa" \ ++ -o match:"remote 2001:db8::eeee" \ + ${EXECUTOR} + } + |