~ubuntu-branches/ubuntu/saucy/verilator/saucy-proposed

« back to all changes in this revision

Viewing changes to test_regress/t/t_wire_types.pl

  • Committer: Package Import Robot
  • Author(s): أحمد المحمودي (Ahmed El-Mahmoudy)
  • Date: 2013-02-10 17:14:43 UTC
  • mfrom: (1.2.17)
  • Revision ID: package-import@ubuntu.com-20130210171443-58ibaqe3eq5uitns
Tags: 3.845-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
$Self->{verilated_randReset} = 1;  # allow checking if we initialize vars to zero only when needed
 
11
 
 
12
compile (
 
13
         );
 
14
 
 
15
execute (
 
16
         check_finished=>1,
 
17
     );
 
18
 
 
19
ok(1);
 
20
1;