From 62bc25c987ffe6062d7f63e19de72a33bd0739f7 Mon Sep 17 00:00:00 2001 From: Laurent Stacul Date: Mon, 17 May 2021 18:11:10 +0200 Subject: [PATCH] Makefile.am: Add missing test keys in the distribution tarball (#601) Notes: Fix tests missing key to build the OCI image Credit: Laurent Stacul --- tests/Makefile.am | 90 +++++++++++++++++++++++++---------------------- 1 file changed, 47 insertions(+), 43 deletions(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index bf79c145..6cd7934d 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -18,47 +18,51 @@ check_PROGRAMS = $(ctests) TESTS_ENVIRONMENT = SSHD=$(SSHD) EXEEXT=$(EXEEXT) TESTS_ENVIRONMENT += srcdir=$(top_srcdir)/tests builddir=$(top_builddir)/tests -EXTRA_DIST = \ - CMakeLists.txt \ - etc/host \ - etc/host.pub \ - etc/user \ - etc/user.pub \ - key_dsa \ - key_dsa.pub \ - key_dsa_wrong \ - key_dsa_wrong.pub \ - key_rsa \ - key_rsa.pub \ - libssh2_config_cmake.h.in \ - mansyntax.sh \ - openssh_fixture.c \ - openssh_fixture.h \ - openssh_server/authorized_keys \ - openssh_server/Dockerfile \ - openssh_server/ssh_host_rsa_key \ - runner.c \ - session_fixture.c \ - session_fixture.h \ - simple.c \ - ssh2.c \ - ssh2.sh \ - sshd_fixture.sh.in \ - test_agent_forward_succeeds.c \ - test_hostkey.c \ - test_hostkey_hash.c \ - test_keyboard_interactive_auth_fails_with_wrong_response.c \ - test_keyboard_interactive_auth_succeeds_with_correct_response.c \ - test_password_auth_fails_with_wrong_password.c \ - test_password_auth_fails_with_wrong_username.c \ - test_password_auth_succeeds_with_correct_credentials.c \ - test_public_key_auth_fails_with_wrong_key.c \ - test_public_key_auth_succeeds_with_correct_dsa_key.c \ - test_public_key_auth_succeeds_with_correct_ed25519_key.c \ - test_public_key_auth_succeeds_with_correct_ed25519_key_from_mem.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 \ +EXTRA_DIST = \ + CMakeLists.txt \ + etc/host \ + etc/host.pub \ + etc/user \ + etc/user.pub \ + key_dsa \ + key_dsa.pub \ + key_dsa_wrong \ + key_dsa_wrong.pub \ + key_rsa \ + key_rsa.pub \ + libssh2_config_cmake.h.in \ + mansyntax.sh \ + openssh_fixture.c \ + openssh_fixture.h \ + openssh_server/Dockerfile \ + openssh_server/authorized_keys \ + openssh_server/ca_ecdsa \ + openssh_server/ca_ecdsa.pub \ + openssh_server/ssh_host_ecdsa_key \ + openssh_server/ssh_host_ed25519_key \ + openssh_server/ssh_host_rsa_key \ + runner.c \ + session_fixture.c \ + session_fixture.h \ + simple.c \ + ssh2.c \ + ssh2.sh \ + sshd_fixture.sh.in \ + test_agent_forward_succeeds.c \ + test_hostkey.c \ + test_hostkey_hash.c \ + test_keyboard_interactive_auth_fails_with_wrong_response.c \ + test_keyboard_interactive_auth_succeeds_with_correct_response.c \ + test_password_auth_fails_with_wrong_password.c \ + test_password_auth_fails_with_wrong_username.c \ + test_password_auth_succeeds_with_correct_credentials.c \ + test_public_key_auth_fails_with_wrong_key.c \ + test_public_key_auth_succeeds_with_correct_dsa_key.c \ + test_public_key_auth_succeeds_with_correct_ed25519_key.c \ + test_public_key_auth_succeeds_with_correct_ed25519_key_from_mem.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