#!/bin/sh
# Set regression debug listing on/off
# This has to be sourced to work right
#
if test $1 = "on" ; then
  REGRESS_DEBUG=1
  echo "Setting debug on"
else
  REGRESS_DEBUG=0
  echo "Setting debug off"
fi
export REGRESS_DEBUG
