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
/
open
/
12.t
blob
2726dc1f9fe9630339a04bd64dbc863cd92e222a
1
#!/bin/sh
2
# $FreeBSD$
3
4
desc
=
"open returns ELOOP if too many symbolic links were encountered in translating the pathname"
5
6
dir
=
`dirname
$0
`
7
.
${dir}
/
..
/
misc.sh
8
9
echo
"1..6"
10
11
n0
=
`namegen`
12
n1
=
`namegen`
13
14
expect
0
symlink
${n0} ${n1}
15
expect
0
symlink
${n1} ${n0}
16
expect ELOOP open
${n0}
/
test
O_RDONLY
17
expect ELOOP open
${n1}
/
test
O_RDONLY
18
expect
0
unlink
${n0}
19
expect
0
unlink
${n1}