All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] test: Fix typo in test name
@ 2022-10-13 21:22 Michal Suchanek
  2022-10-14 15:56 ` Simon Glass
  0 siblings, 1 reply; 5+ messages in thread
From: Michal Suchanek @ 2022-10-13 21:22 UTC (permalink / raw)
  To: u-boot; +Cc: Michal Suchanek, Simon Glass

For other sandbox tests the printed test name corresponds to the
configuration except for this one.

Signed-off-by: Michal Suchanek <msuchanek@suse.de>
---

 test/run | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/run b/test/run
index 810b47e08d..5b17204c73 100755
--- a/test/run
+++ b/test/run
@@ -53,7 +53,7 @@ run_test "sandbox_spl" ./test/py/test.py --bd sandbox_spl --build ${para} \
 
 # Run the sane tests with sandbox_noinst (i.e. without OF_PLATDATA_INST)
 echo "${prompt}"
-run_test "sandbox_spl" ./test/py/test.py --bd sandbox_noinst --build ${para} \
+run_test "sandbox_noinst" ./test/py/test.py --bd sandbox_noinst --build ${para} \
 		-k 'test_ofplatdata or test_handoff or test_spl'
 
 if [ -z "$tools_only" ]; then
-- 
2.37.3


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

* Re: [PATCH] test: Fix typo in test name
  2022-10-13 21:22 [PATCH] test: Fix typo in test name Michal Suchanek
@ 2022-10-14 15:56 ` Simon Glass
  2022-10-15  9:30   ` [PATCH v2] " Michal Suchanek
  0 siblings, 1 reply; 5+ messages in thread
From: Simon Glass @ 2022-10-14 15:56 UTC (permalink / raw)
  To: Michal Suchanek; +Cc: u-boot

On Thu, 13 Oct 2022 at 15:22, Michal Suchanek <msuchanek@suse.de> wrote:
>
> For other sandbox tests the printed test name corresponds to the
> configuration except for this one.
>
> Signed-off-by: Michal Suchanek <msuchanek@suse.de>
> ---
>
>  test/run | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>

Reviewed-by: Simon Glass <sjg@chromium.org>

'sane' is a typo too


> diff --git a/test/run b/test/run
> index 810b47e08d..5b17204c73 100755
> --- a/test/run
> +++ b/test/run
> @@ -53,7 +53,7 @@ run_test "sandbox_spl" ./test/py/test.py --bd sandbox_spl --build ${para} \
>
>  # Run the sane tests with sandbox_noinst (i.e. without OF_PLATDATA_INST)
>  echo "${prompt}"
> -run_test "sandbox_spl" ./test/py/test.py --bd sandbox_noinst --build ${para} \
> +run_test "sandbox_noinst" ./test/py/test.py --bd sandbox_noinst --build ${para} \
>                 -k 'test_ofplatdata or test_handoff or test_spl'
>
>  if [ -z "$tools_only" ]; then
> --
> 2.37.3
>

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

* [PATCH v2] test: Fix typo in test name
  2022-10-14 15:56 ` Simon Glass
@ 2022-10-15  9:30   ` Michal Suchanek
  2022-10-15 17:53     ` Simon Glass
  2022-10-24 12:22     ` Tom Rini
  0 siblings, 2 replies; 5+ messages in thread
From: Michal Suchanek @ 2022-10-15  9:30 UTC (permalink / raw)
  To: u-boot; +Cc: Michal Suchanek, Simon Glass

For other sandbox tests the printed test name corresponds to the
configuration except for this one.

Signed-off-by: Michal Suchanek <msuchanek@suse.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
---

Changes in v2:
Also fix nearby comment typo

---
 test/run | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/run b/test/run
index 810b47e08d..c4ab046ce8 100755
--- a/test/run
+++ b/test/run
@@ -51,9 +51,9 @@ echo "${prompt}"
 run_test "sandbox_spl" ./test/py/test.py --bd sandbox_spl --build ${para} \
 		-k 'test_ofplatdata or test_handoff or test_spl'
 
-# Run the sane tests with sandbox_noinst (i.e. without OF_PLATDATA_INST)
+# Run the same tests with sandbox_noinst (i.e. without OF_PLATDATA_INST)
 echo "${prompt}"
-run_test "sandbox_spl" ./test/py/test.py --bd sandbox_noinst --build ${para} \
+run_test "sandbox_noinst" ./test/py/test.py --bd sandbox_noinst --build ${para} \
 		-k 'test_ofplatdata or test_handoff or test_spl'
 
 if [ -z "$tools_only" ]; then
-- 
2.37.3


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

* Re: [PATCH v2] test: Fix typo in test name
  2022-10-15  9:30   ` [PATCH v2] " Michal Suchanek
@ 2022-10-15 17:53     ` Simon Glass
  2022-10-24 12:22     ` Tom Rini
  1 sibling, 0 replies; 5+ messages in thread
From: Simon Glass @ 2022-10-15 17:53 UTC (permalink / raw)
  To: Michal Suchanek; +Cc: u-boot

On Sat, 15 Oct 2022 at 03:30, Michal Suchanek <msuchanek@suse.de> wrote:
>
> For other sandbox tests the printed test name corresponds to the
> configuration except for this one.
>
> Signed-off-by: Michal Suchanek <msuchanek@suse.de>
> Reviewed-by: Simon Glass <sjg@chromium.org>
> ---
>
> Changes in v2:
> Also fix nearby comment typo
>
> ---
>  test/run | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>

Reviewed-by: Simon Glass <sjg@chromium.org>

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

* Re: [PATCH v2] test: Fix typo in test name
  2022-10-15  9:30   ` [PATCH v2] " Michal Suchanek
  2022-10-15 17:53     ` Simon Glass
@ 2022-10-24 12:22     ` Tom Rini
  1 sibling, 0 replies; 5+ messages in thread
From: Tom Rini @ 2022-10-24 12:22 UTC (permalink / raw)
  To: Michal Suchanek; +Cc: u-boot, Simon Glass

[-- Attachment #1: Type: text/plain, Size: 375 bytes --]

On Sat, Oct 15, 2022 at 11:30:37AM +0200, Michal Suchanek wrote:

> For other sandbox tests the printed test name corresponds to the
> configuration except for this one.
> 
> Signed-off-by: Michal Suchanek <msuchanek@suse.de>
> Reviewed-by: Simon Glass <sjg@chromium.org>
> Reviewed-by: Simon Glass <sjg@chromium.org>

Applied to u-boot/master, thanks!

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

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

end of thread, other threads:[~2022-10-24 12:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-13 21:22 [PATCH] test: Fix typo in test name Michal Suchanek
2022-10-14 15:56 ` Simon Glass
2022-10-15  9:30   ` [PATCH v2] " Michal Suchanek
2022-10-15 17:53     ` Simon Glass
2022-10-24 12:22     ` Tom Rini

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.