Skip to content

Commit

Permalink
Tests: Disabled test (verilator#4493)
Browse files Browse the repository at this point in the history
  • Loading branch information
wsnyder committed Sep 15, 2023
1 parent d840c61 commit 07013da
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 0 deletions.
25 changes: 25 additions & 0 deletions test_regress/t/t_fork_none_var.pl
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/usr/bin/env perl
if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
#
# Copyright 2023 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.
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0

scenarios(simulator => 1);

compile(
verilator_flags2 => ["--exe --main --timing"],
make_main => 0,
fails => $Self->{vlt_all}, # issue #4493
);

# issue #4493
#execute(
# check_finished => 1,
# );

ok(1);
1;
47 changes: 47 additions & 0 deletions test_regress/t/t_fork_none_var.v
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2023 by Wilson Snyder.
// SPDX-License-Identifier: CC0-1.0

module t(/*AUTOARG*/);

logic [3:0] m_mask;

initial begin
int i;
int n = 4;
m_mask = 0;
fork
begin
fork
begin
fork
begin
for(i = 0; i < n; i++) begin
fork
automatic int k = i;
begin
// issue #4493
$display("[%0t] start %0d", $time, k);
// UVM's arb_sequence_q[is_relevant_entries[k]].wait_for_relevant();
m_mask[k] = 1;
#1;
end
join_none
wait (m_mask[i]);
end
end
join_any
end
join_any
end
join

if (m_mask != {4{1'b1}}) $stop;

$write("*-* All Finished *-*\n");
$finish;
end

endmodule

0 comments on commit 07013da

Please sign in to comment.