mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-14 18:26:16 +02:00
50cb14fcf9
This introduces new utility functions to get elements from JSON — in an ergonomic way and with nice error messages if the expected type does not match. Co-authored-by: John Ericson <John.Ericson@Obsidian.Systems>
32 lines
800 B
Makefile
32 lines
800 B
Makefile
check: libfetchers-tests_RUN
|
|
|
|
programs += libfetchers-tests
|
|
|
|
libfetchers-tests_NAME = libnixfetchers-tests
|
|
|
|
libfetchers-tests_ENV := _NIX_TEST_UNIT_DATA=$(d)/data
|
|
|
|
libfetchers-tests_DIR := $(d)
|
|
|
|
ifeq ($(INSTALL_UNIT_TESTS), yes)
|
|
libfetchers-tests_INSTALL_DIR := $(checkbindir)
|
|
else
|
|
libfetchers-tests_INSTALL_DIR :=
|
|
endif
|
|
|
|
libfetchers-tests_SOURCES := $(wildcard $(d)/*.cc)
|
|
|
|
libfetchers-tests_EXTRA_INCLUDES = \
|
|
-I tests/unit/libstore-support \
|
|
-I tests/unit/libutil-support \
|
|
$(INCLUDE_libfetchers) \
|
|
$(INCLUDE_libstore) \
|
|
$(INCLUDE_libutil)
|
|
|
|
libfetchers-tests_CXXFLAGS += $(libfetchers-tests_EXTRA_INCLUDES)
|
|
|
|
libfetchers-tests_LIBS = \
|
|
libstore-test-support libutil-test-support \
|
|
libfetchers libstore libutil
|
|
|
|
libfetchers-tests_LDFLAGS := -lrapidcheck $(GTEST_LIBS)
|