blob: 69287152eb29ccc74d5e590f05418a1d8031c97f [file] [log] [blame]
Andrew Geissler09209ee2020-12-13 08:44:15 -06001From 652071e430d5eea758965176b7648e79ad404daa Mon Sep 17 00:00:00 2001
Andrew Geissler82c905d2020-04-13 13:39:40 -05002From: 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---
Andrew Geissler635e0e42020-08-21 15:58:33 -050010 tests/Makefile | 2 --
11 1 file changed, 2 deletions(-)
Andrew Geissler82c905d2020-04-13 13:39:40 -050012
13diff --git a/tests/Makefile b/tests/Makefile
Andrew Geissler09209ee2020-12-13 08:44:15 -060014index fc39fee..3431df9 100644
Andrew Geissler82c905d2020-04-13 13:39:40 -050015--- a/tests/Makefile
16+++ b/tests/Makefile
Andrew Geissler09209ee2020-12-13 08:44:15 -060017@@ -59,13 +59,11 @@ endif
Andrew Geissler82c905d2020-04-13 13:39:40 -050018
Andrew Geissler09209ee2020-12-13 08:44:15 -060019 # unprivileged
Andrew Geissler635e0e42020-08-21 15:58:33 -050020 run_psx_test: psx_test
Andrew Geissler09209ee2020-12-13 08:44:15 -060021- ./psx_test
Andrew Geissler82c905d2020-04-13 13:39:40 -050022
23 psx_test: psx_test.c $(DEPS)
Andrew Geissler09209ee2020-12-13 08:44:15 -060024 $(CC) $(CFLAGS) $(IPATH) $< -o $@ $(LINKEXTRA) $(LIBPSXLIB) $(LDFLAGS)
Andrew Geissler82c905d2020-04-13 13:39:40 -050025
26 run_libcap_psx_test: libcap_psx_test
Andrew Geissler09209ee2020-12-13 08:44:15 -060027- ./libcap_psx_test
Andrew Geissler82c905d2020-04-13 13:39:40 -050028
29 libcap_psx_test: libcap_psx_test.c $(DEPS)
Andrew Geissler09209ee2020-12-13 08:44:15 -060030 $(CC) $(CFLAGS) $(IPATH) $< -o $@ $(LINKEXTRA) $(LIBCAPLIB) $(LIBPSXLIB) $(LDFLAGS)