view config/bm/Pygar/processor_test/mips_nonblocking.cfx @ 23:90197e3375e2 pygar svn.24

[svn r24] added testing, but something is wrong with our c++ file.
author rlm
date Wed, 28 Apr 2010 08:19:09 -0400
parents
children
line wrap: on
line source
1 : # -*-Perl-*-
2 eval 'exec perl -w "$0" ${1+"$@"}'
3 if 0;
5 use Asim;
6 use strict;
8 ##
9 ## Generate cfg files for 6.375 tests and benchmarks.
10 ##
12 my $gcfg = Asim::GenCFG->new();
15 my @bmarks = ("median_noprealloc",
16 "multiply_noprealloc",
17 "towers_noprealloc",
18 "qsort_noprealloc",
19 "vvadd_noprealloc");
21 foreach my $bmark (@bmarks) {
22 $gcfg->add(name => $bmark,
23 tree => [ "benchmarks" ],
24 setup => "scripts/setup-mit-6.375-bmark-processor --isa smips $bmark",
25 feeder => "vcs",
26 feedflags => "program.0/${bmark}.smips.vmh",
27 );
28 }
30 $gcfg->action(@ARGV);