Deleted Added
full compact
02.t (166065) 02.t (211178)
1#!/bin/sh
1#!/bin/sh
2# $FreeBSD: head/tools/regression/fstest/tests/open/02.t 166065 2007-01-17 01:42:12Z pjd $
2# $FreeBSD: head/tools/regression/fstest/tests/open/02.t 211178 2010-08-11 16:33:17Z pjd $
3
3
4desc="open returns ENAMETOOLONG if a component of a pathname exceeded 255 characters"
4desc="open returns ENAMETOOLONG if a component of a pathname exceeded {NAME_MAX} characters"
5
6dir=`dirname $0`
7. ${dir}/../misc.sh
8
9echo "1..4"
10
5
6dir=`dirname $0`
7. ${dir}/../misc.sh
8
9echo "1..4"
10
11expect 0 open ${name255} O_CREAT 0620
12expect 0620 stat ${name255} mode
13expect 0 unlink ${name255}
14expect ENAMETOOLONG open ${name256} O_CREAT 0620
11nx=`namegen_max`
12nxx="${nx}x"
13
14expect 0 open ${nx} O_CREAT 0620
15expect regular,0620 stat ${nx} type,mode
16expect 0 unlink ${nx}
17expect ENAMETOOLONG open ${nxx} O_CREAT 0620