From cee26c00372db1e0e4a9c3c68238607190380451 Mon Sep 17 00:00:00 2001 From: Matthias Sohn Date: Mon, 26 Aug 2019 00:48:49 +0200 Subject: [PATCH] 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 --- org.eclipse.jgit.test/BUILD | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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( -- 2.39.5