about summary refs log tree commit diff
path: root/test/pgmnoise.test
blob: 8ee2fcccae76f2856a63f2cd1a757d26586310e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /bin/bash
# This script tests: pgmnoise
# Also requires: 

# We first check whether random number generator is glibc rand().
# If not, this test is skipped.

${PBM_TESTPREFIX}pgmnoise --testrandom

case $? in
   81)
        # Should print: 1663614689 10015
        ${PBM_TESTPREFIX}pgmnoise --randomseed=0 100 100 | cksum ;;

        # Any additional tests go here.

   8[02-9] | 90)
        echo "Skipping: random number generator is not glibc." 1>&2
        exit 80;;

   *)   exit 1;;  # pgmnoise --testrandom failed
esac