aboutsummaryrefslogtreecommitdiff
path: root/BUILD
diff options
context:
space:
mode:
authorEmilia Käsper <emilia@openssl.org>2017-01-12 02:57:11 +0100
committerThai Duong <thaidn@gmail.com>2017-01-11 17:57:11 -0800
commitb898a62f3f61fa30bf1ffd1e04016387ccd59141 (patch)
treea17c406ef3e26743f8154beaee0d28d4d3c9c1c7 /BUILD
parent189df209602bda4262034a1e19e84b1fe4330fd8 (diff)
downloadwycheproof-b898a62f3f61fa30bf1ffd1e04016387ccd59141.tar.gz
Option to test a local BouncyCastle jar (#16)
Resolves Github issue #4
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD16
1 files changed, 16 insertions, 0 deletions
diff --git a/BUILD b/BUILD
index a87a02f..9701667 100644
--- a/BUILD
+++ b/BUILD
@@ -38,6 +38,14 @@ bouncycastle_all_tests(
deps = common_deps,
)
+java_test(
+ name = "BouncyCastleAllTestsLocal",
+ size = "large",
+ srcs = ["java/com/google/security/wycheproof/BouncyCastleAllTests.java"] + test_srcs,
+ test_class = "com.google.security.wycheproof.BouncyCastleAllTests",
+ deps = common_deps + ["@local//:bouncycastle_jar"],
+)
+
# Generates SpongyCastleAllTests_1_xx target for all available versions,
# plus a SpongyCastleAllTests alias for latest stable.
#
@@ -79,6 +87,14 @@ bouncycastle_tests(
deps = common_deps,
)
+java_test(
+ name = "BouncyCastleTestLocal",
+ size = "large",
+ srcs = ["java/com/google/security/wycheproof/BouncyCastleTest.java"] + test_srcs,
+ test_class = "com.google.security.wycheproof.BouncyCastleTest",
+ deps = common_deps + ["@local//:bouncycastle_jar"],
+)
+
# Generates SpongyCastleTest_1_xx target for all available versions,
# plus a SpongyCastleTest alias for latest stable.
#