summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2026-05-08 04:13:44 +0000
committertb <>2026-05-08 04:13:44 +0000
commite5b3f3747cec5c007c69a9508b512bb37292fe74 (patch)
tree9fb1f9f0b0372e96a67e7981ee657d8026570924
parent625cae984aec6de44a76413d162dacf626dcecf0 (diff)
downloadopenbsd-e5b3f3747cec5c007c69a9508b512bb37292fe74.tar.gz
openbsd-e5b3f3747cec5c007c69a9508b512bb37292fe74.tar.bz2
openbsd-e5b3f3747cec5c007c69a9508b512bb37292fe74.zip
asr regress: workaround due to removal of . from the path
Since . is no longer part of the default path, . regress.subr no longer works. Use ${PWD}. With this, the regress appears to mostly work except for what looks like ordering issues and of course it isn't using bsd.regress.mk. I leave the former to the DNS experts and the latter to the regress experts if they're interested.
-rw-r--r--src/regress/lib/libc/asr/regress.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libc/asr/regress.sh b/src/regress/lib/libc/asr/regress.sh
index a0950cefde..d6ced49d6b 100644
--- a/src/regress/lib/libc/asr/regress.sh
+++ b/src/regress/lib/libc/asr/regress.sh
@@ -1,6 +1,6 @@
1# $OpenBSD: regress.sh,v 1.7 2017/03/10 17:23:48 eric Exp $ 1# $OpenBSD: regress.sh,v 1.8 2026/05/08 04:13:44 tb Exp $
2 2
3. regress.subr 3. ${PWD}/regress.subr
4 4
5test_res_mkquery() 5test_res_mkquery()
6{ 6{