about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJubilee <46493976+workingjubilee@users.noreply.github.com>2023-07-27 13:22:05 -0700
committerGitHub <noreply@github.com>2023-07-27 13:22:05 -0700
commit9b7b993ebfcfc090c7b6ef4309c94032316e0ce2 (patch)
treec2dd72948188e970f1af27acd13b35f730174225
parent0eb5efc7ae7479367c3d4567465cb042df176e71 (diff)
parentf4c4f96d16c7b9e20644a57b6096dfced07aa940 (diff)
downloadrust-9b7b993ebfcfc090c7b6ef4309c94032316e0ce2.tar.gz
rust-9b7b993ebfcfc090c7b6ef4309c94032316e0ce2.zip
Rollup merge of #114122 - Enselic:hello-build-pass, r=petrochenkov
tests/ui/hello_world/main.rs: Remove FIXME (#62277)

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.

Part of #62277
-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.