From 6903c52ef7d63fcc1565d9018983e16f845f9477 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Wed, 26 Jun 2019 19:12:57 -0400 Subject: [PATCH] Tests: Add coverage of missing include error. --- test_regress/t/t_preproc_inc_notfound_bad.out | 18 ++++++++++++++++++ test_regress/t/t_preproc_inc_notfound_bad.pl | 18 ++++++++++++++++++ test_regress/t/t_preproc_inc_notfound_bad.v | 6 ++++++ 3 files changed, 42 insertions(+) create mode 100644 test_regress/t/t_preproc_inc_notfound_bad.out create mode 100755 test_regress/t/t_preproc_inc_notfound_bad.pl create mode 100644 test_regress/t/t_preproc_inc_notfound_bad.v diff --git a/test_regress/t/t_preproc_inc_notfound_bad.out b/test_regress/t/t_preproc_inc_notfound_bad.out new file mode 100644 index 000000000..f7ab1fbaa --- /dev/null +++ b/test_regress/t/t_preproc_inc_notfound_bad.out @@ -0,0 +1,18 @@ +%Error: t/t_preproc_inc_notfound_bad.v:6: Cannot find include file: this_file_is_not_found.vh + ... Looked in: + t/this_file_is_not_found.vh + t/this_file_is_not_found.vh.v + t/this_file_is_not_found.vh.sv + obj_dir//this_file_is_not_found.vh + obj_dir//this_file_is_not_found.vh.v + obj_dir//this_file_is_not_found.vh.sv + ../include/this_file_is_not_found.vh + ../include/this_file_is_not_found.vh.v + ../include/this_file_is_not_found.vh.sv + this_file_is_not_found.vh + this_file_is_not_found.vh.v + this_file_is_not_found.vh.sv + obj_vlt/t_preproc_inc_notfound_bad/this_file_is_not_found.vh + obj_vlt/t_preproc_inc_notfound_bad/this_file_is_not_found.vh.v + obj_vlt/t_preproc_inc_notfound_bad/this_file_is_not_found.vh.sv +%Error: Exiting due to diff --git a/test_regress/t/t_preproc_inc_notfound_bad.pl b/test_regress/t/t_preproc_inc_notfound_bad.pl new file mode 100755 index 000000000..b09f43e8b --- /dev/null +++ b/test_regress/t/t_preproc_inc_notfound_bad.pl @@ -0,0 +1,18 @@ +#!/usr/bin/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. + +scenarios(linter => 1); + +lint( + fails => 1, + expect_filename => $Self->{golden_filename}, + ); + +ok(1); +1; diff --git a/test_regress/t/t_preproc_inc_notfound_bad.v b/test_regress/t/t_preproc_inc_notfound_bad.v new file mode 100644 index 000000000..e225ca5cd --- /dev/null +++ b/test_regress/t/t_preproc_inc_notfound_bad.v @@ -0,0 +1,6 @@ +// DESCRIPTION: Verilator: Verilog Test module +// +// This file ONLY is placed into the Public Domain, for any use, +// without warranty, 2019 by Wilson Snyder. + +`include "this_file_is_not_found.vh"