summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.test/BUILD
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2019-08-26 00:48:49 +0200
committerMatthias Sohn <matthias.sohn@sap.com>2019-08-26 00:49:14 +0200
commitcee26c00372db1e0e4a9c3c68238607190380451 (patch)
tree9d2bfc67a1fa616b5373e21dcef2891305253262 /org.eclipse.jgit.test/BUILD
parent601cca6d27e6c8c3f603f10acdb9ffcd84774e96 (diff)
downloadjgit-cee26c00372db1e0e4a9c3c68238607190380451.tar.gz
jgit-cee26c00372db1e0e4a9c3c68238607190380451.zip
Exclude SecurityManagerTest from bazel test run
Bazel uses a security manager to sandbox tests, it cannot handle another security manager. Change-Id: Id7dd11073178e5e65337414681c1c6e74e14cba7 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.test/BUILD')
-rw-r--r--org.eclipse.jgit.test/BUILD6
1 files changed, 5 insertions, 1 deletions
diff --git a/org.eclipse.jgit.test/BUILD b/org.eclipse.jgit.test/BUILD
index f90a28030d..0fe06e9b68 100644
--- a/org.eclipse.jgit.test/BUILD
+++ b/org.eclipse.jgit.test/BUILD
@@ -36,11 +36,15 @@ DATA = [
PKG + "lib/sorttest.gitindex.dat",
]
+EXCLUDED = [
+ PKG + "api/SecurityManagerTest.java",
+]
+
RESOURCES = glob(["resources/**"])
tests(tests = glob(
["tst/**/*.java"],
- exclude = HELPERS + DATA,
+ exclude = HELPERS + DATA + EXCLUDED,
))
java_library(