diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 14:11:00 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 14:11:00 +0000 |
commit | af754e596a8dbb05ed8580c342e7fe02e08b28e0 (patch) | |
tree | b2f334c2b55ede42081aa6710a72da784547d8ea /src/tests/unit/all.mk | |
parent | Initial commit. (diff) | |
download | freeradius-b95e0cd7685e6bbc2465b1f4efe1884df2f4ef01.tar.xz freeradius-b95e0cd7685e6bbc2465b1f4efe1884df2f4ef01.zip |
Adding upstream version 3.2.3+dfsg.upstream/3.2.3+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/tests/unit/all.mk')
-rw-r--r-- | src/tests/unit/all.mk | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/src/tests/unit/all.mk b/src/tests/unit/all.mk new file mode 100644 index 0000000..f8cef43 --- /dev/null +++ b/src/tests/unit/all.mk @@ -0,0 +1,53 @@ +# +# Unit tests for individual pieces of functionality. +# + +# +# The files are put here in order. Later tests need +# functionality from earlier tests. +# +FILES := rfc.txt errors.txt extended.txt lucent.txt wimax.txt \ + escape.txt condition.txt xlat.txt vendor.txt dhcp.txt ascend.txt \ + rfc4849.txt eapol_key_msg.txt + +# +# Create the output directory +# +.PHONY: $(BUILD_DIR)/tests/unit +$(BUILD_DIR)/tests/unit: + @mkdir -p $@ + +.PHONY: $(BUILD_DIR)/share +$(BUILD_DIR)/share: + @mkdir -p $@ + +# +# We need $INCLUDE in the output file, so we pass 2 parameters to 'echo' +# No idea how portable that is... +# +$(BUILD_DIR)/share/dictionary: $(top_srcdir)/share/dictionary $(top_srcdir)/share/dictionary.dhcp | $(BUILD_DIR)/share + @rm -f $@ + @for x in $^; do \ + echo '$$INCLUDE ' "$$x" >> $@; \ + done + +# +# Files in the output dir depend on the unit tests +# +$(BUILD_DIR)/tests/unit/%: $(DIR)/% $(BUILD_DIR)/bin/radattr $(TESTBINDIR)/radattr $(BUILD_DIR)/share/dictionary | $(BUILD_DIR)/tests/unit + @echo UNIT-TEST $(notdir $@) + @if ! $(TESTBIN)/radattr -D $(BUILD_DIR)/share $<; then \ + echo "$(TESTBIN)/radattr -D $(BUILD_DIR)/share $<"; \ + exit 1; \ + fi + @touch $@ + +# +# Get all of the unit test output files +# +TESTS.UNIT_FILES := $(addprefix $(BUILD_DIR)/tests/unit/,$(FILES)) + +# +# Depend on the output files, and create the directory first. +# +tests.unit: $(TESTS.UNIT_FILES) |