]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-make-fulldeps/codegen-options-parsing/Makefile
Rollup merge of #69830 - RalfJung:miri-invalid-terminator, r=oli-obk
[rust.git] / src / test / run-make-fulldeps / codegen-options-parsing / Makefile
index fda96a8b1fb5eb0bad399e2cbe0d971161c01ece..39e9a9bdd6b684493da1400d21413eb55fb59423 100644 (file)
@@ -16,11 +16,11 @@ all:
        $(RUSTC) -C extra-filename=foo dummy.rs 2>&1
        #Option taking no argument
        $(RUSTC) -C lto= dummy.rs 2>&1 | \
-               $(CGREP) 'codegen option `lto` - one of `thin`, `fat`, or'
+               $(CGREP) 'codegen option `lto` - either a boolean (`yes`, `no`, `on`, `off`, etc), `thin`, `fat`, or omitted'
        $(RUSTC) -C lto=1 dummy.rs 2>&1 | \
-               $(CGREP) 'codegen option `lto` - one of `thin`, `fat`, or'
+               $(CGREP) 'codegen option `lto` - either a boolean (`yes`, `no`, `on`, `off`, etc), `thin`, `fat`, or omitted'
        $(RUSTC) -C lto=foo dummy.rs 2>&1 | \
-               $(CGREP) 'codegen option `lto` - one of `thin`, `fat`, or'
+               $(CGREP) 'codegen option `lto` - either a boolean (`yes`, `no`, `on`, `off`, etc), `thin`, `fat`, or omitted'
        $(RUSTC) -C lto dummy.rs
 
        # Should not link dead code...