moved tests to subdirs

This commit is contained in:
David Osipov
2026-03-20 22:55:19 +04:00
parent 0eca535955
commit 43d7e6e991
54 changed files with 40 additions and 33 deletions

View File

@@ -339,7 +339,7 @@ pub mod rpc_flags {
pub const ME_HANDSHAKE_TIMEOUT_SECS: u64 = 10;
#[cfg(test)]
#[path = "tls_size_constants_security_tests.rs"]
#[path = "tests/tls_size_constants_security_tests.rs"]
mod tls_size_constants_security_tests;
#[cfg(test)]

View File

@@ -814,13 +814,13 @@ mod compile_time_security_checks {
// ============= Security-focused regression tests =============
#[cfg(test)]
#[path = "tls_security_tests.rs"]
#[path = "tests/tls_security_tests.rs"]
mod security_tests;
#[cfg(test)]
#[path = "tls_adversarial_tests.rs"]
#[path = "tests/tls_adversarial_tests.rs"]
mod adversarial_tests;
#[cfg(test)]
#[path = "tls_fuzz_security_tests.rs"]
#[path = "tests/tls_fuzz_security_tests.rs"]
mod fuzz_security_tests;