From 184cfd24aefbb79f1d9b1da26eaec44ceb37c8d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Wed, 9 Apr 2025 13:36:32 +0400 Subject: [PATCH] test(server): run the fast_path tests from testsuite-core MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marc-André Lureau --- crates/ironrdp-server/Cargo.toml | 1 + crates/ironrdp-testsuite-core/tests/main.rs | 1 + crates/ironrdp-testsuite-core/tests/server/fast_path.rs | 1 + crates/ironrdp-testsuite-core/tests/server/mod.rs | 1 + 4 files changed, 4 insertions(+) create mode 120000 crates/ironrdp-testsuite-core/tests/server/fast_path.rs create mode 100644 crates/ironrdp-testsuite-core/tests/server/mod.rs diff --git a/crates/ironrdp-server/Cargo.toml b/crates/ironrdp-server/Cargo.toml index 222103ce..e2a26728 100644 --- a/crates/ironrdp-server/Cargo.toml +++ b/crates/ironrdp-server/Cargo.toml @@ -13,6 +13,7 @@ categories.workspace = true [lib] doctest = true +test = false [features] default = ["rayon"] diff --git a/crates/ironrdp-testsuite-core/tests/main.rs b/crates/ironrdp-testsuite-core/tests/main.rs index c583d131..474a5053 100644 --- a/crates/ironrdp-testsuite-core/tests/main.rs +++ b/crates/ironrdp-testsuite-core/tests/main.rs @@ -21,5 +21,6 @@ mod pcb; mod pdu; mod rdcleanpath; mod rdpsnd; +mod server; mod server_name; mod session; diff --git a/crates/ironrdp-testsuite-core/tests/server/fast_path.rs b/crates/ironrdp-testsuite-core/tests/server/fast_path.rs new file mode 120000 index 00000000..f7df2434 --- /dev/null +++ b/crates/ironrdp-testsuite-core/tests/server/fast_path.rs @@ -0,0 +1 @@ +../../../ironrdp-server/src/encoder/fast_path.rs \ No newline at end of file diff --git a/crates/ironrdp-testsuite-core/tests/server/mod.rs b/crates/ironrdp-testsuite-core/tests/server/mod.rs new file mode 100644 index 00000000..6e563040 --- /dev/null +++ b/crates/ironrdp-testsuite-core/tests/server/mod.rs @@ -0,0 +1 @@ +mod fast_path;