geom_gate userland utility improvements
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.
 
 
 
 

63 lines
1.9 KiB

  1. SUBDIRS = ossfuzz
  2. AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/include -I$(top_builddir)/src
  3. LDADD = ../src/libssh2.la
  4. if SSHD
  5. noinst_PROGRAMS = ssh2
  6. ssh2_SOURCES = ssh2.c
  7. endif
  8. ctests = simple$(EXEEXT)
  9. TESTS = $(ctests) mansyntax.sh
  10. if SSHD
  11. TESTS += ssh2.sh
  12. endif
  13. check_PROGRAMS = $(ctests)
  14. TESTS_ENVIRONMENT = SSHD=$(SSHD) EXEEXT=$(EXEEXT)
  15. TESTS_ENVIRONMENT += srcdir=$(top_srcdir)/tests builddir=$(top_builddir)/tests
  16. EXTRA_DIST = \
  17. CMakeLists.txt \
  18. etc/host \
  19. etc/host.pub \
  20. etc/user \
  21. etc/user.pub \
  22. key_dsa \
  23. key_dsa.pub \
  24. key_dsa_wrong \
  25. key_dsa_wrong.pub \
  26. key_rsa \
  27. key_rsa.pub \
  28. libssh2_config_cmake.h.in \
  29. mansyntax.sh \
  30. openssh_fixture.c \
  31. openssh_fixture.h \
  32. openssh_server/authorized_keys \
  33. openssh_server/Dockerfile \
  34. openssh_server/ssh_host_rsa_key \
  35. runner.c \
  36. session_fixture.c \
  37. session_fixture.h \
  38. simple.c \
  39. ssh2.c \
  40. ssh2.sh \
  41. sshd_fixture.sh.in \
  42. test_agent_forward_succeeds.c \
  43. test_hostkey.c \
  44. test_hostkey_hash.c \
  45. test_keyboard_interactive_auth_fails_with_wrong_response.c \
  46. test_keyboard_interactive_auth_succeeds_with_correct_response.c \
  47. test_password_auth_fails_with_wrong_password.c \
  48. test_password_auth_fails_with_wrong_username.c \
  49. test_password_auth_succeeds_with_correct_credentials.c \
  50. test_public_key_auth_fails_with_wrong_key.c \
  51. test_public_key_auth_succeeds_with_correct_dsa_key.c \
  52. test_public_key_auth_succeeds_with_correct_ed25519_key.c \
  53. test_public_key_auth_succeeds_with_correct_ed25519_key_from_mem.c \
  54. test_public_key_auth_succeeds_with_correct_encrypted_ed25519_key.c \
  55. test_public_key_auth_succeeds_with_correct_encrypted_rsa_key.c \
  56. test_public_key_auth_succeeds_with_correct_rsa_key.c \
  57. test_public_key_auth_succeeds_with_correct_rsa_openssh_key.c