From 6f0b70eb1e0061a0033d89a916075d27023c57a8 Mon Sep 17 00:00:00 2001 From: Yusuke Sakurai Date: Mon, 9 Mar 2020 01:10:45 +0900 Subject: [PATCH] disable test_raw_tty (#4282) --- cli/tests/integration_tests.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index eea5da4923..20a2a983b1 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -7,8 +7,11 @@ extern crate nix; extern crate pty; extern crate tempfile; +// TODO re-enable. This hangs on macOS +// https://github.com/denoland/deno/issues/4262 #[cfg(unix)] #[test] +#[ignore] pub fn test_raw_tty() { use pty::fork::*; use std::io::{Read, Write};