3a6c6ee3d3
This is done to cover the path of the test it-self as it may not live on the same root directory as {{rust-src-base}}, which can be the case if {{rust-src-base}} is coming from a extracted dist build (cc opt-dist)
25 lines
734 B
Rust
25 lines
734 B
Rust
//@ revisions: with-remap without-remap
|
|
//@ compile-flags: -g -Ztranslate-remapped-path-to-local-path=yes
|
|
//@ [with-remap]compile-flags: --remap-path-prefix={{rust-src-base}}=remapped
|
|
//@ [with-remap]compile-flags: --remap-path-prefix={{src-base}}=remapped-tests-ui
|
|
//@ [without-remap]compile-flags:
|
|
//@ error-pattern: E0507
|
|
|
|
// The $SRC_DIR*.rs:LL:COL normalisation doesn't kick in automatically
|
|
// as the remapped revision will not begin with $SRC_DIR_REAL,
|
|
// so we have to do it ourselves.
|
|
//@ normalize-stderr-test: ".rs:\d+:\d+" -> ".rs:LL:COL"
|
|
|
|
use std::thread;
|
|
struct Worker {
|
|
thread: thread::JoinHandle<()>,
|
|
}
|
|
|
|
impl Drop for Worker {
|
|
fn drop(&mut self) {
|
|
self.thread.join().unwrap();
|
|
}
|
|
}
|
|
|
|
pub fn main(){}
|