feat(lander): initial lnm integration test
All checks were successful
ci/woodpecker/push/build Pipeline was successful
All checks were successful
ci/woodpecker/push/build Pipeline was successful
This commit is contained in:
parent
799821d9fc
commit
8ec667af3b
15 changed files with 187 additions and 44 deletions
8
Makefile
8
Makefile
|
|
@ -39,7 +39,11 @@ objs: $(OBJS)
|
|||
liblsm:
|
||||
$(MAKE) -C lsm
|
||||
|
||||
$(BIN): liblsm $(OBJS)
|
||||
.PHONY: liblnm
|
||||
liblnm:
|
||||
$(MAKE) -C lnm
|
||||
|
||||
$(BIN): liblsm liblnm $(OBJS)
|
||||
$(CC) -o $@ $(OBJS) $(_LDFLAGS)
|
||||
|
||||
$(BUILD_DIR)/$(SRC_DIR)/%.c.o: $(SRC_DIR)/%.c
|
||||
|
|
@ -68,7 +72,7 @@ run: $(BIN)
|
|||
valgrind: $(BIN)
|
||||
LANDER_API_KEY=test \
|
||||
LANDER_DATA_DIR=data \
|
||||
valgrind '$(BUILD_DIR)/$(BIN_FILENAME)'
|
||||
valgrind --track-origins=yes '$(BUILD_DIR)/$(BIN_FILENAME)'
|
||||
|
||||
.PHONY: test
|
||||
test: $(TARGETS_TEST)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue