xref: /openbsd/regress/sys/ffs/tests/unlink/02.t (revision e5dd7070)
1#!/bin/sh
2# $FreeBSD: src/tools/regression/fstest/tests/unlink/02.t,v 1.1 2007/01/17 01:42:12 pjd Exp $
3
4desc="unlink returns ENAMETOOLONG if a component of a pathname exceeded 255 characters"
5
6expect 0 create ${name255} 0644
7expect 0 unlink ${name255}
8expect ENOENT unlink ${name255}
9expect ENAMETOOLONG unlink ${name256}
10