2019-10-17 23:44:10 +00:00
|
|
|
#!/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
|
|
|
|
# Lesser General Public License Version 3 or the Perl Artistic License
|
|
|
|
# Version 2.0.
|
|
|
|
|
2020-02-29 12:20:23 +00:00
|
|
|
|
2019-10-17 23:44:10 +00:00
|
|
|
scenarios(simulator => 1);
|
|
|
|
|
|
|
|
compile(
|
|
|
|
verilator_make_gmake => 0,
|
|
|
|
verilator_make_cmake => 1,
|
|
|
|
);
|
|
|
|
|
2020-02-29 12:20:23 +00:00
|
|
|
system("cmake --version");
|
|
|
|
if ($? != 0) {
|
|
|
|
skip("cmake is not installed");
|
|
|
|
} else {
|
|
|
|
my $cmakecache = $Self->{obj_dir}."/CMakeCache.txt";
|
|
|
|
if (! -e $cmakecache) {
|
2020-03-01 01:41:13 +00:00
|
|
|
error("$cmakecache does not exist.")
|
2020-02-29 12:20:23 +00:00
|
|
|
}
|
2019-10-17 23:44:10 +00:00
|
|
|
|
2020-02-29 12:20:23 +00:00
|
|
|
execute(
|
2020-03-01 01:41:13 +00:00
|
|
|
check_finished => 1,
|
|
|
|
);
|
2019-10-17 23:44:10 +00:00
|
|
|
}
|
|
|
|
ok(1);
|
|
|
|
1;
|