pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/regress/make-shell
Module Name: pkgsrc
Committed By: rillig
Date: Fri May 1 19:16:47 UTC 2020
Added Files:
pkgsrc/regress/make-shell: Makefile spec
Log Message:
regress/make-shell: regression test for the shell used by devel/bmake
To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 pkgsrc/regress/make-shell/Makefile \
pkgsrc/regress/make-shell/spec
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Added files:
Index: pkgsrc/regress/make-shell/Makefile
diff -u /dev/null pkgsrc/regress/make-shell/Makefile:1.1
--- /dev/null Fri May 1 19:16:47 2020
+++ pkgsrc/regress/make-shell/Makefile Fri May 1 19:16:47 2020
@@ -0,0 +1,32 @@
+# $NetBSD: Makefile,v 1.1 2020/05/01 19:16:47 rillig Exp $
+#
+# This regression test demonstrates which features are supported by the
+# shell that is used internally by devel/bmake. That shell may be
+# different from /bin/sh and ${SH} and TOOLS_PLATFORM.sh.
+#
+# This is most interesting for platforms whose /bin/sh is so broken that
+# it is basically unusable, such as SunOS 10 and earlier.
+
+DISTNAME= make-shell-2020.05.01
+CATEGORIES= regress
+MASTER_SITES= # none
+DISTFILES= # none
+
+MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+COMMENT= Test features of the shell used by bmake
+
+WRKSRC= ${WRKDIR}
+PLIST_SRC= # none
+
+do-regress:
+ # Up to May 2020, shell functions were not used in package
+ # Makefiles. But could they?
+ ${RUN} func() { :; }; func
+
+ # The Solaris /bin/sh cannot handle these word expansions.
+ # Therefore on Solaris, bmake uses /usr/xpg4/bin/sh instead.
+ # Make sure that these don't produce a syntax error.
+ ${RUN} path="1/2/3/4"; one=$${path%%/*}
+ ${RUN} path="1/2/3/4"; four=$${path##*/}
+
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/regress/make-shell/spec
diff -u /dev/null pkgsrc/regress/make-shell/spec:1.1
--- /dev/null Fri May 1 19:16:47 2020
+++ pkgsrc/regress/make-shell/spec Fri May 1 19:16:47 2020
@@ -0,0 +1,15 @@
+# $NetBSD: spec,v 1.1 2020/05/01 19:16:47 rillig Exp $
+#
+
+do_test() {
+ $TEST_MAKE do-regress 1> "$TEST_OUTFILE" 2>&1 \
+ || TEST_EXITSTATUS=$?
+}
+
+do_cleanup() {
+ $TEST_MAKE clean
+}
+
+check_result() {
+ exit_status 0
+}
Home |
Main Index |
Thread Index |
Old Index