diff options
author | Muhammad Usama Anjum <[email protected]> | 2024-06-02 18:25:00 +0500 |
---|---|---|
committer | Catalin Marinas <[email protected]> | 2024-07-11 19:00:14 +0100 |
commit | 6e3bc73be02ba604e5fd865008050a6dfc3d1232 (patch) | |
tree | 7930154e6bf39d57b91837d3379492c424fe00e9 | |
parent | 9de9c4cc03add590f99aa5fabbe8f5850e34837c (diff) |
selftests: arm64: tags: remove the result script
The run_tags_test.sh script is used to run tags_test and print out if
the test succeeded or failed. As tags_test has been TAP conformed, this
script is unneeded and hence can be removed.
Signed-off-by: Muhammad Usama Anjum <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Catalin Marinas <[email protected]>
-rw-r--r-- | tools/testing/selftests/arm64/tags/Makefile | 1 | ||||
-rwxr-xr-x | tools/testing/selftests/arm64/tags/run_tags_test.sh | 12 |
2 files changed, 0 insertions, 13 deletions
diff --git a/tools/testing/selftests/arm64/tags/Makefile b/tools/testing/selftests/arm64/tags/Makefile index 6d29cfde43a2..0a77f35295fb 100644 --- a/tools/testing/selftests/arm64/tags/Makefile +++ b/tools/testing/selftests/arm64/tags/Makefile @@ -2,6 +2,5 @@ CFLAGS += $(KHDR_INCLUDES) TEST_GEN_PROGS := tags_test -TEST_PROGS := run_tags_test.sh include ../../lib.mk diff --git a/tools/testing/selftests/arm64/tags/run_tags_test.sh b/tools/testing/selftests/arm64/tags/run_tags_test.sh deleted file mode 100755 index 745f11379930..000000000000 --- a/tools/testing/selftests/arm64/tags/run_tags_test.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh -# SPDX-License-Identifier: GPL-2.0 - -echo "--------------------" -echo "running tags test" -echo "--------------------" -./tags_test -if [ $? -ne 0 ]; then - echo "[FAIL]" -else - echo "[PASS]" -fi |