forked from github/verilator
20 lines
639 B
Perl
20 lines
639 B
Perl
|
#!/usr/bin/perl
|
||
|
if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
|
||
|
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
|
||
|
#
|
||
|
# Copyright 2008 by Wilson Snyder. This program is free software; you can
|
||
|
# redistribute it and/or modify it under the terms of either the GNU
|
||
|
# General Public License or the Perl Artistic License.
|
||
|
|
||
|
compile (
|
||
|
v_flags2 => ["--top-module a "],
|
||
|
fails=>$Self->{v3},
|
||
|
nc=>0, # Need to get it not to give the prompt
|
||
|
expect=>
|
||
|
'%Error: Specified --top-module \'a\' isn.t at the top level, it.s under another cell.
|
||
|
%Error: Exiting due to.*',
|
||
|
) if $Self->{v3};
|
||
|
|
||
|
ok(1);
|
||
|
1;
|