maint: update quoting of "Try `prog --help'" to "Try 'prog --help'"
[coreutils.git] / tests / mv / diag
blobc8ba7f3e7d7e61b80ff61b77ab6489ae38003771
1 #!/bin/sh
2 # make sure we get proper diagnostics: e.g., with --target-dir=d but no args
4 # Copyright (C) 2000, 2004, 2006-2012 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 . "${srcdir=.}/init.sh"; path_prepend_ ../src
20 print_ver_ mv
22 touch f1 || framework_failure_
23 touch f2 || framework_failure_
24 touch d || framework_failure_
26 # These mv commands should all exit nonzero.
28 # Too few args. This first one did fail, but with an incorrect diagnostic
29 # until fileutils-4.0u.
30 mv --target=. >> out 2>&1 && fail=1
31 mv no-file >> out 2>&1 && fail=1
33 # Target is not a directory.
34 mv f1 f2 f1 >> out 2>&1 && fail=1
35 mv --target=f2 f1 >> out 2>&1 && fail=1
37 cat > exp <<\EOF
38 mv: missing file operand
39 Try 'mv --help' for more information.
40 mv: missing destination file operand after `no-file'
41 Try 'mv --help' for more information.
42 mv: target `f1' is not a directory
43 mv: target `f2' is not a directory
44 EOF
46 compare exp out || fail=1
48 Exit $fail