Browse Source

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
stable-4.9
David Pursehouse 7 years ago committed by Gerrit Code Review @ Eclipse.org
parent
commit
231f5d9baf
  1. 6
      lib/BUILD
  2. 1
      org.eclipse.jgit.http.test/BUILD
  3. 2
      org.eclipse.jgit.lfs.test/tst/org/eclipse/jgit/lfs/lib/LongObjectIdTest.java
  4. 10
      org.eclipse.jgit.test/BUILD

6
lib/BUILD

@ -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",
],
)

1
org.eclipse.jgit.http.test/BUILD

@ -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",

2
org.eclipse.jgit.lfs.test/tst/org/eclipse/jgit/lfs/lib/LongObjectIdTest.java

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

10
org.eclipse.jgit.test/BUILD

@ -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 .",
)

Loading…
Cancel
Save