码迷,mamicode.com
首页 > 其他好文 > 详细

run_regress --perl

时间:2018-06-20 21:24:25      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:stl   system   CM   foreach   cas   AC   remove   man   ##   

#!/usr/bin/perl
print "TESTLIST File Name: @ARGV\n";
my $testlist = $ARGV[0];

open(RD_FILE, "$testlist");
@all_cases = <RD_FILE>;


##TODO add your command
my $qsub_cmd = " "
my $run_cmd;
my $case_name;

foreach $case (@all_cases) {
##remove blank line
if(!($case =~ /^[\s.*]$/)) {
chomp($case);

##remove seed for case name
$case_name = $case;

if($case_name =~ /(\w*)(\s*)seed=/){
$case_name = $1;
}

$run_cmd = $qsub_cmd." $case_name"." make test=$case";
print "Run command: $run_cmd\n";
system($run_cmd);
}


}

run_regress --perl

标签:stl   system   CM   foreach   cas   AC   remove   man   ##   

原文地址:https://www.cnblogs.com/bky-lxin/p/9205099.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!