mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 12:12:39 +00:00
Remove vgen test to avoid Bit::Vector for testing.
This commit is contained in:
parent
016611021d
commit
80564a8f89
@ -40,7 +40,7 @@ RUN apt-get update \
|
|||||||
|
|
||||||
WORKDIR /tmp
|
WORKDIR /tmp
|
||||||
|
|
||||||
RUN cpan install -fi Unix::Processors Parallel::Forker Bit::Vector
|
RUN cpan install -fi Unix::Processors Parallel::Forker
|
||||||
|
|
||||||
RUN git clone https://github.com/veripool/vcddiff.git && \
|
RUN git clone https://github.com/veripool/vcddiff.git && \
|
||||||
make -C vcddiff && \
|
make -C vcddiff && \
|
||||||
|
@ -94,7 +94,6 @@ elif [ "$TRAVIS_BUILD_STAGE_NAME" = "test" ]; then
|
|||||||
if [ "$TRAVIS_DIST" != "trusty" ]; then
|
if [ "$TRAVIS_DIST" != "trusty" ]; then
|
||||||
TRAVIS_CPAN_REPO=https://cpan.org
|
TRAVIS_CPAN_REPO=https://cpan.org
|
||||||
fi
|
fi
|
||||||
# Not listing Bit::Vector as slow to install, and only skips one test
|
|
||||||
yes yes | sudo cpan -M $TRAVIS_CPAN_REPO -fi Unix::Processors Parallel::Forker
|
yes yes | sudo cpan -M $TRAVIS_CPAN_REPO -fi Unix::Processors Parallel::Forker
|
||||||
install-vcddiff
|
install-vcddiff
|
||||||
else
|
else
|
||||||
|
@ -102,7 +102,6 @@ Those developing Verilator itself may also want these (see internals.adoc):
|
|||||||
cpan install Pod::Perldoc
|
cpan install Pod::Perldoc
|
||||||
cpan install Unix::Processors
|
cpan install Unix::Processors
|
||||||
cpan install Parallel::Forker
|
cpan install Parallel::Forker
|
||||||
cpan install Bit::Vector
|
|
||||||
|
|
||||||
==== Install SystemC
|
==== Install SystemC
|
||||||
|
|
||||||
|
@ -628,8 +628,6 @@ https://github.com/veripool/vcddiff
|
|||||||
|
|
||||||
* Cmake for build paths that use it.
|
* Cmake for build paths that use it.
|
||||||
|
|
||||||
* Bit::Vector to test vgen.pl
|
|
||||||
|
|
||||||
=== Controlling the Test Driver
|
=== Controlling the Test Driver
|
||||||
|
|
||||||
Test drivers are written in PERL. All invoke the main test driver script,
|
Test drivers are written in PERL. All invoke the main test driver script,
|
||||||
|
@ -1,32 +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);
|
|
||||||
|
|
||||||
if (eval "use Bit::Vector; return 2;" != 2) {
|
|
||||||
skip("Vgen test requires Bit::Vector");
|
|
||||||
} else {
|
|
||||||
|
|
||||||
top_filename("$Self->{obj_dir}/vgen.v");
|
|
||||||
|
|
||||||
run(cmd => ["./vgen.pl",
|
|
||||||
"-o $Self->{top_filename}",
|
|
||||||
#"--seed 0",
|
|
||||||
]);
|
|
||||||
|
|
||||||
compile(
|
|
||||||
);
|
|
||||||
|
|
||||||
execute(
|
|
||||||
check_finished => 1,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
ok(1);
|
|
||||||
1;
|
|
1068
test_regress/vgen.pl
1068
test_regress/vgen.pl
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user