Commentary

This commit is contained in:
Wilson Snyder 2020-05-23 21:56:56 -04:00
parent cff4b5a5ee
commit 3097d5e093
3 changed files with 9 additions and 9 deletions

View File

@ -8,9 +8,9 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
# Version 2.0.
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
scenarios(vlt_all => 1);
scenarios(vlt => 1);
compile(
lint(
fails => 1,
expect_filename => $Self->{golden_filename},
);

View File

@ -8,9 +8,9 @@ if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); di
# Version 2.0.
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
scenarios(simulator => 1);
scenarios(linter => 1);
compile(
lint(
fails => $Self->{vlt_all},
expect_filename => $Self->{golden_filename},
);

View File

@ -10,15 +10,15 @@ program t;
typedef vec_t; // Forward
//UNSUP typedef vec_t; // Multi-forward is ok
typedef reg [SIZE-1:0] vec_t ;
typedef reg [SIZE-1:0] vec_t;
vec_t a; initial a =0;
typedef bit [SIZE-1:0] vec_bit_t ;
typedef bit [SIZE-1:0] vec_bit_t;
vec_bit_t b; initial b =0;
typedef int array [3];
typedef array array2 [2];
array2 ar [1];
typedef int array_t [3];
typedef array_t array2_t [2];
array2_t ar [1];
// Define before use
// Not sure how well supported this is elsewhere