repo.or.cz
/
freebsd-src
/
fkvm-freebsd.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Ignore machine-check MSRs
[freebsd-src/fkvm-freebsd.git]
/
tools
/
regression
/
fstest
/
tests
/
chown
/
01.t
blob
9559e6e586e285c512d5c284a309a4a40c8d11f9
1
#!/bin/sh
2
# $FreeBSD$
3
4
desc
=
"chown returns ENOTDIR if a component of the path prefix is not a directory"
5
6
dir
=
`dirname
$0
`
7
.
${dir}
/
..
/
misc.sh
8
9
echo
"1..5"
10
11
n0
=
`namegen`
12
n1
=
`namegen`
13
14
expect
0
mkdir
${n0}
0755
15
expect
0
create
${n0}
/
${n1}
0644
16
expect ENOTDIR chown
${n0}
/
${n1}
/
test
65534 65534
17
expect
0
unlink
${n0}
/
${n1}
18
expect
0
rmdir
${n0}