2d08500516
Change-Id: I3ab30565e5ac110a18cbe3d34f76307801c30373
27 lines
513 B
Python
27 lines
513 B
Python
load("//tools/bzl:junit.bzl", "junit_tests")
|
|
|
|
BOUNCYCASTLE = [
|
|
"//lib/bouncycastle:bcpkix-without-neverlink",
|
|
"//lib/bouncycastle:bcpg-without-neverlink",
|
|
]
|
|
|
|
def acceptance_tests(
|
|
group,
|
|
deps = [],
|
|
labels = [],
|
|
vm_args = ['-Xmx256m'],
|
|
**kwargs):
|
|
junit_tests(
|
|
name = group,
|
|
deps = deps + BOUNCYCASTLE + [
|
|
'//gerrit-acceptance-tests:lib',
|
|
],
|
|
tags = labels + [
|
|
'acceptance',
|
|
'slow',
|
|
],
|
|
size = "large",
|
|
jvm_flags = vm_args,
|
|
**kwargs
|
|
)
|