aboutsummaryrefslogtreecommitdiff
path: root/BUILD
diff options
context:
space:
mode:
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.
#