summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-05-13 19:21:26 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-05-13 19:21:26 +0000
commit6ded6027e2c71a679ff1434eb89d85905177499b (patch)
tree7b176825af4bc2c913397af0362c76a601dec536
parent2e5754d904ec51b39c3fbad3740e775aef02f970 (diff)
downloadATCD-6ded6027e2c71a679ff1434eb89d85905177499b.tar.gz
Tue May 13 19:20:15 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--ACE/ChangeLog7
-rwxr-xr-xACE/bin/diff-builds.pl10
2 files changed, 11 insertions, 6 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index ebbca33ab5f..ab0a7badb46 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,8 @@
+Tue May 13 19:20:15 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * bin/diff-builds.pl:
+ Updated for move of test stats
+
Mon May 12 12:19:15 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
* examples/Monitor/MC_Test_Utilities.h:
@@ -9,7 +14,7 @@ Mon May 12 12:19:15 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
* examples/Monitor/Group/group.cpp:
* examples/Monitor/Memory_Usage/memory_usage.cpp:
- Added appropriate preprocessor guards to ensure a
+ Added appropriate preprocessor guards to ensure a
successful build when ACE_HAS_MONITOR_FRAMEWORK is
defined as 0.
diff --git a/ACE/bin/diff-builds.pl b/ACE/bin/diff-builds.pl
index 1add07303c0..7240aea7f74 100755
--- a/ACE/bin/diff-builds.pl
+++ b/ACE/bin/diff-builds.pl
@@ -15,10 +15,10 @@ my $new_errors_only = 0; # Show new errors only
my $clean_builds_only = 1; # Only diff todays clean builds
# The root of the test statistics
-my $teststaturl = "http://www.dre.vanderbilt.edu/~remedynl/teststat/builds/";
+my $teststaturl = "http://download.theaceorb.nl/teststat/builds/";
-my $allbuildsurl = "http://www.dre.vanderbilt.edu/~remedynl/teststat/buildscore.log";
-my $cleanbuildsurl = "http://www.dre.vanderbilt.edu/~remedynl/teststat/cleanbuildtests.log";
+my $allbuildsurl = "http://download.theaceorb.nl/teststat/buildscore.txt";
+my $cleanbuildsurl = "http://download.theaceorb.nl/teststat/cleanbuildtests.txt";
# Determine the available timestamps for a build on a date,
# by scanning the index page (build.html)
@@ -125,10 +125,10 @@ sub load_failed_tests_list ($$)
my ($fh, $tmpfile) = tempfile ($fullfile . ".XXXXXX", UNLINK => 1, DIR => $tmpdir);
print "wget " . $verbose . " \'" .$teststaturl
- . $fullfile . ".log\' -O - | sort >\'" . $tmpfile . '\'' . "\n" unless !$debugging;
+ . $fullfile . ".txt\' -O - | sort >\'" . $tmpfile . '\'' . "\n" unless !$debugging;
system ("wget " . $verbose . " \'" .$teststaturl
- . $fullfile . ".log\' -O - | sort >\'" . $tmpfile . '\'');
+ . $fullfile . ".txt\' -O - | sort >\'" . $tmpfile . '\'');
close ($fh);
return $tmpfile;