From: Simon Horman <horms@kernel.org>
To: Przemek Kitszel <przemyslaw.kitszel@intel.com>
Cc: Aaron Conole <aconole@redhat.com>,
Adrian Moreno <amorenoz@redhat.com>,
Pravin B Shelar <pshelar@ovn.org>, Shuah Khan <shuah@kernel.org>,
netdev@vger.kernel.org, dev@openvswitch.org,
linux-kselftest@vger.kernel.org,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>
Subject: Re: [PATCH net] selftests: openvswitch: Use bash as interpreter
Date: Mon, 17 Jun 2024 11:33:37 +0100 [thread overview]
Message-ID: <20240617103337.GQ8447@kernel.org> (raw)
In-Reply-To: <594b79b7-452c-488f-8a7f-4ee95698bff2@intel.com>
On Mon, Jun 17, 2024 at 12:05:11PM +0200, Przemek Kitszel wrote:
> On 6/17/24 10:28, Simon Horman wrote:
> > openvswitch.sh makes use of substitutions of the form ${ns:0:1}, to
> > obtain the first character of $ns. Empirically, this is works with bash
> > but not dash. When run with dash these evaluate to an empty string and
> > printing an error to stdout.
> >
> > # dash -c 'ns=client; echo "${ns:0:1}"' 2>error
> > # cat error
> > dash: 1: Bad substitution
> > # bash -c 'ns=client; echo "${ns:0:1}"' 2>error
> > c
> > # cat error
> >
> > This leads to tests that neither pass nor fail.
> > F.e.
> >
> > TEST: arp_ping [START]
> > adding sandbox 'test_arp_ping'
> > Adding DP/Bridge IF: sbx:test_arp_ping dp:arpping {, , }
> > create namespaces
> > ./openvswitch.sh: 282: eval: Bad substitution
> > TEST: ct_connect_v4 [START]
> > adding sandbox 'test_ct_connect_v4'
> > Adding DP/Bridge IF: sbx:test_ct_connect_v4 dp:ct4 {, , }
> > ./openvswitch.sh: 322: eval: Bad substitution
> > create namespaces
> >
> > Resolve this by making openvswitch.sh a bash script.
> >
> > Fixes: 918423fda910 ("selftests: openvswitch: add an initial flow programming case")
> > Signed-off-by: Simon Horman <horms@kernel.org>
>
> That's good fix,
> Reviewed-by: Przemek Kitszel <przemyslaw.kitszel@intel.com>
>
> sidenote: I like very much the idea to use the least powerful tool, like
> sh vs bash, awk vs gawk, but it breaks when we forget what is outside of
> the scope of the former/standard.
> Perhaps for shell, we could convert all the selftests at once?
Thanks,
Now that you mention it, I have the same feelings.
Do we ever expect to use the minimal tools, when other
parts of the test suite depend on the enhanced ones?
...
next prev parent reply other threads:[~2024-06-17 10:33 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-17 8:28 [PATCH net] selftests: openvswitch: Use bash as interpreter Simon Horman
2024-06-17 10:05 ` Przemek Kitszel
2024-06-17 10:33 ` Simon Horman [this message]
2024-06-19 9:21 ` David Laight
2024-06-18 20:40 ` patchwork-bot+netdevbpf
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=20240617103337.GQ8447@kernel.org \
--to=horms@kernel.org \
--cc=aconole@redhat.com \
--cc=amorenoz@redhat.com \
--cc=davem@davemloft.net \
--cc=dev@openvswitch.org \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=przemyslaw.kitszel@intel.com \
--cc=pshelar@ovn.org \
--cc=shuah@kernel.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).