forked from github/verilator
15 lines
259 B
Perl
Executable File
15 lines
259 B
Perl
Executable File
#!/usr/bin/perl
|
|
if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
|
|
|
|
compile (
|
|
v_flags2 => ['-v', 't/t_flag_libinc.v'],
|
|
);
|
|
|
|
execute (
|
|
check_finished=>1,
|
|
all_run_flags => ['+PLUS +INT=1234 +STRSTR'],
|
|
);
|
|
|
|
ok(1);
|
|
1;
|