verilator/test_regress/t/t_pipe_exit_bad.pl
2021-06-13 12:03:53 -04:00

25 lines
760 B
Perl
Executable File

#!/usr/bin/env perl
if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
#
# Copyright 2010-2011 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(vlt => 1);
top_filename("t/t_pipe_filter.v");
lint(
verilator_flags2 => ['-E --pipe-filter \'python3 t/t_pipe_exit_bad.pf\' '],
stdout_filename => $stdout_filename,
fails => 1,
expect =>
'%Error: t_pipe_exit_bad.pf: Intentional bad exit status....*',
);
ok(1);
1;