You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by sm...@apache.org on 2008/01/31 05:36:09 UTC

svn commit: r616998 - /harmony/enhanced/buildtest/branches/2.0/tools/snapshot/snapshots-table/snapshots.pl

Author: smishura
Date: Wed Jan 30 20:36:08 2008
New Revision: 616998

URL: http://svn.apache.org/viewvc?rev=616998&view=rev
Log:
Fix my commit r616997

Modified:
    harmony/enhanced/buildtest/branches/2.0/tools/snapshot/snapshots-table/snapshots.pl

Modified: harmony/enhanced/buildtest/branches/2.0/tools/snapshot/snapshots-table/snapshots.pl
URL: http://svn.apache.org/viewvc/harmony/enhanced/buildtest/branches/2.0/tools/snapshot/snapshots-table/snapshots.pl?rev=616998&r1=616997&r2=616998&view=diff
==============================================================================
--- harmony/enhanced/buildtest/branches/2.0/tools/snapshot/snapshots-table/snapshots.pl (original)
+++ harmony/enhanced/buildtest/branches/2.0/tools/snapshot/snapshots-table/snapshots.pl Wed Jan 30 20:36:08 2008
@@ -286,7 +286,8 @@
         $request = HTTP::Request->new(GET => "$snapshot_api_report");
         $response = $ua->request($request);
         if ($response->is_success) {
-            $api_report = $api_report_path;
+            $api_report = "$test_results_links{$test_results_links_list[$i]}/$api_report_path";
+            $api_report =~ s/\{SNAPSHOT\}/$rev/g;
             $data_updated = 1;
             return;
         }