summaryrefslogtreecommitdiff
path: root/regress/sys/ffs/tests/chflags/01.t
diff options
context:
space:
mode:
Diffstat (limited to 'regress/sys/ffs/tests/chflags/01.t')
-rw-r--r--regress/sys/ffs/tests/chflags/01.t13
1 files changed, 13 insertions, 0 deletions
diff --git a/regress/sys/ffs/tests/chflags/01.t b/regress/sys/ffs/tests/chflags/01.t
new file mode 100644
index 00000000000..70cc6e6e748
--- /dev/null
+++ b/regress/sys/ffs/tests/chflags/01.t
@@ -0,0 +1,13 @@
+#!/bin/sh
+# $FreeBSD: src/tools/regression/fstest/tests/chflags/01.t,v 1.1 2007/01/17 01:42:08 pjd Exp $
+
+desc="chflags returns ENOTDIR if a component of the path prefix is not a directory"
+
+n0=`namegen`
+n1=`namegen`
+
+expect 0 mkdir ${n0} 0755
+expect 0 create ${n0}/${n1} 0644
+expect ENOTDIR chflags ${n0}/${n1}/test UF_IMMUTABLE
+expect 0 unlink ${n0}/${n1}
+expect 0 rmdir ${n0}