From: Breno Leitao <leitao@debian.org>
To: Matthieu Baerts <matttbe@kernel.org>
Cc: davem@davemloft.net, edumazet@google.com, kuba@kernel.org,
pabeni@redhat.com, liuhangbin@gmail.com, petrm@nvidia.com,
Shuah Khan <shuah@kernel.org>,
netdev@vger.kernel.org, Willem de Bruijn <willemb@google.com>,
David Wei <dw@davidwei.uk>,
open list <linux-kernel@vger.kernel.org>,
"open list:KERNEL SELFTEST FRAMEWORK"
<linux-kselftest@vger.kernel.org>
Subject: Re: [PATCH net-next v4] net: netconsole: selftests: Create a new netconsole selftest
Date: Fri, 16 Aug 2024 07:50:30 -0700 [thread overview]
Message-ID: <Zr9nNnAsqpmPnQOx@gmail.com> (raw)
In-Reply-To: <cd9473bb-36d5-4b62-8523-f9112dc176f2@kernel.org>
On Fri, Aug 16, 2024 at 04:02:51PM +0200, Matthieu Baerts wrote:
> Hi Breno,
>
> On 16/08/2024 15:24, Breno Leitao wrote:
> > Adds a selftest that creates two virtual interfaces, assigns one to a
> > new namespace, and assigns IP addresses to both.
> >
> > It listens on the destination interface using socat and configures a
> > dynamic target on netconsole, pointing to the destination IP address.
> >
> > The test then checks if the message was received properly on the
> > destination interface.
> >
> > Signed-off-by: Breno Leitao <leitao@debian.org>
> > ---
> > Changelog:
> >
> > v4:
> > * Avoid sleeping in waiting for sockets and files (Matthieu Baerts)
> > * Some other improvements (Matthieu Baerts)
> > * Add configfs as a dependency (Jakub)
>
> Thank you for the new version!
>
> It looks good to me, but again, my review mainly focused on the
> Bash-related stuff, not on the netconsole test itself.
>
> I just have one question below, but not blocking.
>
> (...)
>
> > diff --git a/tools/testing/selftests/drivers/net/netcons_basic.sh b/tools/testing/selftests/drivers/net/netcons_basic.sh
> > new file mode 100755
> > index 000000000000..5c3686af1fe8
> > --- /dev/null
> > +++ b/tools/testing/selftests/drivers/net/netcons_basic.sh
> > @@ -0,0 +1,249 @@
>
> (...)
>
> > +check_file_size() {
> > + local file="$1"
> > +
> > + if [[ ! -f "$file" ]]; then
> > + # File might not exist yet
> > + return 1
> > + fi
> > +
> > + # Get file size
> > + local size=$(stat -c %s "$file" 2>/dev/null)
> > + # Check if stat command succeeded
> > + if [[ $? -ne 0 ]]; then
> > + return 1
> > + fi
> > +
> > + # Check if size is greater than zero
> > + if [[ "$size" -gt 0 ]]; then
> > + return 0 # file size > 0
> > + else
> > + return 1 # file size == 0
> > + fi
> > +}
>
> (...)
>
> > +# Wait until socat saves the file to disk
> > +busywait "${BUSYWAIT_TIMEOUT}" check_file_size "${OUTPUT_FILE}"
>
> It looks like your 'check_file_size' helper is a reimplementation of
> 'test -s <FILE>', no? Can you not simply use:
Why would you like to do it in one line when you can write a 15-lines
function that does exactly the same!? :-P
I will send a v5 with `test -x`, I will just wait for more reviews.
Thanks!
next prev parent reply other threads:[~2024-08-16 14:50 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-16 13:24 [PATCH net-next v4] net: netconsole: selftests: Create a new netconsole selftest Breno Leitao
2024-08-16 14:02 ` Matthieu Baerts
2024-08-16 14:50 ` Breno Leitao [this message]
2024-08-16 15:08 ` Matthieu Baerts
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Zr9nNnAsqpmPnQOx@gmail.com \
--to=leitao@debian.org \
--cc=davem@davemloft.net \
--cc=dw@davidwei.uk \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=liuhangbin@gmail.com \
--cc=matttbe@kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=petrm@nvidia.com \
--cc=shuah@kernel.org \
--cc=willemb@google.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.