From 3031a49fc90924206242cca12acfeeada1a98488 Mon Sep 17 00:00:00 2001 From: Joe Ramsay Date: Tue, 15 Nov 2022 09:07:32 +0000 Subject: pl/math: Change conflicting variable names There is collision for math-tests and math-rtests between math/ and pl/math, which can lead to failures if running both concurrently. We rename the pl-specific lists to avoid this. --- pl/math/Dir.mk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pl') diff --git a/pl/math/Dir.mk b/pl/math/Dir.mk index bb81052..0fe1e67 100644 --- a/pl/math/Dir.mk +++ b/pl/math/Dir.mk @@ -118,14 +118,14 @@ build/pl/include/test/%.h: $(PLM)/test/%.h build/pl/bin/%.sh: $(PLM)/test/%.sh cp $< $@ -math-tests := $(wildcard $(PLM)/test/testcases/directed/*.tst) -math-rtests := $(wildcard $(PLM)/test/testcases/random/*.tst) +pl-math-tests := $(wildcard $(PLM)/test/testcases/directed/*.tst) +pl-math-rtests := $(wildcard $(PLM)/test/testcases/random/*.tst) check-pl/math-test: $(math-tools) - cat $(math-tests) | $(EMULATOR) build/pl/bin/mathtest $(math-testflags) + cat $(pl-math-tests) | $(EMULATOR) build/pl/bin/mathtest $(math-testflags) check-pl/math-rtest: $(math-host-tools) $(math-tools) - cat $(math-rtests) | build/pl/bin/rtest | $(EMULATOR) build/pl/bin/mathtest $(math-testflags) + cat $(pl-math-rtests) | build/pl/bin/rtest | $(EMULATOR) build/pl/bin/mathtest $(math-testflags) check-pl/math-ulp: $(math-tools) WANT_ERRNO=$(WANT_ERRNO) WANT_SVE_MATH=$(WANT_SVE_MATH) ULPFLAGS="$(math-ulpflags)" build/pl/bin/runulp.sh $(EMULATOR) -- cgit v1.2.3