Skip to content

Commit

Permalink
refactor names
Browse files Browse the repository at this point in the history
  • Loading branch information
mkannwischer committed Jul 12, 2024
1 parent 6ee5cbf commit 85f29a4
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
include tests/ntt_dilithium/ntt_dilithium.mk
include tests/ntt_kyber/ntt_kyber.mk

totestname = $(shell echo $(1) | tr '[a-z]' '[A-Z]')
totestsources = $(addprefix $(2),$(addprefix tests/$(1)/,$($(call totestname,$(1))_SOURCES)))
totestasm = $(addprefix $(2),$(addprefix tests/$(1)/,$($(call totestname,$(1))_ASMS)))
totestother = $(addprefix $(2),$(addprefix tests/$(1)/,$($(call totestname,$(1))_OTHER)))
toplatform = $(addsuffix --$(1),$($(call totestname,$(1))_PLATFORMS))
toelfname = $(addsuffix -test.elf,$(1))
testname = $(shell echo $(1) | tr '[a-z]' '[A-Z]')
testsources = $(addprefix $(2),$(addprefix tests/$(1)/,$($(call testname,$(1))_SOURCES)))
testasms = $(addprefix $(2),$(addprefix tests/$(1)/,$($(call testname,$(1))_ASMS)))
testother = $(addprefix $(2),$(addprefix tests/$(1)/,$($(call testname,$(1))_OTHER)))
testplatforms = $(addsuffix --$(1),$($(call testname,$(1))_PLATFORMS))
elfname = $(addsuffix -test.elf,$(1))

platformtests := $(foreach test,$(TESTS), $(call toplatform,$(test)))
platformtests := $(foreach test,$(TESTS), $(call testplatforms,$(test)))

builds := $(addprefix build-, $(platformtests))
runs := $(addprefix run-, $(platformtests))
Expand All @@ -24,11 +24,11 @@ test = $(lastword $(subst --, ,$*))

.PHONY: ${builds}
${builds}: build-%:
make -j$(shell nproc) -C envs/$(platform) build SOURCES='$(call totestsources,$(test),../../)' ASMS='$(call totestasm,$(test),../../)' TARGET=$(call toelfname,$(test))
make -j$(shell nproc) -C envs/$(platform) build SOURCES='$(call testsources,$(test),../../)' ASMS='$(call testasms,$(test),../../)' TARGET=$(call elfname,$(test))

.PHONY: ${runs}
${runs}: run-%:
make -C envs/$(platform) run SOURCES='$(call totestsources,$(test),../../)' ASMS='$(call totestasm,$(test),../../)' TARGET=$(call toelfname,$(test))
make -C envs/$(platform) run SOURCES='$(call testsources,$(test),../../)' ASMS='$(call testasms,$(test),../../)' TARGET=$(call elfname,$(test))

.PHONY: run
run: ${runs}
Expand All @@ -38,7 +38,7 @@ ${standalones}: standalone-%:
make -C envs/$(platform) clean
mkdir -p standalone/$@/test_src/
cp -rL envs/$(platform)/* standalone/$@/
cp -rL $(call totestsources,$(test),./) $(call totestasm,$(test),./) $(call totestother,$(test),./) standalone/$@/test_src/
cp -rL $(call testsources,$(test),./) $(call testasms,$(test),./) $(call testother,$(test),./) standalone/$@/test_src/

.PHONY: standalone
standalone: ${standalones}
Expand Down

0 comments on commit 85f29a4

Please sign in to comment.