File: assign.test

package info (click to toggle)
libtool 1.4.2-4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 5,304 kB
  • ctags: 831
  • sloc: sh: 8,394; ansic: 3,706; makefile: 415
file content (20 lines) | stat: -rwxr-xr-x 570 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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/../ltmain.sh; then
  echo "cannot use \`break' or \`continue' on the same line as an assignment"
  exit 1
fi

exit 0