mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
fdba7cffc3
These tests are based on the libsync test suite from Android. This commit includes tests for waiting on fences. Signed-off-by: Emilio López <emilio.lopez@collabora.co.uk> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
21 lines
357 B
Makefile
21 lines
357 B
Makefile
CFLAGS += -O2 -g -std=gnu89 -pthread -Wall -Wextra
|
|
CFLAGS += -I../../../../usr/include/
|
|
LDFLAGS += -pthread
|
|
|
|
TEST_PROGS = sync_test
|
|
|
|
all: $(TEST_PROGS)
|
|
|
|
include ../lib.mk
|
|
|
|
OBJS = sync_test.o sync.o
|
|
|
|
TESTS += sync_alloc.o
|
|
TESTS += sync_fence.o
|
|
TESTS += sync_merge.o
|
|
TESTS += sync_wait.o
|
|
|
|
sync_test: $(OBJS) $(TESTS)
|
|
|
|
clean:
|
|
$(RM) sync_test $(OBJS) $(TESTS)
|