2 # Show that split -a works.
4 # Copyright (C) 2002-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=.}/tests/init.sh"; path_prepend_ .
/src
22 a_z
='a b c d e f g h i j k l m n o p q r s t u v w x y z'
24 # Generate a 27-byte file
25 printf %s
$a_z 0 |
tr -d ' ' > in || framework_failure_
34 printf "creating file '%s'"'\n' $f
35 done > exp || framework_failure_
37 echo split: output
file suffixes exhausted \
38 > exp-too-short || framework_failure_
42 split -b 1 -a 1 in 2> err
&& fail
=1
48 compare exp-too-short err || fail
=1
50 # With a longer suffix, it must succeed.
51 split --verbose -b 1 -a 2 in > err || fail
=1
52 compare exp err || fail
=1
54 # Ensure that xbb is *not* created.
57 # Ensure that the 27 others files *were* created, and with expected contents.
60 expected_byte
=$
(cut
-b $n in)
62 test "$b" = "$expected_byte" || fail
=1
66 # Ensure that -a is independent of -[bCl]
67 split -a2 -b1000 < /dev
/null || fail
=1
68 split -a2 -l1000 < /dev
/null || fail
=1
69 split -a2 -C1000 < /dev
/null || fail
=1
71 # Ensure that -a fails early with a -n that is too large
73 split -a2 -n1000 < /dev
/null
&& fail
=1