about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Nordholts <enselic@gmail.com>2023-07-27 10:14:34 +0200
committerMartin Nordholts <enselic@gmail.com>2023-07-27 10:17:01 +0200
commitf4c4f96d16c7b9e20644a57b6096dfced07aa940 (patch)
tree0b99c59e8152842c8563eb684e0b826e04cb2310
parenta6236fa460811bbd4a08a94db249c344fa9f2220 (diff)
downloadrust-f4c4f96d16c7b9e20644a57b6096dfced07aa940.tar.gz
rust-f4c4f96d16c7b9e20644a57b6096dfced07aa940.zip
tests/ui/hello_world/main.rs: Remove FIXME
The purpose of the test is to make sure that compiling hello world
produces no compiler output. To properly test that, we need to run the
entire compiler pipeline. We don't want the test to pass if codegen
accidentally starts writing to stdout. So keep it as build-pass.
-rw-r--r--tests/ui/hello_world/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/hello_world/main.rs b/tests/ui/hello_world/main.rs
index 22ce47414b2..39cb74b709b 100644
--- a/tests/ui/hello_world/main.rs
+++ b/tests/ui/hello_world/main.rs
@@ -1,4 +1,4 @@
-// build-pass (FIXME(62277): could be check-pass?)
+// build-pass
 
 // Test that compiling hello world succeeds with no output of any kind.