Tests: Add process test #2527

This commit is contained in:
Wilson Snyder 2020-08-31 19:02:58 -04:00
parent 70eb99b050
commit 600641b4a1
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,16 @@
#!/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.
scenarios(linter => 1);
lint(
);
ok(1);
1;

View File

@ -0,0 +1,23 @@
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2020 by Wilson Snyder.
// SPDX-License-Identifier: CC0-1.0
module t (
);
// Overrides standard class
class process;
endclass
class mailbox;
endclass
class semaphore;
endclass
initial begin
$write("*-* All Finished *-*\n");
$finish;
end
endmodule