projects
/
dragonfly.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Added test for missing Makefile
[dragonfly.git]
/
usr.bin
/
make
/
tests
/
basic
/
t3
/
test.sh
1
#!/bin/sh
2
3
# $DragonFly: src/usr.bin/make/tests/basic/t3/test.sh,v 1.1 2005/02/26 10:43:09 okumoto Exp $
4
5
. ../../common.sh
6
7
run_test()
8
{
9
rm -f Makefile
10
11
$MAKE 1> stdout 2> stderr
12
echo $? > status
13
}
14
15
desc_test()
16
{
17
echo "No Makefile file."
18
}
19
20
eval_cmd $1