diff options
| author | Artyom Pavlov <newpavlov@gmail.com> | 2019-08-21 00:15:11 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-21 00:15:11 +0000 |
| commit | 40cb69da59f2c759dadf40c1d86d1d11a995d3dd (patch) | |
| tree | 908ee6fd5cfcbf595477db6f7f7dd1d94bfdf32b | |
| parent | bd1dc7cf92f22913ea34ada119393a9a6c880fa4 (diff) | |
| download | rust-40cb69da59f2c759dadf40c1d86d1d11a995d3dd.tar.gz rust-40cb69da59f2c759dadf40c1d86d1d11a995d3dd.zip | |
fix libtest
| -rw-r--r-- | src/libtest/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libtest/lib.rs b/src/libtest/lib.rs index ef66c4df99d..709c12f60fc 100644 --- a/src/libtest/lib.rs +++ b/src/libtest/lib.rs @@ -965,12 +965,11 @@ fn use_color(opts: &TestOpts) -> bool { #[cfg(any( target_os = "cloudabi", - target_os = "redox", all(target_arch = "wasm32", not(target_os = "emscripten")), all(target_vendor = "fortanix", target_env = "sgx") ))] fn stdout_isatty() -> bool { - // FIXME: Implement isatty on Redox and SGX + // FIXME: Implement isatty on SGX false } #[cfg(unix)] |
