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

« back to all changes in this revision

Viewing changes to test_regress/t/t_clocker.pl

  • Committer: Package Import Robot
  • Author(s): أحمد المحمودي (Ahmed El-Mahmoudy)
  • Date: 2015-04-26 16:20:52 UTC
  • mfrom: (4.1.5 experimental)
  • Revision ID: package-import@ubuntu.com-20150426162052-69yjwh512m0adl2k
Tags: 3.872-2
* Upload to unstable.
* debian/patches/*: Added DEP-3 patch headers.
* Remove debian/gbp.conf, not needed in master branch.

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
#    verilator_flags2 => ["-Wno-UNOPTFLAT"]
 
12
    );
 
13
 
 
14
execute (
 
15
    check_finished=>1,
 
16
    );
 
17
 
 
18
ok(1);
 
19
1;