File: write-error-msg

package info (click to toggle)
grep 3.3-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 13,404 kB
  • sloc: ansic: 77,930; sh: 10,347; perl: 567; makefile: 364; awk: 71; sed: 16
file content (55 lines) | stat: -rwxr-xr-x 1,840 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/bin/sh
# Ensure that output errors are reported with errno information.

# Copyright 2016-2018 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 <https://www.gnu.org/licenses/>.

. "${srcdir=.}/init.sh"; path_prepend_ ../src
test -e /dev/full || skip_ your system lacks /dev/full

export LC_ALL=C

# generate large input, filling the libc stdio buffers
# and triggering a write(2) even without line buffering.
yes 12345 | head -n 50000 > in || framework_failure_

fail=0

# disk-full error, line buffered
# (note: GNU grep returns 2 on error)
returns_ 2 grep --line-buffered -v '^$' <in >/dev/full 2>err1 \
    || framework_failure_

# disk-full error, unbuffered
# (note: GNU grep returns 2 on error)
returns_ 2 grep -v '^$' <in >/dev/full 2>err2 \
    || framework_failure_

# ensure each error message file contains a 'write error' with additional text
for f in err1 err2 ;
do
    grep -Eiq '^[^:]*: write error: [a-z]+' $f \
        || {
             warn_ "incorrect/missing error message in file $f"
             compare /dev/null $f   # print the content in the logs
             fail=1
           }
done

# These messages should be identical
compare err1 err2 \
    || { warn_ "err1,err2 contain different error messages" ; fail=1 ; }

Exit $fail