summaryrefslogtreecommitdiff
path: root/ACE/bin/fuzz.pl
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2009-12-10 15:38:47 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2009-12-10 15:38:47 +0000
commitfc90d4b9d01c54f6b5e02a7df655864489e52ef4 (patch)
tree3f54b1a68567a2292bb11007b7c762095eab21cb /ACE/bin/fuzz.pl
parent9ecb2ef0a03574d39e70f640f35c1acde38fc632 (diff)
downloadATCD-fc90d4b9d01c54f6b5e02a7df655864489e52ef4.tar.gz
Thu Dec 10 15:37:58 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/ACETAOCIAO.style: Small updates
Diffstat (limited to 'ACE/bin/fuzz.pl')
-rwxr-xr-xACE/bin/fuzz.pl23
1 files changed, 4 insertions, 19 deletions
diff --git a/ACE/bin/fuzz.pl b/ACE/bin/fuzz.pl
index e2f64ffa489..70c665c111c 100755
--- a/ACE/bin/fuzz.pl
+++ b/ACE/bin/fuzz.pl
@@ -50,7 +50,7 @@ use PerlACE::Run_Test;
@files_noncvs = ();
@files_sln = ();
@files_vcproj = ();
-@files_run_test_pl = ();
+@files_run_pl = ();
# To keep track of errors and warnings
$errors = 0;
@@ -123,8 +123,8 @@ sub store_file ($)
}
elsif ($name =~ /\.pl$/i) {
push @files_pl, ($name);
- if ($name =~ /run_\.pl$/i) {
- push @files_run_test_pl, ($name);
+ if ($name =~ /run.*\.pl$/i) {
+ push @files_run_pl, ($name);
}
}
elsif ($name =~ /\.vcproj$/i) {
@@ -1384,22 +1384,7 @@ sub check_for_mismatched_filename ()
sub check_for_bad_run_test ()
{
print "Running run_test.pl test\n";
- # Add the know ACE files
- if (defined $ENV{"TAO_ROOT"}) {
- push @files_lst, $ENV{"TAO_ROOT"} . "/bin/tao_orb_tests.lst";
- push @files_lst, $ENV{"TAO_ROOT"} . "/bin/tao_other_tests.lst";
- }
- if (defined $ENV{"CIAO_ROOT"}) {
- push @files_lst, $ENV{"CIAO_ROOT"} . "/bin/ciao_tests.lst";
- }
- $config_list = new PerlACE::ConfigList;
- foreach $file (@files_lst) {
- $config_list->load ($file);
- }
- $config_list->add_one_config ("FUZZ");
- @valid_files = $config_list->valid_entries ();
-# @files_run_test_pl
- foreach $file (@valid_files) {
+ foreach $file (@files_run_pl) {
if (open (FILE, $file)) {
my $is_run_test = 0;
my $sub = 0;