aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/arm64/run_tags_test.sh
blob: 745f1137993037a1b40969614b1d8d9265c8394f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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