diff options
author | Yusuke Sakurai <kerokerokerop@gmail.com> | 2020-03-09 01:10:45 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-08 17:10:45 +0100 |
commit | 6f0b70eb1e0061a0033d89a916075d27023c57a8 (patch) | |
tree | 7216a8fb0920890a9fd053970f5753d32ad7e1bb /cli/tests/integration_tests.rs | |
parent | 1b6f8318750d319d689f7eeef9e7e1f2e56b94a6 (diff) |
disable test_raw_tty (#4282)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index eea5da492..20a2a983b 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}; |