Merge changes Id3994e2d,I5e2a2868,I255af794

* changes:
  LongObjectIdTest: Add back self comparison test
  Format BUILD files with buildifier
  Bazel: Add missing dependency in org.eclipse.jgit.http.test
This commit is contained in:
David Pursehouse 2017-08-18 17:05:41 -04:00 committed by Gerrit Code Review @ Eclipse.org
commit 231f5d9baf
4 changed files with 11 additions and 8 deletions

View File

@ -115,9 +115,9 @@ java_library(
testonly = 1,
visibility = ["//visibility:public"],
exports = [
"@junit//jar",
"@hamcrest_core//jar",
"@hamcrest_library//jar",
"@hamcrest_core//jar",
"@hamcrest_library//jar",
"@junit//jar",
],
)

View File

@ -34,6 +34,7 @@ java_library(
srcs = glob(["src/**/*.java"]),
deps = [
"//lib:junit",
"//lib:servlet-api",
"//org.eclipse.jgit.http.server:jgit-servlet",
"//org.eclipse.jgit:jgit",
"//org.eclipse.jgit.junit.http:junit-http",

View File

@ -291,6 +291,8 @@ public void testCompareTo() {
"0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef");
assertEquals(0, id1.compareTo(LongObjectId.fromString(
"0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef")));
AnyLongObjectId self = id1;
assertEquals(0, id1.compareTo(self));
assertEquals(-1, id1.compareTo(LongObjectId.fromString(
"1123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef")));

View File

@ -33,7 +33,7 @@ DATA = [
tests(glob(
["tst/**/*.java"],
exclude = HELPERS + DATA
exclude = HELPERS + DATA,
))
java_library(
@ -54,8 +54,8 @@ java_import(
)
genrule2(
name = 'tst_rsrc_jar',
cmd = 'o=$$PWD/$@ && tar cf - $(SRCS) | tar -C $$TMP --strip-components=2 -xf - && cd $$TMP && zip -qr $$o .',
srcs = glob(['tst-rsrc/**']),
outs = ['tst_rsrc.jar',],
name = "tst_rsrc_jar",
srcs = glob(["tst-rsrc/**"]),
outs = ["tst_rsrc.jar"],
cmd = "o=$$PWD/$@ && tar cf - $(SRCS) | tar -C $$TMP --strip-components=2 -xf - && cd $$TMP && zip -qr $$o .",
)