facf0c92e0
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
37 lines
849 B
Bash
Executable File
37 lines
849 B
Bash
Executable File
#!/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
|