summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Faurot <eric@cvs.openbsd.org>2012-08-07 21:00:32 +0000
committerEric Faurot <eric@cvs.openbsd.org>2012-08-07 21:00:32 +0000
commite946574fa5a2c6a15f9b1e3dd4bd23e993b51659 (patch)
treeea21cdf6a4760a3f19e6046b5b078d75928186b7
parent1517317e1dd1d9ebc456b70be3fb39bf910f1a18 (diff)
allow to choose an alternate regress script
-rw-r--r--regress/lib/libc/asr/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/regress/lib/libc/asr/Makefile b/regress/lib/libc/asr/Makefile
index bc9e309f2ff..ac1d4ed18c6 100644
--- a/regress/lib/libc/asr/Makefile
+++ b/regress/lib/libc/asr/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.1 2012/07/13 17:49:53 eric Exp $
+# $OpenBSD: Makefile,v 1.2 2012/08/07 21:00:31 eric Exp $
#
# Note on building and running the regress tests:
@@ -28,6 +28,7 @@ LIBCDIRSTD?= /usr/lib
LIBCDIRASR?= /usr/obj/lib/libc
REGRESSDIR?= /tmp/regress
+REGRESS?= regress.sh
all: build
@@ -49,4 +50,4 @@ uninstall:
rm -rf ${REGRESSDIR}
regress:
- RUNDIR=${REGRESSDIR} sh ${.CURDIR}/regress.sh
+ RUNDIR=${REGRESSDIR} sh ${.CURDIR}/${REGRESS}