xref: /freebsd/bin/rm/tests/rm_test.sh (revision d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf)
1*19b4f0dcSEd Maste#
2*19b4f0dcSEd Maste# Copyright 2018 Yuri Pankov
3*19b4f0dcSEd Maste#
4*19b4f0dcSEd Maste# Redistribution and use in source and binary forms, with or without
5*19b4f0dcSEd Maste# modification, are permitted provided that the following conditions
6*19b4f0dcSEd Maste# are met:
7*19b4f0dcSEd Maste# 1. Redistributions of source code must retain the above copyright
8*19b4f0dcSEd Maste#    notice, this list of conditions and the following disclaimer.
9*19b4f0dcSEd Maste# 2. Redistributions in binary form must reproduce the above copyright
10*19b4f0dcSEd Maste#    notice, this list of conditions and the following disclaimer in the
11*19b4f0dcSEd Maste#    documentation and/or other materials provided with the distribution.
12*19b4f0dcSEd Maste#
13*19b4f0dcSEd Maste# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14*19b4f0dcSEd Maste# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15*19b4f0dcSEd Maste# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16*19b4f0dcSEd Maste# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17*19b4f0dcSEd Maste# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18*19b4f0dcSEd Maste# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19*19b4f0dcSEd Maste# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20*19b4f0dcSEd Maste# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21*19b4f0dcSEd Maste# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22*19b4f0dcSEd Maste# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23*19b4f0dcSEd Maste# SUCH DAMAGE.
24*19b4f0dcSEd Maste#
25*19b4f0dcSEd Maste#
26*19b4f0dcSEd Maste
27*19b4f0dcSEd Masteatf_test_case unlink_dash_filename
28*19b4f0dcSEd Masteunlink_dash_filename_head()
29*19b4f0dcSEd Maste{
30*19b4f0dcSEd Maste	atf_set "descr" "unlink correctly handles -filename"
31*19b4f0dcSEd Maste}
32*19b4f0dcSEd Masteunlink_dash_filename_body()
33*19b4f0dcSEd Maste{
34*19b4f0dcSEd Maste	touch -- foo bar -foo -bar
35*19b4f0dcSEd Maste	atf_check -s exit:0 unlink foo
36*19b4f0dcSEd Maste	atf_check -s exit:0 unlink -- bar
37*19b4f0dcSEd Maste	atf_check -s exit:0 unlink -foo
38*19b4f0dcSEd Maste	atf_check -s exit:0 unlink -- -bar
39*19b4f0dcSEd Maste}
40*19b4f0dcSEd Maste
41*19b4f0dcSEd Masteatf_init_test_cases()
42*19b4f0dcSEd Maste{
43*19b4f0dcSEd Maste	atf_add_test_case unlink_dash_filename
44*19b4f0dcSEd Maste}
45