File: test-error.sh

package info (click to toggle)
gnulib 20250303-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 188,756 kB
  • sloc: ansic: 378,600; sh: 30,630; python: 8,358; cpp: 2,811; yacc: 1,846; perl: 920; makefile: 577; lisp: 328; sed: 11; java: 5
file content (36 lines) | stat: -rwxr-xr-x 849 bytes parent folder | download | duplicates (18)
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
#!/bin/sh
# Test of the 'error' module.

. "${srcdir=.}/init.sh"; path_prepend_ .

${CHECKER} test-error${EXEEXT} > out 2> err
# Verify the exit code.
case $? in
  4) ;;
  *) Exit 1;;
esac

# Normalize the stderr output on Windows platforms.
tr -d '\015' < err | sed 's,.*test-error[.ex]*:,test-error:,' > err2 || Exit 1

# Verify the stderr output.
compare - err2 <<\EOF || Exit 1
test-error: bummer
test-error: Zonk 123 is too large
test-error: Pokémon started
test-error:d1/foo.c:10: invalid blub
test-error:d1/foo.c:10: invalid blarn
test-error:d1/foo.c:10: unsupported glink
test-error:d1/foo.c:13: invalid brump
test-error:d2/foo.c:13: unsupported flinge
hammer
boing 123 is too large
d2/bar.c:11: bark too loud
test-error: can't steal: Permission denied
test-error: fatal error
EOF

# Verify the stdout output.
test -s out && Exit 1

Exit 0