diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2019-08-26 00:48:49 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2019-08-26 00:49:14 +0200 |
commit | cee26c00372db1e0e4a9c3c68238607190380451 (patch) | |
tree | 9d2bfc67a1fa616b5373e21dcef2891305253262 /org.eclipse.jgit.test/BUILD | |
parent | 601cca6d27e6c8c3f603f10acdb9ffcd84774e96 (diff) | |
download | jgit-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/BUILD | 6 |
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( |