mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-22 05:37:58 +00:00
4821d09a48
The update-references.sh script makes these much easier to update in bulk compared to compile-fail tests.
24 lines
722 B
Rust
24 lines
722 B
Rust
// Copyright 2017 Serde Developers
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
// option. This file may not be copied, modified, or distributed
|
|
// except according to those terms.
|
|
|
|
#![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);
|
|
}
|