You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BUCK 1.0KB

1234567891011121314151617181920212223242526272829303132333435
  1. TEST_BASE = ['tst/org/eclipse/jgit/lfs/server/fs/LfsServerTest.java']
  2. TESTS = glob(['tst/**/*.java'],
  3. excludes = TEST_BASE
  4. )
  5. for t in TESTS:
  6. n = t[len('tst/'):len(t)-len('.java')].replace('/', '.')
  7. java_test(
  8. name = n,
  9. labels = ['lfs-server'],
  10. srcs = [t] + TEST_BASE,
  11. deps = [
  12. '//org.eclipse.jgit.lfs.test:helpers',
  13. '//org.eclipse.jgit:jgit',
  14. '//org.eclipse.jgit.junit:junit',
  15. '//org.eclipse.jgit.junit.http:junit-http',
  16. '//org.eclipse.jgit.lfs:jgit-lfs',
  17. '//org.eclipse.jgit.lfs.server:jgit-lfs-server',
  18. '//lib:hamcrest-core',
  19. '//lib:hamcrest-library',
  20. '//lib:httpcore',
  21. '//lib:httpcomponents',
  22. '//lib:junit',
  23. '//lib/jetty:http',
  24. '//lib/jetty:io',
  25. '//lib/jetty:server',
  26. '//lib/jetty:servlet',
  27. '//lib/jetty:security',
  28. '//lib/jetty:util',
  29. '//lib:servlet-api',
  30. '//lib:commons-logging',
  31. ],
  32. source_under_test = ['//org.eclipse.jgit.lfs.server:jgit-lfs-server'],
  33. vm_args = ['-Xmx256m', '-Dfile.encoding=UTF-8'],
  34. )