Changeset 79831 in webkit


Ignore:
Timestamp:
Feb 27, 2011 2:14:45 PM (13 years ago)
Author:
mitz@apple.com
Message:

Make bisect-builds print a trac link for the regression range
https://bugs.webkit.org/show_bug.cgi?id=55331

Reviewed by Adam Roben.

  • Scripts/bisect-builds:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r79830 r79831  
     12011-02-27  Dan Bernstein  <mitz@apple.com>
     2
     3        Reviewed by Adam Roben.
     4
     5        Make bisect-builds print a trac link for the regression range
     6        https://bugs.webkit.org/show_bug.cgi?id=55331
     7
     8        * Scripts/bisect-builds:
     9
    1102011-02-27  Adam Roben  <aroben@apple.com>
    211
  • trunk/Tools/Scripts/bisect-builds

    r51346 r79831  
    11#!/usr/bin/perl -w
    22
    3 # Copyright (C) 2007, 2008 Apple Inc.  All rights reserved.
     3# Copyright (C) 2007, 2008, 2011 Apple Inc.  All rights reserved.
    44#
    55# Redistribution and use in source and binary forms, with or without
     
    5858sub parseRevisions($$;$);
    5959sub printStatus($$$);
     60sub printTracLink($$);
    6061sub promptForTest($);
    6162
     
    198199}
    199200
     201printTracLink($nightlies[$startIndex]->{rev}, $nightlies[$endIndex]->{rev});
     202
    200203unlink $tempFile if $tempFile;
    201204
     
    421424}
    422425
     426sub printTracLink($$)
     427{
     428    my ($startRevision, $endRevision) = @_;
     429    printf("http://trac.webkit.org/log/trunk/?rev=%s&stop_rev=%s\n", $endRevision, $startRevision + 1);
     430}
     431
    423432sub promptForTest($)
    424433{
Note: See TracChangeset for help on using the changeset viewer.