mirror of
https://github.com/verilator/verilator.git
synced 2025-01-01 04:07:34 +00:00
Remove driver.pl - deprecated earlier with driver.py
This commit is contained in:
parent
2fc94557a0
commit
1df20f7076
File diff suppressed because it is too large
Load Diff
@ -1,23 +0,0 @@
|
|||||||
#!/usr/bin/env perl
|
|
||||||
# DESCRIPTION: Verilator: Verilog Test driver bootstrapper
|
|
||||||
#
|
|
||||||
# Copyright 2008-2024 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
|
|
||||||
|
|
||||||
# This is exec'ed by every test that is run standalone (called from the
|
|
||||||
# shell as ./t_test_name.pl)
|
|
||||||
|
|
||||||
use FindBin;
|
|
||||||
use Cwd qw(chdir);
|
|
||||||
|
|
||||||
my @args = @ARGV;
|
|
||||||
chdir("$FindBin::Bin/..");
|
|
||||||
$ENV{PWD} = Cwd::getcwd(); # Else chdir leaves the .. which confuses later commands
|
|
||||||
|
|
||||||
@args = map { s!.*test_regress/!!; $_; } @args;
|
|
||||||
|
|
||||||
exec("./driver.pl", @args);
|
|
||||||
die "$!, in exec";
|
|
@ -42,13 +42,8 @@ EXEMPT_FILES_LIST = """
|
|||||||
test_regress/t/t_flag_f__3.v
|
test_regress/t/t_flag_f__3.v
|
||||||
test_regress/t/t_fuzz_eof_bad.v
|
test_regress/t/t_fuzz_eof_bad.v
|
||||||
test_regress/t/t_incr_void.v
|
test_regress/t/t_incr_void.v
|
||||||
test_regress/t/t_timing_trace_fst.pl
|
|
||||||
test_regress/t/t_uvm_pkg_all.vh
|
test_regress/t/t_uvm_pkg_all.vh
|
||||||
test_regress/t/t_uvm_pkg_todo.vh
|
test_regress/t/t_uvm_pkg_todo.vh
|
||||||
test_regress/t/t_wrapper_context.pl
|
|
||||||
test_regress/t/t_wrapper_context_fst.pl
|
|
||||||
test_regress/t/t_wrapper_context_seq.pl
|
|
||||||
test_regress/t/t_wrapper_del_context_bad.pl
|
|
||||||
test_regress/t/tsub/t_flag_f_tsub.v
|
test_regress/t/tsub/t_flag_f_tsub.v
|
||||||
test_regress/t/tsub/t_flag_f_tsub_inc.v
|
test_regress/t/tsub/t_flag_f_tsub_inc.v
|
||||||
verilator.pc.in
|
verilator.pc.in
|
||||||
|
@ -13,7 +13,7 @@ test.scenarios('dist')
|
|||||||
|
|
||||||
root = ".."
|
root = ".."
|
||||||
|
|
||||||
for pl in sorted(test.glob_some(root + "/test_regress/t/*.pl")):
|
for pl in sorted(glob.glob(root + "/test_regress/t/*.pl")):
|
||||||
if 'bootstrap.pl' in pl:
|
if 'bootstrap.pl' in pl:
|
||||||
continue
|
continue
|
||||||
py = re.sub(r'\.pl', '.py', pl)
|
py = re.sub(r'\.pl', '.py', pl)
|
||||||
|
Loading…
Reference in New Issue
Block a user