git: aa05775ef014 - main - tests/sys/net/if_lagg_test: Fix syntax error

Alex Richardson arichardson at FreeBSD.org
Mon Mar 22 12:00:25 UTC 2021


The branch main has been updated by arichardson:

URL: https://cgit.FreeBSD.org/src/commit/?id=aa05775ef014f975e3abb04587770e337d8ac5b3

commit aa05775ef014f975e3abb04587770e337d8ac5b3
Author:     Alex Richardson <arichardson at FreeBSD.org>
AuthorDate: 2021-03-22 10:30:41 +0000
Commit:     Alex Richardson <arichardson at FreeBSD.org>
CommitDate: 2021-03-22 11:55:06 +0000

    tests/sys/net/if_lagg_test: Fix syntax error
    
    Fixes:  ee231b27ff ("Also skip sys/net/if_lagg_test:witness on non-i386")
---
 tests/sys/net/if_lagg_test.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/sys/net/if_lagg_test.sh b/tests/sys/net/if_lagg_test.sh
index 5aed9fd7c61b..1c9cc5551ae3 100755
--- a/tests/sys/net/if_lagg_test.sh
+++ b/tests/sys/net/if_lagg_test.sh
@@ -402,7 +402,7 @@ witness_head()
 }
 witness_body()
 {
-	if [ "$(atf_config_get ci false)" = "true" ] && \
+	if [ "$(atf_config_get ci false)" = "true" ]; then
 		atf_skip "https://bugs.freebsd.org/244163 and https://bugs.freebsd.org/251726"
 	fi
 	if [ `sysctl -n debug.witness.watch` -ne 1 ]; then


More information about the dev-commits-src-main mailing list