Linux Kernel Selftest development
 help / color / mirror / Atom feed
* [PATCH] selftests: ublk: install test_common.sh and trace/ scripts
@ 2026-09-09 13:26 Mahmoud Nagy Adam
  2026-09-10 14:25 ` Ming Lei
  2026-09-10 20:55 ` Jens Axboe
  0 siblings, 2 replies; 3+ messages in thread
From: Mahmoud Nagy Adam @ 2026-09-09 13:26 UTC (permalink / raw)
  To: linux-kselftest
  Cc: Ming Lei, Shuah Khan, Jens Axboe, linux-block, linux-kernel

Every ublk test script sources test_common.sh from its own directory:

    . "$(cd "$(dirname "$0")" && pwd)"/test_common.sh

and test_generic_02/12 additionally run bpftrace against the scripts in
trace/. Neither test_common.sh nor trace/ is listed in TEST_FILES, so
"make install" does not copy them into the install directory and every
ublk test fails when run from there:

  ./test_generic_02.sh: line 4: .../kselftest_install/ublk/test_common.sh: No such file or directory
  ./test_generic_02.sh: line 8: _have_program: command not found

The bpftrace tests are affected even when bpftrace is installed: the
missing trace/*.bt makes bpftrace exit immediately, and the tests then
report a skip rather than a failure, which hides the problem.

Add both to TEST_FILES, matching how other selftests ship their sourced
helpers (see kexec/kexec_common_lib.sh and zram/zram_lib.sh).

Fixes: 6aecda00b7d1e1 ("selftests: ublk: add kernel selftests for ublk")
Fixes: 723977cab4c0fd ("selftests: ublk: add generic_01 for verifying sequential IO order")
Cc: stable@vger.kernel.org # v6.15+
Assisted-by: Kiro:claude-opus-5
Signed-off-by: Mahmoud Nagy Adam <mngyadam@amazon.de>
---
 tools/testing/selftests/ublk/Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tools/testing/selftests/ublk/Makefile b/tools/testing/selftests/ublk/Makefile
index 5daf36c6c36c4c..37883e9d50ec3e 100644
--- a/tools/testing/selftests/ublk/Makefile
+++ b/tools/testing/selftests/ublk/Makefile
@@ -73,6 +73,8 @@ TEST_PROGS += test_stress_08.sh
 TEST_PROGS += test_stress_09.sh
 
 TEST_FILES := settings
+TEST_FILES += test_common.sh
+TEST_FILES += trace
 
 TEST_GEN_PROGS_EXTENDED = kublk metadata_size
 STANDALONE_UTILS := metadata_size.c
-- 
2.47.3


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] selftests: ublk: install test_common.sh and trace/ scripts
  2026-09-09 13:26 [PATCH] selftests: ublk: install test_common.sh and trace/ scripts Mahmoud Nagy Adam
@ 2026-09-10 14:25 ` Ming Lei
  2026-09-10 20:55 ` Jens Axboe
  1 sibling, 0 replies; 3+ messages in thread
From: Ming Lei @ 2026-09-10 14:25 UTC (permalink / raw)
  To: Mahmoud Nagy Adam
  Cc: linux-kselftest, Shuah Khan, Jens Axboe, linux-block,
	linux-kernel

On Wed, Sep 9, 2026 at 8:26 AM Mahmoud Nagy Adam <mngyadam@amazon.de> wrote:
>
> Every ublk test script sources test_common.sh from its own directory:
>
>     . "$(cd "$(dirname "$0")" && pwd)"/test_common.sh
>
> and test_generic_02/12 additionally run bpftrace against the scripts in
> trace/. Neither test_common.sh nor trace/ is listed in TEST_FILES, so
> "make install" does not copy them into the install directory and every
> ublk test fails when run from there:
>
>   ./test_generic_02.sh: line 4: .../kselftest_install/ublk/test_common.sh: No such file or directory
>   ./test_generic_02.sh: line 8: _have_program: command not found
>
> The bpftrace tests are affected even when bpftrace is installed: the
> missing trace/*.bt makes bpftrace exit immediately, and the tests then
> report a skip rather than a failure, which hides the problem.
>
> Add both to TEST_FILES, matching how other selftests ship their sourced
> helpers (see kexec/kexec_common_lib.sh and zram/zram_lib.sh).
>
> Fixes: 6aecda00b7d1e1 ("selftests: ublk: add kernel selftests for ublk")
> Fixes: 723977cab4c0fd ("selftests: ublk: add generic_01 for verifying sequential IO order")
> Cc: stable@vger.kernel.org # v6.15+
> Assisted-by: Kiro:claude-opus-5
> Signed-off-by: Mahmoud Nagy Adam <mngyadam@amazon.de>

On Wed, Sep 9, 2026 at 8:26 AM Mahmoud Nagy Adam <mngyadam@amazon.de> wrote:
>
> Every ublk test script sources test_common.sh from its own directory:
>
>     . "$(cd "$(dirname "$0")" && pwd)"/test_common.sh
>
> and test_generic_02/12 additionally run bpftrace against the scripts in
> trace/. Neither test_common.sh nor trace/ is listed in TEST_FILES, so
> "make install" does not copy them into the install directory and every
> ublk test fails when run from there:
>
>   ./test_generic_02.sh: line 4: .../kselftest_install/ublk/test_common.sh: No such file or directory
>   ./test_generic_02.sh: line 8: _have_program: command not found
>
> The bpftrace tests are affected even when bpftrace is installed: the
> missing trace/*.bt makes bpftrace exit immediately, and the tests then
> report a skip rather than a failure, which hides the problem.
>
> Add both to TEST_FILES, matching how other selftests ship their sourced
> helpers (see kexec/kexec_common_lib.sh and zram/zram_lib.sh).
>
> Fixes: 6aecda00b7d1e1 ("selftests: ublk: add kernel selftests for ublk")
> Fixes: 723977cab4c0fd ("selftests: ublk: add generic_01 for verifying sequential IO order")
> Cc: stable@vger.kernel.org # v6.15+
> Assisted-by: Kiro:claude-opus-5
> Signed-off-by: Mahmoud Nagy Adam <mngyadam@amazon.de>

Reviewed-by: Ming Lei <tom.leiming@gmail.com>

Thanks,

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] selftests: ublk: install test_common.sh and trace/ scripts
  2026-09-09 13:26 [PATCH] selftests: ublk: install test_common.sh and trace/ scripts Mahmoud Nagy Adam
  2026-09-10 14:25 ` Ming Lei
@ 2026-09-10 20:55 ` Jens Axboe
  1 sibling, 0 replies; 3+ messages in thread
From: Jens Axboe @ 2026-09-10 20:55 UTC (permalink / raw)
  To: linux-kselftest, Mahmoud Nagy Adam
  Cc: Ming Lei, Shuah Khan, linux-block, linux-kernel


On Wed, 09 Sep 2026 15:26:03 +0200, Mahmoud Nagy Adam wrote:
> Every ublk test script sources test_common.sh from its own directory:
> 
>     . "$(cd "$(dirname "$0")" && pwd)"/test_common.sh
> 
> and test_generic_02/12 additionally run bpftrace against the scripts in
> trace/. Neither test_common.sh nor trace/ is listed in TEST_FILES, so
> "make install" does not copy them into the install directory and every
> ublk test fails when run from there:
> 
> [...]

Applied, thanks!

[1/1] selftests: ublk: install test_common.sh and trace/ scripts
      commit: c4fa55f85c47cd5d54d717fb8170746edb10292e

Best regards,
-- 
Jens Axboe




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-09-10 20:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-09 13:26 [PATCH] selftests: ublk: install test_common.sh and trace/ scripts Mahmoud Nagy Adam
2026-09-10 14:25 ` Ming Lei
2026-09-10 20:55 ` Jens Axboe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox