Line 2... |
Line 2... |
#
|
#
|
##############################################################################
|
##############################################################################
|
#
|
#
|
# run_regression.pl
|
# run_regression.pl
|
#
|
#
|
# $Id: run_regression.pl,v 1.5 2006-06-11 13:51:54 arniml Exp $
|
# $Id: run_regression.pl,v 1.6 2006-06-11 22:20:45 arniml Exp $
|
#
|
#
|
# Copyright (c) 2006, Arnim Laeuger (arniml@opencores.org)
|
# Copyright (c) 2006, Arnim Laeuger (arniml@opencores.org)
|
#
|
#
|
# All rights reserved
|
# All rights reserved
|
#
|
#
|
Line 28... |
Line 28... |
my $project_dir = $ENV{'PROJECT_DIR'};
|
my $project_dir = $ENV{'PROJECT_DIR'};
|
my $verif_dir = $project_dir.'/sw/verif';
|
my $verif_dir = $project_dir.'/sw/verif';
|
my $sim_dir = $project_dir.'/sim/rtl_sim';
|
my $sim_dir = $project_dir.'/sim/rtl_sim';
|
|
|
# the testbenches and their identifiers
|
# the testbenches and their identifiers
|
my %testbenches = ('t41x' => ['./tb_t411_behav_c0'],
|
my %testbenches = ('t41x' => ['./tb_t410_behav_c0', './tb_t411_behav_c0'],
|
't42x' => ['./tb_t420_behav_c0', './tb_t421_behav_c0'],
|
't42x' => ['./tb_t420_behav_c0', './tb_t421_behav_c0'],
|
't420' => ['./tb_t420_behav_c0'],
|
't420' => ['./tb_t420_behav_c0'],
|
'int' => ['./tb_int_behav_c0'],
|
'int' => ['./tb_int_behav_c0'],
|
'mb' => ['./tb_microbus_behav_c0'],
|
'mb' => ['./tb_microbus_behav_c0'],
|
'prod' => ['./tb_prod_behav_c0']);
|
'prod' => ['./tb_prod_behav_c0']);
|