Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 38f72518 authored by Shuah Khan's avatar Shuah Khan
Browse files

selftests: sync: use TEST_CUSTOM_PROGS instead of TEST_PROGS



lib.mk var TEST_CUSTOM_PROGS is for tests that need custom build
rules. TEST_PROGS is used for test shell scripts. Fix it to use
TEST_CUSTOM_PROGS. lib.mk will run and install them.

Signed-off-by: default avatarShuah Khan <shuahkh@osg.samsung.com>
parent be16a244
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -2,9 +2,11 @@ CFLAGS += -O2 -g -std=gnu89 -pthread -Wall -Wextra
CFLAGS += -I../../../../usr/include/
LDFLAGS += -pthread

TEST_PROGS = sync_test
# lib.mk TEST_CUSTOM_PROGS var is for custome tests that need special
# build rules. lib.mk will run and install them.
TEST_CUSTOM_PROGS = sync_test

all: $(TEST_PROGS)
all: $(TEST_CUSTOM_PROGS)

include ../lib.mk