From: Petr Vorel <pvorel@suse.cz>
To: Mengchi Cheng <mengcc@amazon.com>
Cc: ltp@lists.linux.it
Subject: Re: [LTP] [PATCH v1] rwtest: Confirm df is a symlink to busybox
Date: Thu, 30 Nov 2023 11:41:27 +0100 [thread overview]
Message-ID: <20231130104127.GA3099694@pevik> (raw)
In-Reply-To: <20231130004010.488496-1-mengcc@amazon.com>
Hi Mengchi,
> /bin/df can be a symlink to coreutils. It returns correct info with dir
> arguments.
> Just checking if df is a symlink will include such cases. Need to make
> sure it is linking to busybox before ignoring options.
> Signed-off-by: Mengchi Cheng <mengcc@amazon.com>
> ---
> testcases/kernel/fs/doio/rwtest | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
> diff --git a/testcases/kernel/fs/doio/rwtest b/testcases/kernel/fs/doio/rwtest
> index 6725e1426..26659e9d3 100644
> --- a/testcases/kernel/fs/doio/rwtest
> +++ b/testcases/kernel/fs/doio/rwtest
> @@ -329,10 +329,10 @@ do
> else
> # If df is a symlink (to busybox) then do not pass the $dir and $dfOpts
> # parameters because they don't work as expected
> - if test -h $(which df)
> - then
> - dir=""; dfOpts="";
> - fi
> + if [[ "$(readlink -f "$(which df)")" == *"busybox"* ]]
Could you please test if this works?
if [ "$(readlink -f "$(which df)")" = "busybox" ]
Although this script uses bash, we generally don't want to use it. Thus it'd be
better to not introduce any bash specific code.
BTW this is very old and very ugly script, we should cleanup it or delete:
https://github.com/linux-test-project/ltp/issues/1110
Kind regards,
Petr
> + then
> + dir=""; dfOpts="";
> + fi
> blks=$(df $dfOpts $dir |
> (while read fs blks used avail cap mountpoint
--
Mailing list info: https://lists.linux.it/listinfo/ltp
next prev parent reply other threads:[~2023-11-30 10:41 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-30 0:40 [LTP] [PATCH v1] rwtest: Confirm df is a symlink to busybox Mengchi Cheng via ltp
2023-11-30 10:41 ` Petr Vorel [this message]
2023-11-30 10:53 ` Petr Vorel
2023-11-30 22:15 ` Mengchi Cheng via ltp
2023-12-01 8:22 ` Petr Vorel
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=20231130104127.GA3099694@pevik \
--to=pvorel@suse.cz \
--cc=ltp@lists.linux.it \
--cc=mengcc@amazon.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox