1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-11 00:21:05 -05:00

disable test_raw_tty (#4282)

This commit is contained in:
Yusuke Sakurai 2020-03-09 01:10:45 +09:00 committed by GitHub
parent 1b6f831875
commit 6f0b70eb1e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,8 +7,11 @@ extern crate nix;
extern crate pty; extern crate pty;
extern crate tempfile; extern crate tempfile;
// TODO re-enable. This hangs on macOS
// https://github.com/denoland/deno/issues/4262
#[cfg(unix)] #[cfg(unix)]
#[test] #[test]
#[ignore]
pub fn test_raw_tty() { pub fn test_raw_tty() {
use pty::fork::*; use pty::fork::*;
use std::io::{Read, Write}; use std::io::{Read, Write};