]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
Initial revision
authorGordon Matzigkeit <gord@gnu.ai.mit.edu>
Sun, 22 Jun 1997 20:00:03 +0000 (20:00 +0000)
committerGordon Matzigkeit <gord@gnu.org>
Sun, 22 Jun 1997 20:00:03 +0000 (20:00 +0000)
tests/assign.test [new file with mode: 0755]

diff --git a/tests/assign.test b/tests/assign.test
new file mode 100755 (executable)
index 0000000..fa78f43
--- /dev/null
@@ -0,0 +1,20 @@
+#! /bin/sh
+# assign.test - check that we don't put break or continue on the same
+#               line as an assignment
+
+# Test script header.
+need_prefix=no
+if test -z "$srcdir"; then
+  srcdir=`echo "$0" | sed 's%/[^/]*$%%'`
+  test "$srcdir" = "$0" && srcdir=.
+  test "${VERBOSE+set}" != "set" && VERBOSE=yes
+fi
+. $srcdir/defs || exit 1
+
+# Check that test -e isn't used in our portable shell scripts.
+if egrep -n '[^         ]=[^    ].*(break|continue)' $srcdir/../ltconfig $srcdir/../ltmain.sh; then
+  echo "cannot use \`break' or \`continue' on the same line as an assignment"
+  exit 1
+fi
+
+exit 0