1From a3368b38abfb703e730fc5462f42cc5d177d864d Mon Sep 17 00:00:00 2001 2From: Alexander Kanavin <alex.kanavin@gmail.com> 3Date: Fri, 20 Dec 2019 16:54:05 +0100 4Subject: [PATCH] tests: do not run target executables 5 6Upstream-Status: Inappropriate [oe-core specific] 7Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> 8--- 9 tests/Makefile | 2 -- 10 1 file changed, 2 deletions(-) 11 12diff --git a/tests/Makefile b/tests/Makefile 13index ecb7d1b..8950c73 100644 14--- a/tests/Makefile 15+++ b/tests/Makefile 16@@ -61,13 +61,11 @@ endif 17 18 # unprivileged 19 run_psx_test: psx_test 20- ./psx_test 21 22 psx_test: psx_test.c $(DEPS) 23 $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) $< -o $@ $(LINKEXTRA) $(LIBPSXLIB) 24 25 run_libcap_psx_test: libcap_psx_test 26- ./libcap_psx_test 27 28 libcap_psx_test: libcap_psx_test.c $(DEPS) 29 $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) $< -o $@ $(LINKEXTRA) $(LIBCAPLIB) $(LIBPSXLIB) 30