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
tags/v4.9.0.201710071750-r
David Pursehouse 6 years ago
parent
commit
231f5d9baf

+ 3
- 3
lib/BUILD 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",
],
)


+ 1
- 0
org.eclipse.jgit.http.test/BUILD 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",

+ 2
- 0
org.eclipse.jgit.lfs.test/tst/org/eclipse/jgit/lfs/lib/LongObjectIdTest.java View File

@@ -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")));

+ 5
- 5
org.eclipse.jgit.test/BUILD 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 .",
)

Loading…
Cancel
Save