72 lines
2.7 KiB
Plaintext
72 lines
2.7 KiB
Plaintext
|
|
#
|
||
|
|
# Copyright (c) 1999 Guy Hutchison (ghutchis@pacbell.net)
|
||
|
|
#
|
||
|
|
# This source code is free software; you can redistribute it
|
||
|
|
# and/or modify it in source code form under the terms of the GNU
|
||
|
|
# General Public License as published by the Free Software
|
||
|
|
# Foundation; either version 2 of the License, or (at your option)
|
||
|
|
# any later version.
|
||
|
|
#
|
||
|
|
# This program is distributed in the hope that it will be useful,
|
||
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
|
# GNU General Public License for more details.
|
||
|
|
#
|
||
|
|
# You should have received a copy of the GNU General Public License
|
||
|
|
# along with this program; if not, write to the Free Software
|
||
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||
|
|
#
|
||
|
|
# Format of the file
|
||
|
|
#
|
||
|
|
# testname testtype directory
|
||
|
|
#
|
||
|
|
# The <testname> is the verilog file name minus an extension. It may contain
|
||
|
|
# an optional version prefix separated from the name with a ":". The test
|
||
|
|
# suite will use a version specific test instead of the default case.
|
||
|
|
#
|
||
|
|
# The <testtype> can be one of the following:
|
||
|
|
#
|
||
|
|
# normal: Normal results expected, i.e it should compile and execute
|
||
|
|
# producing at least a single line with PASSED.
|
||
|
|
#
|
||
|
|
# CO: Compile Only - Compile the file to the default output type.
|
||
|
|
#
|
||
|
|
# CN: Compile Null - Compile with the null target. Similar to CO.
|
||
|
|
#
|
||
|
|
# CE: Compile with Errors - We EXPECT errors - we're checking
|
||
|
|
# illegal syntax
|
||
|
|
#
|
||
|
|
# RE: Runtime with Errors - We EXPECT errors - we're checking
|
||
|
|
# illegal syntax
|
||
|
|
#
|
||
|
|
# EF: Expected fail - We EXPECT this test to fail - only use
|
||
|
|
# with older versions of Icarus.
|
||
|
|
#
|
||
|
|
# NI: Not implemented. Only use for version specific tests.
|
||
|
|
#
|
||
|
|
# <directory> is where the <testname>.v file is located.
|
||
|
|
#
|
||
|
|
# An optional fourth and fifth argument can be supplied.
|
||
|
|
#
|
||
|
|
# The fourth argument may be one of the following.
|
||
|
|
#
|
||
|
|
# modulename - Defines the top level module
|
||
|
|
# gold=filename - Compare a gold file against the generated log file.
|
||
|
|
# diff=filename1:filename2:skip_ln - Compare the two files for equality.
|
||
|
|
# Skip the first <skip_ln> lines or none.
|
||
|
|
#
|
||
|
|
# If a <modulename> is given you can supply a fifth argument for the
|
||
|
|
# gold or diff commands.
|
||
|
|
#
|
||
|
|
|
||
|
|
struct_packed_write_read normal,-g2009 ivltests
|
||
|
|
struct_packed_value_list normal,-g2009 ivltests
|
||
|
|
|
||
|
|
array_packed_write_read normal,-g2009 ivltests
|
||
|
|
array_packed_value_list normal,-g2009 ivltests
|
||
|
|
array_packed_sysfunct normal,-g2009 ivltests
|
||
|
|
|
||
|
|
sv_literals normal,-g2009 ivltests
|
||
|
|
sv_parameter_type normal,-g2009 ivltests
|
||
|
|
sv_interface normal,-g2009 ivltests
|