File: Makefile.inc

package info (click to toggle)
libssh2 1.11.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,504 kB
  • sloc: ansic: 46,104; sh: 6,164; makefile: 349; cpp: 120; perl: 65; lisp: 33; awk: 23
file content (102 lines) | stat: -rw-r--r-- 2,731 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# Copyright (C) The libssh2 project and its contributors.
# SPDX-License-Identifier: BSD-3-Clause

# Keep this list sorted
#
# NOTE: test_auth_keyboard_info_request does not use the network, but when
#       run as Windows standalone test, it intermittently fails on GHA with:
#         `Terminate batch job (Y/N)?`
DOCKER_TESTS = \
  test_aa_warmup \
  test_agent_forward_ok \
  test_auth_keyboard_fail \
  test_auth_keyboard_ok \
  test_auth_password_fail_password \
  test_auth_password_fail_username \
  test_auth_password_ok \
  test_auth_pubkey_fail \
  test_auth_pubkey_ok_dsa \
  test_auth_pubkey_ok_ecdsa \
  test_auth_pubkey_ok_ecdsa_signed \
  test_auth_pubkey_ok_ed25519 \
  test_auth_pubkey_ok_ed25519_encrypted \
  test_auth_pubkey_ok_ed25519_mem \
  test_auth_pubkey_ok_rsa \
  test_auth_pubkey_ok_rsa_aes256gcm \
  test_auth_pubkey_ok_rsa_encrypted \
  test_auth_pubkey_ok_rsa_openssh \
  test_auth_pubkey_ok_rsa_signed \
  test_auth_pubkey_ok_rsa_sha2_256_signed \
  test_hostkey_hash \
  test_read

STANDALONE_TESTS =

SSHD_TESTS = \
  test_ssh2 \
  test_auth_pubkey_ok_ed25519

# Programs of the above that use internal libssh2 functions so they need
# to be statically linked against libssh2
DOCKER_TESTS_STATIC = \
  test_auth_keyboard_info_request \
  test_hostkey

STANDALONE_TESTS_STATIC = \
  test_simple

# Copy of the above for Makefile.am.
# Is there a way to reuse the lists above?
test_auth_keyboard_info_request_LDFLAGS = -static
test_hostkey_LDFLAGS = -static
test_simple_LDFLAGS = -static

librunner_la_SOURCES = \
  runner.c runner.h \
  session_fixture.c session_fixture.h \
  openssh_fixture.c openssh_fixture.h

EXTRA_DIST = \
  CMakeLists.txt \
  key_dsa \
  key_dsa.pub \
  key_dsa_wrong \
  key_dsa_wrong.pub \
  key_ecdsa \
  key_ecdsa.pub \
  key_ecdsa_signed \
  key_ecdsa_signed-cert.pub \
  key_ecdsa_signed.pub \
  key_ed25519 \
  key_ed25519.pub \
  key_ed25519_encrypted \
  key_ed25519_encrypted.pub \
  key_rsa \
  key_rsa.pub \
  key_rsa_aes256gcm \
  key_rsa_aes256gcm.pub \
  key_rsa_encrypted \
  key_rsa_encrypted.pub \
  key_rsa_openssh \
  key_rsa_openssh.pub \
  key_rsa_signed \
  key_rsa_signed-cert.pub \
  key_rsa_signed.pub \
  key_rsa_sha2_256_signed \
  key_rsa_sha2_256_signed-cert.pub \
  key_rsa_sha2_256_signed.pub \
  mansyntax.sh \
  openssh_server/Dockerfile \
  openssh_server/authorized_keys \
  openssh_server/ca_ecdsa \
  openssh_server/ca_ecdsa.pub \
  openssh_server/ca_rsa \
  openssh_server/ca_rsa.pub \
  openssh_server/ca_user_keys.pub \
  openssh_server/ssh_host_ecdsa_key \
  openssh_server/ssh_host_ed25519_key \
  openssh_server/ssh_host_rsa_key \
  openssh_server/sshd_config \
  test_read_algos.test \
  test_read_algos.txt \
  test_sshd.test