version 8.13
[coreutils.git] / tests / rm / f-1
blob2d353649c8b8f2b8e1b97d4a930dc3c41cb5fed6
1 #!/bin/sh
2 # Test "rm -f" with a nonexistent file.
4 # Copyright (C) 1997, 2002, 2004, 2006-2011 Free Software Foundation, Inc.
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 test=f-1
21 . "${srcdir=.}/init.sh"; path_prepend_ ../src
22 print_ver_ rm
24 mkdir -p d || framework_failure_
26 rm -f d/no-such-file || fail=1
28 Exit $fail