/src/test/incremental/issue-49595/issue_49595.rs

https://gitlab.com/jianglu/rust · Rust · 42 lines · 19 code · 8 blank · 15 comment · 0 complexity · ed5ef7939d47cfd9856ddbd1c60aa7fb MD5 · raw file

  1. // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
  2. // file at the top-level directory of this distribution and at
  3. // http://rust-lang.org/COPYRIGHT.
  4. //
  5. // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
  6. // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
  7. // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
  8. // option. This file may not be copied, modified, or distributed
  9. // except according to those terms.
  10. // revisions:cfail1 cfail2 cfail3
  11. // compile-flags: -Z query-dep-graph --test
  12. // compile-pass
  13. #![feature(rustc_attrs)]
  14. #![crate_type = "rlib"]
  15. #![rustc_partition_codegened(module="issue_49595-tests", cfg="cfail2")]
  16. #![rustc_partition_codegened(module="issue_49595-lit_test", cfg="cfail3")]
  17. mod tests {
  18. #[cfg_attr(not(cfail1), ignore)]
  19. #[test]
  20. fn test() {
  21. }
  22. }
  23. // Checks that changing a string literal without changing its span
  24. // takes effect.
  25. // replacing a module to have a stable span
  26. #[cfg_attr(not(cfail3), path = "auxiliary/lit_a.rs")]
  27. #[cfg_attr(cfail3, path = "auxiliary/lit_b.rs")]
  28. mod lit;
  29. pub mod lit_test {
  30. #[test]
  31. fn lit_test() {
  32. println!("{}", ::lit::A);
  33. }
  34. }