verilator/test_regress/t/t_package_export_bad.pl
2017-09-20 21:04:59 -04:00

31 lines
1.1 KiB
Perl
Executable File

#!/usr/bin/perl
if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
#
# Copyright 2003 by Wilson Snyder. This program is free software; you can
# redistribute it and/or modify it under the terms of either the GNU
# Lesser General Public License Version 3 or the Perl Artistic License
# Version 2.0.
top_filename("t/t_package_export.v");
compile (
v_flags2 => ['+define+T_PACKAGE_EXPORT_BAD',],
fails=>1,
verilator_make_gcc => 0,
make_top_shell => 0,
make_main => 0,
expect=>
'%Error: t/t_package_export.v:\d+: Can\'t find definition of scope/variable: PARAM2
%Error: t/t_package_export.v:\d+: Can\'t find definition of scope/variable: PARAM3
%Error: t/t_package_export.v:\d+: Can\'t find definition of scope/variable: PARAM2
%Error: t/t_package_export.v:\d+: Can\'t find definition of scope/variable: PARAM3
%Error: t/t_package_export.v:\d+: Can\'t find definition of scope/variable: PARAM2
%Error: t/t_package_export.v:\d+: Can\'t find definition of scope/variable: PARAM3
%Error: Exiting due to.*',
);
ok(1);
1;