Deleted Added
full compact
legacy_test.sh (145620) legacy_test.sh (146822)
1#!/bin/sh
2
1#!/bin/sh
2
3# $FreeBSD: head/tools/regression/usr.bin/make/basic/t2/test.t 145620 2005-04-28 13:20:48Z harti $
3# $FreeBSD: head/tools/regression/usr.bin/make/basic/t2/test.t 146822 2005-05-31 14:13:07Z harti $
4
5cd `dirname $0`
6. ../../common.sh
7
4
5cd `dirname $0`
6. ../../common.sh
7
8setup_test()
9{
10 cat > ${WORK_DIR}/Makefile << _EOF_
11all:
12 echo hello
13_EOF_
14}
8# Description
9DESC="A Makefile file with only a 'all:' file dependency specification, and shell command."
15
10
16desc_test()
17{
18 echo "A Makefile file with only a 'all:' file dependency specification, and shell command."
19}
11# Run
12TEST_N=1
13TEST_1=
20
14
21eval_cmd $1
15eval_cmd $*