1#!/bin/sh
2# $FreeBSD: src/tools/regression/fstest/tests/link/03.t,v 1.1 2007/01/17 01:42:09 pjd Exp $
3
4desc="link returns ENAMETOOLONG if an entire length of either path name exceeded 1023 characters"
5
6n0=`namegen`
7
8expect 0 mkdir ${name255} 0755
9expect 0 mkdir ${name255}/${name255} 0755
10expect 0 mkdir ${name255}/${name255}/${name255} 0755
11expect 0 mkdir ${path1021} 0755
12expect 0 create ${path1023} 0644
13expect 0 link ${path1023} ${n0}
14expect 0 unlink ${path1023}
15expect 0 link ${n0} ${path1023}
16expect 0 unlink ${path1023}
17expect ENAMETOOLONG link ${n0} ${path1024}
18expect 0 unlink ${n0}
19expect ENAMETOOLONG link ${path1024} ${n0}
20expect 0 rmdir ${path1021}
21expect 0 rmdir ${name255}/${name255}/${name255}
22expect 0 rmdir ${name255}/${name255}
23expect 0 rmdir ${name255}
24