#!/bin/sh
# $Id: t-edblog-0.sh,v 1.2 2006/10/05 01:42:33 ca Exp $
# Copyright (c) 2005 Sendmail, Inc. and its suppliers.
#	All rights reserved.
#
# By using this file, you agree to the terms and conditions set
# forth in the LICENSE file which can be found at the top level of
# the sendmail distribution.
#
#
test -s stop && exit 1
# 

if test X"${MTA_NO_LOG_TEST}" != "X"
then
  exit 0
fi

STDOUT=log.out
STDERR=log.err
FILTERR=filt.err
ERRS=0
OKERR=ok.err
./t-edblog-0  > ${STDOUT} 2> ${STDERR} || ERRS=1

grep 'nosuchfile' ${STDERR} >/dev/null || ERRS=1

exit ${ERRS}


syntax highlighted by Code2HTML, v. 0.9.1