]> source.dussan.org Git - jgit.git/commitdiff
Exclude SecurityManagerTest from bazel test run 11/148311/1
authorMatthias Sohn <matthias.sohn@sap.com>
Sun, 25 Aug 2019 22:48:49 +0000 (00:48 +0200)
committerMatthias Sohn <matthias.sohn@sap.com>
Sun, 25 Aug 2019 22:49:14 +0000 (00:49 +0200)
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>
org.eclipse.jgit.test/BUILD

index f90a28030deb81cd03c1c858860c82f96f7ef546..0fe06e9b6848ab67dccccfb498d2d07cbbfba6ef 100644 (file)
@@ -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(