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:
parent
1b6f831875
commit
6f0b70eb1e
1 changed files with 3 additions and 0 deletions
|
@ -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};
|
||||||
|
|
Loading…
Reference in a new issue