From 827dddf62b195e7607d6bcb9b8f6760d2ed6a01a Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Mon, 13 May 2024 13:32:32 -0500 Subject: [PATCH] Fixed make cov lfs.t.gcda -> lfs.t.a.gcda This was missed when changing the behavior of test/bench suffixes earlier. Easy fix. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b76cfe25..188e9457 100644 --- a/Makefile +++ b/Makefile @@ -34,7 +34,7 @@ OBJ := $(SRC:%.c=$(BUILDDIR)/%.o) DEP := $(SRC:%.c=$(BUILDDIR)/%.d) ASM := $(SRC:%.c=$(BUILDDIR)/%.s) CI := $(SRC:%.c=$(BUILDDIR)/%.ci) -GCDA := $(SRC:%.c=$(BUILDDIR)/%.t.gcda) +GCDA := $(SRC:%.c=$(BUILDDIR)/%.t.a.gcda) TESTS ?= $(wildcard tests/*.toml) TEST_SRC ?= $(SRC) \