mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
b5d3d970fa
Fluent, with all the icu4x it brings in, takes quite some time to compile. `fluent_messages!` is only needed in further downstream rustc crates, but is blocking more upstream crates like `rustc_index`. By splitting it out, we allow `rustc_macros` to be compiled earlier, which speeds up `x check compiler` by about 5 seconds (and even more after the needless dependency on `serde_json` is removed from `rustc_data_structures`).
104 lines
2.7 KiB
Rust
104 lines
2.7 KiB
Rust
// normalize-stderr-test "could not open Fluent resource:.*" -> "could not open Fluent resource: os-specific message"
|
|
|
|
#![feature(rustc_private)]
|
|
#![crate_type = "lib"]
|
|
|
|
extern crate rustc_fluent_macro;
|
|
use rustc_fluent_macro::fluent_messages;
|
|
|
|
/// Copy of the relevant `DiagnosticMessage` variant constructed by `fluent_messages` as it
|
|
/// expects `crate::DiagnosticMessage` to exist.
|
|
pub enum DiagnosticMessage {
|
|
FluentIdentifier(std::borrow::Cow<'static, str>, Option<std::borrow::Cow<'static, str>>),
|
|
}
|
|
|
|
/// Copy of the relevant `SubdiagnosticMessage` variant constructed by `fluent_messages` as it
|
|
/// expects `crate::SubdiagnosticMessage` to exist.
|
|
pub enum SubdiagnosticMessage {
|
|
FluentAttr(std::borrow::Cow<'static, str>),
|
|
}
|
|
|
|
mod missing_absolute {
|
|
use super::fluent_messages;
|
|
|
|
fluent_messages! { "/definitely_does_not_exist.ftl" }
|
|
//~^ ERROR could not open Fluent resource
|
|
}
|
|
|
|
mod missing_relative {
|
|
use super::fluent_messages;
|
|
|
|
fluent_messages! { "../definitely_does_not_exist.ftl" }
|
|
//~^ ERROR could not open Fluent resource
|
|
}
|
|
|
|
mod missing_message {
|
|
use super::fluent_messages;
|
|
|
|
fluent_messages! { "./missing-message.ftl" }
|
|
//~^ ERROR could not parse Fluent resource
|
|
}
|
|
|
|
mod duplicate {
|
|
use super::fluent_messages;
|
|
|
|
fluent_messages! { "./duplicate.ftl" }
|
|
//~^ ERROR overrides existing message: `no_crate_a_b_key`
|
|
}
|
|
|
|
mod slug_with_hyphens {
|
|
use super::fluent_messages;
|
|
|
|
fluent_messages! { "./slug-with-hyphens.ftl" }
|
|
//~^ ERROR name `no_crate_this-slug-has-hyphens` contains a '-' character
|
|
}
|
|
|
|
mod label_with_hyphens {
|
|
use super::fluent_messages;
|
|
|
|
fluent_messages! { "./label-with-hyphens.ftl" }
|
|
//~^ ERROR attribute `label-has-hyphens` contains a '-' character
|
|
}
|
|
|
|
mod valid {
|
|
use super::fluent_messages;
|
|
|
|
fluent_messages! { "./valid.ftl" }
|
|
|
|
mod test_generated {
|
|
use super::{fluent_generated::no_crate_key, DEFAULT_LOCALE_RESOURCE};
|
|
}
|
|
}
|
|
|
|
mod missing_crate_name {
|
|
use super::fluent_messages;
|
|
|
|
fluent_messages! { "./missing-crate-name.ftl" }
|
|
//~^ ERROR name `no-crate_foo` contains a '-' character
|
|
//~| ERROR name `with-hyphens` contains a '-' character
|
|
//~| ERROR name `with-hyphens` does not start with the crate name
|
|
|
|
mod test_generated {
|
|
use super::{
|
|
fluent_generated::{no_crate_foo, with_hyphens},
|
|
DEFAULT_LOCALE_RESOURCE,
|
|
};
|
|
}
|
|
}
|
|
|
|
mod missing_message_ref {
|
|
use super::fluent_messages;
|
|
|
|
fluent_messages! { "./missing-message-ref.ftl" }
|
|
//~^ ERROR referenced message `message` does not exist
|
|
}
|
|
|
|
mod bad_escape {
|
|
use super::fluent_messages;
|
|
|
|
fluent_messages! { "./invalid-escape.ftl" }
|
|
//~^ ERROR invalid escape `\n`
|
|
//~| ERROR invalid escape `\"`
|
|
//~| ERROR invalid escape `\'`
|
|
}
|