#! /usr/bin/ksh
#
# Function reportError: report an error to stderr
#
# Author: Tim Unser

echo ">>>>> ERROR <<<<< : rc: 1 $*"

if [[ -n $PD_PAUSE_ON_ERROR ]]
then
   echo ""
   echo "PAUSED ON ERROR:  Press ENTER to continue test execution or Ctrl-C to quit."
   read answer
fi
#
#    Version      Date     Time    Owner   Comment
# ------------- -------- -------- -------- ----------------------------
# V1.2          07/27/94 13:49:34 hlava    Change to use report scripts for output
