view tests/test-dprintf-posix2.sh @ 16039:ae7cb951d5b4

Tests for module 'fma'. * modules/fma-tests: New file. * tests/test-fma1.c: New file. * tests/test-fma1.h: New file. * tests/test-fma2.c: New file. * tests/test-fma2.h: New file.
author Bruno Haible <bruno@clisp.org>
date Sun, 06 Nov 2011 02:28:32 +0100
parents c8f2d55830b2
children
line wrap: on
line source

#!/bin/sh

# Test against a memory leak.

(./test-dprintf-posix2${EXEEXT} 0
 result=$?
 if test $result != 77 && test $result != 78; then result=1; fi
 exit $result
) 2>/dev/null
malloc_result=$?
if test $malloc_result = 77; then
  echo "Skipping test: no way to determine address space size"
  exit 77
fi

./test-dprintf-posix2${EXEEXT} 1 > /dev/null
result=$?
if test $result = 77; then
  echo "Skipping test: no way to determine address space size"
  exit 77
fi
if test $result != 0; then
  exit 1
fi

if test $malloc_result = 78; then
  echo "Skipping test: get_rusage_as() doesn't work"
  exit 77
fi

exit 0