source: vendor/sed/current/testsuite/subst-mb-incomplete.sh

Last change on this file was 3611, checked in by bird, 11 months ago

vendor/sed/current: GNU sed 4.9 (sed-4.9.tar.xz sha256:6e226b732e1cd739464ad6862bd1a1aba42d7982922da7a53519631d24975181)

  • Property svn:executable set to *
File size: 1.2 KB
Line 
1#!/bin/sh
2# Ensure that sed no longer writes beyond the end of a heap buffer when
3# performing a substitution with a replacement string containing an
4# incomplete multi-byte character.
5
6# Copyright (C) 2015-2022 Free Software Foundation, Inc.
7
8# This program is free software: you can redistribute it and/or modify
9# it under the terms of the GNU General Public License as published by
10# the Free Software Foundation, either version 3 of the License, or
11# (at your option) any later version.
12
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17
18# You should have received a copy of the GNU General Public License
19# along with this program. If not, see <https://www.gnu.org/licenses/>.
20. "${srcdir=.}/testsuite/init.sh"; path_prepend_ ./sed
21print_ver_ sed
22
23require_en_utf8_locale_
24
25echo > in || framework_failure_
26printf '\233\375\200\n' > exp-out || framework_failure_
27
28LC_ALL=en_US.utf8 sed $(printf 's/^/\\L\233\375\\\200/') in > out 2> err
29
30compare exp-out out || fail=1
31compare /dev/null err || fail=1
32
33Exit $fail
Note: See TracBrowser for help on using the repository browser.