diff --git a/test_regress/t/t_0.pl b/test_regress/t/t_0.pl deleted file mode 100755 index b46d46042..000000000 --- a/test_regress/t/t_0.pl +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/env 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. -# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0 - -scenarios(simulator => 1); - -compile( - ); - -execute( - check_finished => 1, - ); - -ok(1); -1; diff --git a/test_regress/t/t_0.v b/test_regress/t/t_0.v deleted file mode 100644 index 0d26d323e..000000000 --- a/test_regress/t/t_0.v +++ /dev/null @@ -1,21 +0,0 @@ -// DESCRIPTION: Verilator: Verilog Test module -// -// This file ONLY is placed under the Creative Commons Public Domain, for -// any use, without warranty, 2009 by Wilson Snyder. -// SPDX-License-Identifier: CC0-1.0 - -module t (/*AUTOARG*/); - - enum int unsigned { - FIVE_INT = 5 - } FI; - - int array5i[FIVE_INT]; - - initial begin - if ($size(array5i) != 5) $stop; - $write("*-* All Finished *-*\n"); - $finish; - end - -endmodule