~ubuntu-branches/ubuntu/wily/verilator/wily-proposed

« back to all changes in this revision

Viewing changes to test_regress/t/t_interface_param1.pl

  • Committer: Package Import Robot
  • Author(s): أحمد المحمودي (Ahmed El-Mahmoudy)
  • Date: 2014-06-17 19:59:50 UTC
  • mfrom: (1.2.28)
  • Revision ID: package-import@ubuntu.com-20140617195950-cikhbkjg8x545qdy
Tags: 3.862-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/perl
 
2
if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
 
3
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
 
4
#
 
5
# Copyright 2003 by Wilson Snyder. This program is free software; you can
 
6
# redistribute it and/or modify it under the terms of either the GNU
 
7
# Lesser General Public License Version 3 or the Perl Artistic License
 
8
# Version 2.0.
 
9
 
 
10
compile (
 
11
    v_flags2 => ["--lint-only"],
 
12
    verilator_make_gcc => 0,
 
13
    make_top_shell => 0,
 
14
    make_main => 0,
 
15
    );
 
16
 
 
17
ok(1);
 
18
1;