~ubuntu-branches/ubuntu/jaunty/primer3/jaunty

« back to all changes in this revision

Viewing changes to test/dpal_gen.pl

  • Committer: Bazaar Package Importer
  • Author(s): Charles Plessy
  • Date: 2006-09-28 20:18:54 UTC
  • Revision ID: james.westby@ubuntu.com-20060928201854-45pwapz5e3a6d684
Tags: upstream-1.0b
ImportĀ upstreamĀ versionĀ 1.0b

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/local/bin/perl5 -w
 
2
 
 
3
$exe = shift @ARGV;
 
4
 
 
5
$ENV{TC_SILENT} = '1';
 
6
 
 
7
while (<>) {
 
8
    chop;
 
9
    $ENV{TC_COMMENT} = "$exe $_";
 
10
    system "$exe $_";
 
11
}