mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-30 21:46:31 +00:00
54b519f32c
This test is based on the libsync test suite from Android. This commit includes a stress test that invokes operations in parallel. Signed-off-by: Emilio López <emilio.lopez@collabora.co.uk> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
23 lines
392 B
Makefile
23 lines
392 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
|
|
TESTS += sync_stress_parallelism.o
|
|
|
|
sync_test: $(OBJS) $(TESTS)
|
|
|
|
clean:
|
|
$(RM) sync_test $(OBJS) $(TESTS)
|