blob: bfce8e05477fc34be35702141dbc061f93fdafcd [file] [log] [blame]
Andrew Geissler6ce62a22020-11-30 19:58:47 -06001From 7744c1f678f5226a151bc6b2a254a56835229d91 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 Geissler6ce62a22020-11-30 19:58:47 -060014index 8956d5d..d569650 100644
Andrew Geissler82c905d2020-04-13 13:39:40 -050015--- a/tests/Makefile
16+++ b/tests/Makefile
Andrew Geissler6ce62a22020-11-30 19:58:47 -060017@@ -27,13 +27,11 @@ sudotest: test run_libcap_launch_test run_libcap_launch_test
Andrew Geissler82c905d2020-04-13 13:39:40 -050018 install: all
19
Andrew Geissler635e0e42020-08-21 15:58:33 -050020 run_psx_test: psx_test
Andrew Geissler6ce62a22020-11-30 19:58:47 -060021- $(LDPATH) ./psx_test
Andrew Geissler82c905d2020-04-13 13:39:40 -050022
23 psx_test: psx_test.c $(DEPS)
Andrew Geissler6ce62a22020-11-30 19:58:47 -060024 $(CC) $(CFLAGS) $(IPATH) $< -o $@ $(LIBPSXLIB)
Andrew Geissler82c905d2020-04-13 13:39:40 -050025
26 run_libcap_psx_test: libcap_psx_test
Andrew Geissler6ce62a22020-11-30 19:58:47 -060027- $(LDPATH) ./libcap_psx_test
Andrew Geissler82c905d2020-04-13 13:39:40 -050028
29 libcap_psx_test: libcap_psx_test.c $(DEPS)
Andrew Geissler6ce62a22020-11-30 19:58:47 -060030 $(CC) $(CFLAGS) $(IPATH) $< -o $@ $(LIBCAPLIB) $(LIBPSXLIB) $(LDFLAGS)