aboutsummaryrefslogtreecommitdiff
path: root/pl
diff options
context:
space:
mode:
authorJoe Ramsay <Joe.Ramsay@arm.com>2022-11-15 09:07:32 +0000
committerJoe Ramsay <joe.ramsay@arm.com>2022-11-15 09:07:32 +0000
commit3031a49fc90924206242cca12acfeeada1a98488 (patch)
treef7925371dbcf6cdee1246da103972c2068792634 /pl
parent2348c662121f3d04e48664638ae76628348a5b7e (diff)
downloadarm-optimized-routines-3031a49fc90924206242cca12acfeeada1a98488.tar.gz
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.
Diffstat (limited to 'pl')
-rw-r--r--pl/math/Dir.mk8
1 files changed, 4 insertions, 4 deletions
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)