From f17eb634faa01c0d03cd2886e740357ab9cbb5a1 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Sat, 8 Aug 2020 20:15:11 +0200 Subject: test(cli/inspector_port_collision): skip test on WSL (#6991) --- cli/tests/integration_tests.rs | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'cli/tests/integration_tests.rs') diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 29b477dc1..c4544669f 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -2922,6 +2922,13 @@ async fn inspector_pause() { #[tokio::test] async fn inspector_port_collision() { + // Skip this test on WSL, which allows multiple processes to listen on the + // same port, rather than making `bind()` fail with `EADDRINUSE`. + if cfg!(target_os = "linux") && std::env::var_os("WSL_DISTRO_NAME").is_some() + { + return; + } + let script = util::tests_path().join("inspector1.js"); let inspect_flag = inspect_flag_with_unique_port("--inspect"); -- cgit v1.2.3