mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-04-19 18:26:32 +02:00
New test for change of 2002-02-05.
This commit is contained in:
44
tests/misc/split-a
Executable file
44
tests/misc/split-a
Executable file
@@ -0,0 +1,44 @@
|
||||
#!/bin/sh
|
||||
# Show that split -a works.
|
||||
|
||||
if test "$VERBOSE" = yes; then
|
||||
set -x
|
||||
split --version
|
||||
fi
|
||||
|
||||
pwd=`pwd`
|
||||
tmp=split-a.$$
|
||||
trap 'status=$?; cd $pwd; rm -rf $tmp && exit $status' 0
|
||||
trap '(exit $?); exit' 1 2 13 15
|
||||
|
||||
framework_failure=0
|
||||
mkdir $tmp || framework_failure=1
|
||||
cd $tmp || framework_failure=1
|
||||
|
||||
if test $framework_failure = 1; then
|
||||
echo '$0: failure in testing framework' 1>&2
|
||||
(exit 1); exit
|
||||
fi
|
||||
|
||||
fail=0
|
||||
|
||||
# Generate a 27-byte file
|
||||
# yes|tr -d y|head -n27 > in
|
||||
echo abcdefghijklmnopqrstuvwxyz > in
|
||||
|
||||
# This should fail.
|
||||
split -b 1 -a 1 in 2> err && fail=1
|
||||
test -f xa || fail=1
|
||||
test -f xz || fail=1
|
||||
test -f xaa && fail=1
|
||||
test -f xaz && fail=1
|
||||
rm -f x*
|
||||
|
||||
# With a longer suffix, it must succeed.
|
||||
split -b 1 -a 2 in 2> err || fail=1
|
||||
test -f xaa || fail=1
|
||||
test -f xaz || fail=1
|
||||
test -f xba || fail=1
|
||||
test -f xbb && fail=1
|
||||
|
||||
(exit $fail); exit
|
||||
Reference in New Issue
Block a user