1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-02-23 23:56:08 +02:00
Files
coreutils/tests/split/numeric.sh
Michael Heimpold 73c8452e83 split: add new --hex-suffixes option
* doc/coreutils.texi (split invocation): Document the new option.
* src/split.c (usage): Likewise.
(main): Process the new option much like --numeric-suffixes,
but with an adjusted alphabet.
* tests/split/numeric.sh: Refactor to support --hex mode.
* NEWS: Mention the new feature.
2017-03-27 20:32:58 -07:00

52 lines
1.8 KiB
Bash
Executable File

#!/bin/sh
# Test --{hex,numeric}-suffixes[=from]
# Copyright (C) 2012-2017 Free Software Foundation, Inc.
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
. "${srcdir=.}/tests/init.sh"; path_prepend_ ./src
print_ver_ split
printf '1\n2\n3\n4\n5\n' > in || framework_failure_
printf '%s\n' 1 2 > exp-0 || framework_failure_
printf '%s\n' 3 4 > exp-1 || framework_failure_
printf '%s\n' 5 > exp-2 || framework_failure_
for mode in 'numeric' 'hex'; do
for start in 0 9; do
mode_option="--$mode-suffixes"
# check with and without specified start value
test $start != '0' && mode_option="$mode_option=$start"
split $mode_option --lines=2 in || fail=1
test $mode = 'hex' && format=x || format=d
for i in $(seq $start $(($start+2))); do
compare exp-$(($i-$start)) x$(printf %02$format $i) || fail=1
done
done
# Check that split failed when suffix length is not large enough for
# the numerical suffix start value
returns_ 1 split -a 3 --$mode-suffixes=1000 in 2>/dev/null || fail=1
# check invalid --$mode-suffixes start values are flagged
returns_ 1 split --$mode-suffixes=-1 in 2> /dev/null || fail=1
returns_ 1 split --$mode-suffixes=one in 2> /dev/null || fail=1
done
Exit $fail