[PATCH] test: Fix typo in test name

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

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

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

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

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!
participants (3)
-
Michal Suchanek
-
Simon Glass
-
Tom Rini