mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-30 22:12:15 +00:00
libtest: Improve error when missing -Zunstable-options
"only accepted on the nightly compiler" is misleading when this *is* nightly.
This commit is contained in:
parent
70db836922
commit
9314ed0cbd
@ -404,13 +404,13 @@ fn get_format(
|
||||
Some("terse") => OutputFormat::Terse,
|
||||
Some("json") => {
|
||||
if !allow_unstable {
|
||||
return Err("The \"json\" format is only accepted on the nightly compiler".into());
|
||||
return Err("The \"json\" format is only accepted on the nightly compiler with -Z unstable-options".into());
|
||||
}
|
||||
OutputFormat::Json
|
||||
}
|
||||
Some("junit") => {
|
||||
if !allow_unstable {
|
||||
return Err("The \"junit\" format is only accepted on the nightly compiler".into());
|
||||
return Err("The \"junit\" format is only accepted on the nightly compiler with -Z unstable-options".into());
|
||||
}
|
||||
OutputFormat::Junit
|
||||
}
|
||||
|
@ -1 +1 @@
|
||||
error: The "json" format is only accepted on the nightly compiler
|
||||
error: The "json" format is only accepted on the nightly compiler with -Z unstable-options
|
||||
|
Loading…
Reference in New Issue
Block a user