aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThai Duong <thaidn@users.noreply.github.com>2017-02-01 15:49:11 -0800
committerGitHub <noreply@github.com>2017-02-01 15:49:11 -0800
commitf2f6a309e29139b949dde8ca59305699f5daf462 (patch)
tree48b653b87f7fed53d90ac4b4cca253cdf021b2e9
parenteef0c4262e0d79712433c23bf03ada9e7d455489 (diff)
downloadwycheproof-f2f6a309e29139b949dde8ca59305699f5daf462.tar.gz
Set tags=[manual] for *Local test targets, thus exclude them from bazel build ... (#20)
-rw-r--r--BUILD6
1 files changed, 6 insertions, 0 deletions
diff --git a/BUILD b/BUILD
index 9701667..82be038 100644
--- a/BUILD
+++ b/BUILD
@@ -40,6 +40,9 @@ bouncycastle_all_tests(
java_test(
name = "BouncyCastleAllTestsLocal",
+ # this target requires specifing a shell variable, thus won't work with the wildcard target patterns.
+ # with tags=["manual"] it'll be excluded from said patterns.
+ tags = ["manual"],
size = "large",
srcs = ["java/com/google/security/wycheproof/BouncyCastleAllTests.java"] + test_srcs,
test_class = "com.google.security.wycheproof.BouncyCastleAllTests",
@@ -89,6 +92,9 @@ bouncycastle_tests(
java_test(
name = "BouncyCastleTestLocal",
+ # this target requires specifing a shell variable, thus won't work with the wildcard target patterns.
+ # with tags=["manual"] it'll be excluded from said patterns.
+ tags = ["manual"],
size = "large",
srcs = ["java/com/google/security/wycheproof/BouncyCastleTest.java"] + test_srcs,
test_class = "com.google.security.wycheproof.BouncyCastleTest",