Mercurial > hg > octave-kai > gnulib-hg
view tests/test-perror.sh @ 15851:ac542e4814bb
Fix documentation about math functions on MacOS X.
* doc/posix-functions/exp2.texi: Don't say the function is missing on
MacOS X 10.5.
* doc/posix-functions/fdim.texi: Likewise.
* doc/posix-functions/feclearexcept.texi: Likewise.
* doc/posix-functions/fegetenv.texi: Likewise.
* doc/posix-functions/fegetround.texi: Likewise.
* doc/posix-functions/feholdexcept.texi: Likewise.
* doc/posix-functions/feraiseexcept.texi: Likewise.
* doc/posix-functions/fesetenv.texi: Likewise.
* doc/posix-functions/fesetround.texi: Likewise.
* doc/posix-functions/fetestexcept.texi: Likewise.
* doc/posix-functions/feupdateenv.texi: Likewise.
* doc/posix-functions/fmax.texi: Likewise.
* doc/posix-functions/fmin.texi: Likewise.
* doc/posix-functions/log2.texi: Likewise.
* doc/posix-functions/modff.texi: Likewise.
* doc/posix-functions/nan.texi: Likewise.
* doc/posix-functions/nanf.texi: Likewise.
* doc/posix-functions/nextafterf.texi: Likewise.
* doc/posix-functions/remquo.texi: Likewise.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Fri, 07 Oct 2011 12:55:09 +0200 |
parents | d9fdb6400ff8 |
children |
line wrap: on
line source
#!/bin/sh : ${srcdir=.} . "$srcdir/init.sh"; path_prepend_ . # Test NULL prefix. Result should not contain a number. test-perror 2>&1 >/dev/null | LC_ALL=C tr -d '\r' > t-perror.tmp grep '[0-9]' t-perror.tmp > /dev/null \ && fail_ "result should not contain a number" # Test empty prefix. Result should be the same. test-perror '' 2>&1 >/dev/null | LC_ALL=C tr -d '\r' > t-perror1.tmp diff t-perror.tmp t-perror1.tmp \ || fail_ "empty prefix should behave like NULL argument" # Test non-empty prefix. test-perror foo 2>&1 >/dev/null | LC_ALL=C tr -d '\r' > t-perror3.tmp sed -e 's/^/foo: /' < t-perror.tmp > t-perror2.tmp diff t-perror2.tmp t-perror3.tmp || fail_ "prefix applied incorrectly" # Test exit status. test-perror >out 2>/dev/null || fail_ "unexpected exit status" test -s out && fail_ "unexpected output" Exit 0