1
0
mirror of https://github.com/libssh2/libssh2.git synced 2025-11-18 15:20:56 +03:00

Makefile.am: Add missing test keys in the distribution tarball (#601)

Notes: 
Fix tests missing key to build the OCI image

Credit:
Laurent Stacul
This commit is contained in:
Laurent Stacul
2021-05-17 18:11:10 +02:00
committed by GitHub
parent 8adbab3f6c
commit 62bc25c987

View File

@@ -18,47 +18,51 @@ check_PROGRAMS = $(ctests)
TESTS_ENVIRONMENT = SSHD=$(SSHD) EXEEXT=$(EXEEXT) TESTS_ENVIRONMENT = SSHD=$(SSHD) EXEEXT=$(EXEEXT)
TESTS_ENVIRONMENT += srcdir=$(top_srcdir)/tests builddir=$(top_builddir)/tests TESTS_ENVIRONMENT += srcdir=$(top_srcdir)/tests builddir=$(top_builddir)/tests
EXTRA_DIST = \ EXTRA_DIST = \
CMakeLists.txt \ CMakeLists.txt \
etc/host \ etc/host \
etc/host.pub \ etc/host.pub \
etc/user \ etc/user \
etc/user.pub \ etc/user.pub \
key_dsa \ key_dsa \
key_dsa.pub \ key_dsa.pub \
key_dsa_wrong \ key_dsa_wrong \
key_dsa_wrong.pub \ key_dsa_wrong.pub \
key_rsa \ key_rsa \
key_rsa.pub \ key_rsa.pub \
libssh2_config_cmake.h.in \ libssh2_config_cmake.h.in \
mansyntax.sh \ mansyntax.sh \
openssh_fixture.c \ openssh_fixture.c \
openssh_fixture.h \ openssh_fixture.h \
openssh_server/authorized_keys \ openssh_server/Dockerfile \
openssh_server/Dockerfile \ openssh_server/authorized_keys \
openssh_server/ssh_host_rsa_key \ openssh_server/ca_ecdsa \
runner.c \ openssh_server/ca_ecdsa.pub \
session_fixture.c \ openssh_server/ssh_host_ecdsa_key \
session_fixture.h \ openssh_server/ssh_host_ed25519_key \
simple.c \ openssh_server/ssh_host_rsa_key \
ssh2.c \ runner.c \
ssh2.sh \ session_fixture.c \
sshd_fixture.sh.in \ session_fixture.h \
test_agent_forward_succeeds.c \ simple.c \
test_hostkey.c \ ssh2.c \
test_hostkey_hash.c \ ssh2.sh \
test_keyboard_interactive_auth_fails_with_wrong_response.c \ sshd_fixture.sh.in \
test_keyboard_interactive_auth_succeeds_with_correct_response.c \ test_agent_forward_succeeds.c \
test_password_auth_fails_with_wrong_password.c \ test_hostkey.c \
test_password_auth_fails_with_wrong_username.c \ test_hostkey_hash.c \
test_password_auth_succeeds_with_correct_credentials.c \ test_keyboard_interactive_auth_fails_with_wrong_response.c \
test_public_key_auth_fails_with_wrong_key.c \ test_keyboard_interactive_auth_succeeds_with_correct_response.c \
test_public_key_auth_succeeds_with_correct_dsa_key.c \ test_password_auth_fails_with_wrong_password.c \
test_public_key_auth_succeeds_with_correct_ed25519_key.c \ test_password_auth_fails_with_wrong_username.c \
test_public_key_auth_succeeds_with_correct_ed25519_key_from_mem.c \ test_password_auth_succeeds_with_correct_credentials.c \
test_public_key_auth_succeeds_with_correct_ecdsa_key.c \ test_public_key_auth_fails_with_wrong_key.c \
test_public_key_auth_succeeds_with_correct_signed_ecdsa_key.c \ test_public_key_auth_succeeds_with_correct_dsa_key.c \
test_public_key_auth_succeeds_with_correct_encrypted_ed25519_key.c \ test_public_key_auth_succeeds_with_correct_ed25519_key.c \
test_public_key_auth_succeeds_with_correct_encrypted_rsa_key.c \ test_public_key_auth_succeeds_with_correct_ed25519_key_from_mem.c \
test_public_key_auth_succeeds_with_correct_rsa_key.c \ test_public_key_auth_succeeds_with_correct_ecdsa_key.c \
test_public_key_auth_succeeds_with_correct_signed_ecdsa_key.c \
test_public_key_auth_succeeds_with_correct_encrypted_ed25519_key.c \
test_public_key_auth_succeeds_with_correct_encrypted_rsa_key.c \
test_public_key_auth_succeeds_with_correct_rsa_key.c \
test_public_key_auth_succeeds_with_correct_rsa_openssh_key.c test_public_key_auth_succeeds_with_correct_rsa_openssh_key.c