summaryrefslogtreecommitdiff
path: root/release/src/router/busybox/testsuite/ln/ln-preserves-soft-links
blob: a8123ece33adbe48f2d91a972b9c3fe941fddfd7 (plain)
1
2
3
4
5
6
7
8
9
echo file number one > file1
echo file number two > link1
set +e
busybox ln -s file1 link1
if [ $? != 0 ] ; then
	exit 0;
fi
exit 1;