OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc4/] [contrib/] [reghunt/] [bin/] [gcc-test-accepts-invalid] - Diff between revs 265 and 519

Only display areas with differences | Details | Blame | View Log

Rev 265 Rev 519
#! /bin/sh
#! /bin/sh
# Test an "accepts-invalid" GCC bug, using environment variables set in
# Test an "accepts-invalid" GCC bug, using environment variables set in
# several reghunt scripts and configuration files.
# several reghunt scripts and configuration files.
#
#
# Copyright (C) 2007 Free Software Foundation.
# Copyright (C) 2007 Free Software Foundation.
#
#
# This file is free software; you can redistribute it and/or modify
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
# (at your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# GNU General Public License for more details.
#
#
# For a copy of the GNU General Public License, write the the
# For a copy of the GNU General Public License, write the the
# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
# Boston, MA 02111-1301, USA.
# Boston, MA 02111-1301, USA.
ID=$1
ID=$1
LOGID=`printf "%04d" ${ID}`
LOGID=`printf "%04d" ${ID}`
LOG=${BUGID}.${LOGID}.out
LOG=${BUGID}.${LOGID}.out
MSGID="bug ${BUGID}, id ${ID}"
MSGID="bug ${BUGID}, id ${ID}"
$REG_TEST_COMPILER $REG_OPTS $REG_TESTCASE > ${LOG} 2>&1
$REG_TEST_COMPILER $REG_OPTS $REG_TESTCASE > ${LOG} 2>&1
if [ $? -eq 0 ]; then
if [ $? -eq 0 ]; then
    echo "`date`  test compiled successfully for ${MSGID}"
    echo "`date`  test compiled successfully for ${MSGID}"
    exit $REG_FAIL
    exit $REG_FAIL
fi
fi
grep -q 'No such file or directory' ${LOG}
grep -q 'No such file or directory' ${LOG}
if [ $? -eq 0 ]; then
if [ $? -eq 0 ]; then
    echo "`date`    unexpected failure: missing file for ${MSGID}"
    echo "`date`    unexpected failure: missing file for ${MSGID}"
    exit $REG_ERROR
    exit $REG_ERROR
fi
fi
grep -q 'error' ${LOG}
grep -q 'error' ${LOG}
if [ $? -ne 0 ]; then
if [ $? -ne 0 ]; then
    echo "`date`    unexpected failure: no error message for ${MSGID}"
    echo "`date`    unexpected failure: no error message for ${MSGID}"
    exit $REG_ERROR
    exit $REG_ERROR
fi
fi
echo "`date`  compilation failed for ${MSGID}"
echo "`date`  compilation failed for ${MSGID}"
exit $REG_PASS
exit $REG_PASS
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.