Commit 6e3bc73b authored by Muhammad Usama Anjum's avatar Muhammad Usama Anjum Committed by Catalin Marinas
Browse files

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: default avatarMuhammad Usama Anjum <usama.anjum@collabora.com>
Link: https://lore.kernel.org/r/20240602132502.4186771-2-usama.anjum@collabora.com


Signed-off-by: default avatarCatalin Marinas <catalin.marinas@arm.com>
parent 9de9c4cc
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -2,6 +2,5 @@

CFLAGS += $(KHDR_INCLUDES)
TEST_GEN_PROGS := tags_test
TEST_PROGS := run_tags_test.sh

include ../../lib.mk
+0 −12
Original line number Diff line number Diff line
#!/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