diff options
Diffstat (limited to 'tests/link/09.t')
-rw-r--r-- | tests/link/09.t | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/link/09.t b/tests/link/09.t new file mode 100644 index 000000000000..5f89655d3610 --- /dev/null +++ b/tests/link/09.t @@ -0,0 +1,18 @@ +#!/bin/sh +# $FreeBSD: head/tools/regression/pjdfstest/tests/link/09.t 211352 2010-08-15 21:24:17Z pjd $ + +desc="link returns ENOENT if the source file does not exist" + +dir=`dirname $0` +. ${dir}/../misc.sh + +echo "1..5" + +n0=`namegen` +n1=`namegen` + +expect 0 create ${n0} 0644 +expect 0 link ${n0} ${n1} +expect 0 unlink ${n0} +expect 0 unlink ${n1} +expect ENOENT link ${n0} ${n1} |