about summary refs log tree commit diff
diff options
context:
space:
mode:
authorArtyom Pavlov <newpavlov@gmail.com>2019-08-21 00:15:11 +0000
committerGitHub <noreply@github.com>2019-08-21 00:15:11 +0000
commit40cb69da59f2c759dadf40c1d86d1d11a995d3dd (patch)
tree908ee6fd5cfcbf595477db6f7f7dd1d94bfdf32b
parentbd1dc7cf92f22913ea34ada119393a9a6c880fa4 (diff)
downloadrust-40cb69da59f2c759dadf40c1d86d1d11a995d3dd.tar.gz
rust-40cb69da59f2c759dadf40c1d86d1d11a995d3dd.zip
fix libtest
-rw-r--r--src/libtest/lib.rs3
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)]