58b3af4c29
The following changes are included: - Delete per-file license notices at the top of each file. - Delete the first paragraph of LICENSE-MIT (an inaccurate pseudo-copyright line), leaving only the text of the MIT license. Nothing about the license of Serde code has changed, only our understanding of how to correctly communicate that license has changed. This mirrors an equivalent change being applied in the rust-lang/rust repository.
16 lines
383 B
Rust
16 lines
383 B
Rust
#![cfg(feature = "unstable")]
|
|
|
|
extern crate compiletest_rs as compiletest;
|
|
|
|
#[test]
|
|
fn ui() {
|
|
let config = compiletest::Config {
|
|
mode: compiletest::common::Mode::Ui,
|
|
src_base: std::path::PathBuf::from("tests/ui"),
|
|
target_rustcflags: Some("-L deps/target/debug/deps".to_owned()),
|
|
..Default::default()
|
|
};
|
|
|
|
compiletest::run_tests(&config);
|
|
}
|