tests: change `...' to '...' on lines not matching /[=\$]/
[coreutils/ericb.git] / tests / rm / i-no-r
blob8a3e76958c3c7373c8d2b1ce9ff9dc4ab11c859c
1 #!/bin/sh
2 # Since the rewrite for fileutils-4.1.9, 'rm -i DIR' would mistakenly
3 # recurse into directory DIR. rm -i (without -r) must fail in that case.
4 # Fixed in coreutils-4.5.2.
6 # Copyright (C) 2002, 2006, 2008-2012 Free Software Foundation, Inc.
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 . "${srcdir=.}/init.sh"; path_prepend_ ../src
22 print_ver_ rm
24 mkdir dir || framework_failure_
25 echo y > y || framework_failure_
28 # This must fail.
29 rm -i dir < y > /dev/null 2>&1 && fail=1
31 # The directory must remain.
32 test -d dir || fail=1
34 Exit $fail