diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2021-02-21 19:21:16 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2021-02-21 19:21:16 +0000 |
commit | 5a5fcd5634b94d6fa3c7885e85b7b342770afb34 (patch) | |
tree | a1d790bb7e2b10702c13102e0fb567661bc3627a /regress/misc | |
parent | 8361e10f413289a6e33cac273651f8b892cfa1bd (diff) |
PATH does not include '.' anymore. Fix the runs test for that situation.
Diffstat (limited to 'regress/misc')
-rw-r--r-- | regress/misc/exceptions/threads/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/misc/exceptions/threads/Makefile b/regress/misc/exceptions/threads/Makefile index 722725b4f19..aa9e2e6ffda 100644 --- a/regress/misc/exceptions/threads/Makefile +++ b/regress/misc/exceptions/threads/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 2021/02/20 19:05:28 otto Exp $ +# $OpenBSD: Makefile,v 1.2 2021/02/21 19:21:15 tb Exp $ PROG= exceptions SRCS= exceptions.cc @@ -6,6 +6,6 @@ SRCS= exceptions.cc REGRESS_TARGETS=runs runs: exceptions - for i in $$(jot 100); do exceptions; done + for i in $$(jot 100); do ./exceptions; done .include <bsd.regress.mk> |