about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Nordholts <enselic@gmail.com>2023-10-07 08:17:20 +0200
committerMartin Nordholts <enselic@gmail.com>2023-10-07 08:27:05 +0200
commitf96541e9a9be7a5b28191be9229d72c8bf47baa7 (patch)
tree3302233af2654ae80e2ad88596d8c20ad57222b7
parent4ea5190026dbc1302b644d938e68bc6843cb8b24 (diff)
downloadrust-f96541e9a9be7a5b28191be9229d72c8bf47baa7.tar.gz
rust-f96541e9a9be7a5b28191be9229d72c8bf47baa7.zip
tests/run-make: Remove wrong blessing advice
run-make tests are not special but can be blessed like other tests, like
this:

    ./x.py test --bless tests/run-make/unknown-mod-stdin
-rw-r--r--tests/run-make/unknown-mod-stdin/Makefile1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/run-make/unknown-mod-stdin/Makefile b/tests/run-make/unknown-mod-stdin/Makefile
index c1931765382..bc468387a2c 100644
--- a/tests/run-make/unknown-mod-stdin/Makefile
+++ b/tests/run-make/unknown-mod-stdin/Makefile
@@ -5,7 +5,6 @@ include ../tools.mk
 all:
 	echo 'mod unknown;' | $(RUSTC) --crate-type rlib - >$(TMPDIR)/unknown-mod.stdout 2>$(TMPDIR)/unknown-mod.stderr || echo "failed successfully"
 
-# Bless like this: RUSTC_BLESS_TEST=1 ./x.py test tests/run-make/unknown-mod-stdin
 ifdef RUSTC_BLESS_TEST
 	cp "$(TMPDIR)"/unknown-mod.stdout unknown-mod.stdout
 	cp "$(TMPDIR)"/unknown-mod.stderr unknown-mod.stderr