snapshot benchmark

simple benchmark for the snapshots
This commit is contained in:
Takacs, Philipp
2023-01-27 18:31:17 +01:00
parent 80bd825420
commit 550265f3c1
3 changed files with 223 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
CFLAGS += -Wall -Werror -I../../../include
CFLAGS += -D__USE_MINGW_ANSI_STDIO=1
LDLIBS += -L../../../build -lgsl -lgslcblas -lm -lunicorn
UNAME_S := $(shell uname -s)
LDLIBS += -pthread
ifeq ($(UNAME_S), Linux)
LDLIBS += -lrt
endif
#EXECUTE_VARS = LD_LIBRARY_PATH=../../cmocka/src:../../build/ DYLD_LIBRARY_PATH=../../build/
EXECUTE_VARS = LD_LIBRARY_PATH=../../../build/cmocka/src:../../../build/ DYLD_LIBRARY_PATH=../../../build/
TESTS_SOURCE = $(wildcard *.c)
TESTS = $(TESTS_SOURCE:%.c=%)
.PHONY: all clean test
test: $(TESTS)
all: $(TESTS)
clean:
rm -f $(TESTS)