Tizen 2.0 Release
[external/tizen-coreutils.git] / tests / misc / split-a
1 #!/bin/sh
2 # Show that split -a works.
3
4 # Copyright (C) 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
5
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 2 of the License, or
9 # (at your option) any later version.
10
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.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 # 02110-1301, USA.
20
21 if test "$VERBOSE" = yes; then
22   set -x
23   split --version
24 fi
25
26 . $srcdir/../lang-default
27
28 pwd=`pwd`
29 tmp=split-a.$$
30 trap 'status=$?; cd "$pwd" && rm -rf $tmp && exit $status' 0
31 trap '(exit $?); exit' 1 2 13 15
32
33 framework_failure=0
34 mkdir $tmp || framework_failure=1
35 cd $tmp || framework_failure=1
36
37 if test $framework_failure = 1; then
38   echo "$0: failure in testing framework" 1>&2
39   (exit 1); exit 1
40 fi
41
42 fail=0
43
44 # Generate a 27-byte file
45 # yes|tr -d y|head -n27 > in
46 echo abcdefghijklmnopqrstuvwxyz > in
47
48 # This should fail.
49 split -b 1 -a 1 in 2> err && fail=1
50 test -f xa || fail=1
51 test -f xz || fail=1
52 test -f xaa && fail=1
53 test -f xaz && fail=1
54 rm -f x*
55
56 # With a longer suffix, it must succeed.
57 split --verbose -b 1 -a 2 in 2> err || fail=1
58 test -f xaa || fail=1
59 test -f xaz || fail=1
60 test -f xba || fail=1
61 test -f xbb && fail=1
62
63 cat <<\EOF > exp
64 creating file `xaa'
65 creating file `xab'
66 creating file `xac'
67 creating file `xad'
68 creating file `xae'
69 creating file `xaf'
70 creating file `xag'
71 creating file `xah'
72 creating file `xai'
73 creating file `xaj'
74 creating file `xak'
75 creating file `xal'
76 creating file `xam'
77 creating file `xan'
78 creating file `xao'
79 creating file `xap'
80 creating file `xaq'
81 creating file `xar'
82 creating file `xas'
83 creating file `xat'
84 creating file `xau'
85 creating file `xav'
86 creating file `xaw'
87 creating file `xax'
88 creating file `xay'
89 creating file `xaz'
90 creating file `xba'
91 EOF
92
93 cmp err exp || fail=1
94 test $fail = 1 && diff err exp 2> /dev/null
95
96 (exit $fail); exit $fail