- M0: libghostty SSH 终端(渲染/输入/连接)+ 白屏修复(OutputGate) + 会话状态机/自动重连 - M1: tsnet 用户态组网 + SSH-over-tsnet(fd 桥),shell 级真机验证;R5(Go+gvisor+C+++Swift 同进程) retire - M1.5: tmux -CC 原生 tab(MVP) - 结构: packages/(TXCore·TXTransport), apps/TerminalX, vendor/(libghostty-spm/libssh2/mbedtls/tsnet-bridge), artifacts/ - 文档: CLAUDE.md + docs/HANDOFF.md(新会话入口) - 环境: 认证代理→依赖 vendor 本地化;Go 在 ~/.local/go;仅模拟器/未签名 - 待续: M2 mosh, tmux 多 pane, M4 安全(host key/SE) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
23 lines
1.1 KiB
Plaintext
23 lines
1.1 KiB
Plaintext
test_suites
|
|
The various 'test_suite_XXX' programs from the 'tests' directory, executed
|
|
using 'make check' (Unix make) or 'make test' (Cmake), include test cases
|
|
(reference test vectors, sanity checks, malformed input for parsing
|
|
functions, etc.) for all modules except the SSL modules.
|
|
|
|
selftests
|
|
The 'programs/test/selftest' program runs the 'XXX_self_test()' functions
|
|
of each individual module. Most of them are included in the respective
|
|
test suite, but some slower ones are only included here.
|
|
|
|
compat
|
|
The 'tests/compat.sh' script checks interoperability with OpenSSL and
|
|
GnuTLS (and ourselves!) for every common ciphersuite, in every TLS
|
|
version, both ways (client/server), using client authentication or not.
|
|
For each ciphersuite/version/side/authmode it performs a full handshake
|
|
and a small data exchange.
|
|
|
|
ssl_opt
|
|
The 'tests/ssl-opt.sh' script checks various options and/or operations not
|
|
covered by compat.sh: session resumption (using session cache or tickets),
|
|
renegotiation, SNI, other extensions, etc.
|