]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
selftests: arm64: tags: remove the result script
authorMuhammad Usama Anjum <usama.anjum@collabora.com>
Sun, 2 Jun 2024 13:25:00 +0000 (18:25 +0500)
committerCatalin Marinas <catalin.marinas@arm.com>
Thu, 11 Jul 2024 18:00:14 +0000 (19:00 +0100)
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 <usama.anjum@collabora.com>
Link: https://lore.kernel.org/r/20240602132502.4186771-2-usama.anjum@collabora.com
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
tools/testing/selftests/arm64/tags/Makefile
tools/testing/selftests/arm64/tags/run_tags_test.sh [deleted file]

index 6d29cfde43a212569173c0f0240f4cf77fd924d8..0a77f35295fb6cc7bd5fead91ba2c21f69a1a4a3 100644 (file)
@@ -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 (executable)
index 745f113..0000000
+++ /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