mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
37 lines
1 KiB
Makefile
37 lines
1 KiB
Makefile
check: libfetchers-tests_RUN
|
|
|
|
programs += libfetchers-tests
|
|
|
|
libfetchers-tests_NAME = libnixfetchers-tests
|
|
|
|
libfetchers-tests_ENV := _NIX_TEST_UNIT_DATA=$(d)/data GTEST_OUTPUT=xml:$$testresults/libfetchers-tests.xml
|
|
|
|
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)
|
|
|
|
ifdef HOST_WINDOWS
|
|
# Increase the default reserved stack size to 65 MB so Nix doesn't run out of space
|
|
libfetchers-tests_LDFLAGS += -Wl,--stack,$(shell echo $$((65 * 1024 * 1024)))
|
|
endif
|