<http://webkit.org/b/130903>
Reviewed by Dan Bernstein.
* Scripts/bisect-builds:
(printTracLink): Print a direct link to the Trac 'changeset'
URL if there is only one revision in the range.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@166419
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2014-03-28 David Kilzer <ddkilzer@apple.com>
+
+ bisect-builds should print Trac 'changeset' URL if only one build is detected
+ <http://webkit.org/b/130903>
+
+ Reviewed by Dan Bernstein.
+
+ * Scripts/bisect-builds:
+ (printTracLink): Print a direct link to the Trac 'changeset'
+ URL if there is only one revision in the range.
+
2014-03-28 Gyuyoung Kim <gyuyoung.kim@samsung.com>
[EFL] Bump glib version from 2.36 to 2.38
sub printTracLink($$)
{
my ($startRevision, $endRevision) = @_;
- printf("http://trac.webkit.org/log/trunk/?rev=%s&stop_rev=%s\n", $endRevision, $startRevision + 1);
+ if ($startRevision + 1 == $endRevision) {
+ printf("http://trac.webkit.org/changeset/%s\n", $endRevision);
+ } else {
+ printf("http://trac.webkit.org/log/trunk/?rev=%s&stop_rev=%s\n", $endRevision, $startRevision + 1);
+ }
}
sub promptForTest($)