Date: Fri, 18 Mar 2022 06:34:58 GMT From: Peter Holm <pho@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 314ebfa2e9c5 - main - stress2: Limit console warnings Message-ID: <202203180634.22I6Ywf0051258@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by pho: URL: https://cgit.FreeBSD.org/src/commit/?id=314ebfa2e9c55360fb2f8580a08b2d8e448bcc47 commit 314ebfa2e9c55360fb2f8580a08b2d8e448bcc47 Author: Peter Holm <pho@FreeBSD.org> AuthorDate: 2022-03-18 06:34:07 +0000 Commit: Peter Holm <pho@FreeBSD.org> CommitDate: 2022-03-18 06:34:07 +0000 stress2: Limit console warnings --- tools/test/stress2/misc/ifconfig.sh | 2 +- tools/test/stress2/misc/ifconfig2.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/test/stress2/misc/ifconfig.sh b/tools/test/stress2/misc/ifconfig.sh index 6359711a0445..7b3c7e317ec3 100755 --- a/tools/test/stress2/misc/ifconfig.sh +++ b/tools/test/stress2/misc/ifconfig.sh @@ -50,7 +50,7 @@ start=`date +%s` while [ $((`date +%s` - start)) -lt 300 ]; do for i in `jot 255`; do (ifconfig $if.$i create - ifconfig $if.$i inet 224.0.0.$i + ifconfig $if.$i inet 224.0.0.$i netmask 255.255.255.0 ifconfig $if.$i destroy) > /dev/null 2>&1 & done wait diff --git a/tools/test/stress2/misc/ifconfig2.sh b/tools/test/stress2/misc/ifconfig2.sh index 61abbab3dd54..273db43a329d 100755 --- a/tools/test/stress2/misc/ifconfig2.sh +++ b/tools/test/stress2/misc/ifconfig2.sh @@ -53,7 +53,7 @@ for i in `jot 5`; do done while [ -f $sync ]; do ifconfig $if.$i create - ifconfig $if.$i inet 224.0.0.$i + ifconfig $if.$i inet 224.0.0.$i netmask 255.255.255.0 ifconfig $if.$i destroy done ) > /dev/null 2>&1 &
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202203180634.22I6Ywf0051258>