diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2019-11-05 16:10:48 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2019-11-05 16:23:26 +0100 |
commit | 97f9bc8e8edc5a68f27d602b0bdcaafc7616d16d (patch) | |
tree | 8eaf4a4b1440af8b420d918841e0a22a60c65567 /org.eclipse.jgit.benchmarks/BUILD | |
parent | 67f44ce9febe52b1f927e7d7a610977fea39d12f (diff) | |
parent | e85664e3f8b5699850e79aafb22d77b3c18c2f9c (diff) | |
download | jgit-97f9bc8e8edc5a68f27d602b0bdcaafc7616d16d.tar.gz jgit-97f9bc8e8edc5a68f27d602b0bdcaafc7616d16d.zip |
Merge branch 'stable-5.4' into stable-5.5
* stable-5.4:
Run JMH benchmarks using bazel
Benchmark for creating files and FileSnapshots
Implement benchmark for looking up FileStore of a given Path
JMH benchmark for SimpleLruCache
Update API problem filters
Remove unused API problem filters
Silence API errors for new API added since 5.1.0
Change-Id: I071536d630a95e89f5bbbf965a1571b9f5eb81ee
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.benchmarks/BUILD')
-rw-r--r-- | org.eclipse.jgit.benchmarks/BUILD | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/org.eclipse.jgit.benchmarks/BUILD b/org.eclipse.jgit.benchmarks/BUILD new file mode 100644 index 0000000000..3c6ff0e12b --- /dev/null +++ b/org.eclipse.jgit.benchmarks/BUILD @@ -0,0 +1,13 @@ +load("//tools:bzl/jmh.bzl", "jmh_java_benchmarks") + +SRCS = glob( + ["src/**/*.java"], +) + +jmh_java_benchmarks( + name = "benchmarks", + srcs = SRCS, + deps = [ + "//org.eclipse.jgit:jgit", + ], +)
\ No newline at end of file |