mirror of
https://github.com/coreutils/coreutils.git
synced 2024-11-28 20:44:42 +08:00
68 lines
1.5 KiB
Plaintext
68 lines
1.5 KiB
Plaintext
# -*- autoconf -*-
|
|
|
|
# Copyright (C) 2000 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 2 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, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
# 02110-1301, USA.
|
|
|
|
cat <<EOF
|
|
|
|
Executables (autoheader, autoupdate...)
|
|
|
|
EOF
|
|
|
|
AT_SETUP([dd's skip, seek, and conv=notrunc options])
|
|
|
|
AT_DATA(in, [[12345*7
|
|
]])
|
|
AT_DATA(out, [[abcdefghijklmnop
|
|
]])
|
|
|
|
AT_CHECK([dd bs=1 skip=1 seek=2 conv=notrunc count=3 if=in of=out], 0, [],
|
|
[3+0 records in
|
|
3+0 records out
|
|
])
|
|
AT_CHECK([cat out], 0, [ab234fghijklmnop
|
|
])
|
|
|
|
AT_CHECK([dd bskip=5 bseek=9 conv=notrunc count=1 if=in of=out], 0, [],
|
|
[0+1 records in
|
|
0+1 records out
|
|
])
|
|
AT_CHECK([cat out], 0, [ab234fghi*7
|
|
mnop
|
|
])
|
|
|
|
AT_CLEANUP
|
|
|
|
|
|
# ======================================================
|
|
AT_SETUP([dd])
|
|
AT_SETUP([dd's new bskip and bseek options])
|
|
|
|
AT_DATA(in, [[1*3
|
|
]])
|
|
AT_DATA(out, [[abcde
|
|
]])
|
|
|
|
AT_CHECK([dd bskip=1 bseek=2 count=1 if=in of=out], 0, [],
|
|
[0+1 records in
|
|
0+1 records out
|
|
])
|
|
AT_CHECK([cat out], 0, [ab*3
|
|
])
|
|
|
|
AT_CLEANUP
|