()
| 2738 | #[tokio::test] |
| 2739 | #[cfg_attr(not(feature = "component-model-async"), ignore)] |
| 2740 | async fn p3_cli_serve_sleep_many() -> Result<()> { |
| 2741 | cli_serve_sleep( |
| 2742 | P3_CLI_SERVE_SLEEP_COMPONENT, |
| 2743 | CONNECTION_COUNT_MANY, |
| 2744 | REQUESTS_PER_CONNECTION_MANY, |
| 2745 | |cmd| { |
| 2746 | cmd.arg("-Wcomponent-model-async"); |
| 2747 | cmd.arg("-Sp3,cli"); |
| 2748 | }, |
| 2749 | ) |
| 2750 | .await |
| 2751 | } |
| 2752 | |
| 2753 | async fn cli_serve_sleep( |
| 2754 | component: &str, |
nothing calls this directly
no test coverage detected