63207f0420
Change-Id: I5de4de41364076aecdba397692ab188084f28b32
39 lines
812 B
Python
39 lines
812 B
Python
TEST = [
|
|
'//gerrit-httpd:httpd',
|
|
'//gerrit-sshd:sshd',
|
|
'//gerrit-server:server',
|
|
]
|
|
|
|
java_test(
|
|
name = 'acceptance_tests',
|
|
srcs = glob(['src/test/java/**/*.java']),
|
|
deps = TEST + [
|
|
'//gerrit-common:server',
|
|
'//gerrit-extension-api:api',
|
|
'//gerrit-launcher:launcher',
|
|
'//gerrit-pgm:pgm',
|
|
'//gerrit-reviewdb:server',
|
|
|
|
'//lib:args4j',
|
|
'//lib:gson',
|
|
'//lib:guava',
|
|
'//lib:gwtorm',
|
|
'//lib:h2',
|
|
'//lib:jsch',
|
|
'//lib:jsr305',
|
|
'//lib:junit',
|
|
'//lib:servlet-api-3_0',
|
|
|
|
'//lib/log:impl_log4j',
|
|
'//lib/log:log4j',
|
|
'//lib/guice:guice',
|
|
'//lib/jgit:jgit',
|
|
'//lib/jgit:junit',
|
|
'//lib/openid:httpclient',
|
|
'//lib/openid:httpcore',
|
|
],
|
|
source_under_test = TEST,
|
|
labels = ['slow'],
|
|
visibility = ['//tools/eclipse:classpath'],
|
|
)
|