diff options
| author | Alexander Regueiro <alexreg@me.com> | 2019-03-12 00:49:17 +0000 |
|---|---|---|
| committer | Alexander Regueiro <alexreg@me.com> | 2019-03-14 01:00:49 +0000 |
| commit | fe30743c79018b2a73151440f5d8948d0979ac62 (patch) | |
| tree | ebeae438f9e1f0875194cea4a76ab3fc51bba357 /src/test/debuginfo | |
| parent | 7486b9c208f7e1c4aa1e36961927327bd793e952 (diff) | |
| download | rust-fe30743c79018b2a73151440f5d8948d0979ac62.tar.gz rust-fe30743c79018b2a73151440f5d8948d0979ac62.zip | |
Moved issue tests to subdirs and normalised names.
Diffstat (limited to 'src/test/debuginfo')
| -rw-r--r-- | src/test/debuginfo/auxiliary/issue-13213-aux.rs (renamed from src/test/debuginfo/auxiliary/issue13213aux.rs) | 0 | ||||
| -rw-r--r-- | src/test/debuginfo/issue-13213.rs | 6 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/test/debuginfo/auxiliary/issue13213aux.rs b/src/test/debuginfo/auxiliary/issue-13213-aux.rs index bde98b44544..bde98b44544 100644 --- a/src/test/debuginfo/auxiliary/issue13213aux.rs +++ b/src/test/debuginfo/auxiliary/issue-13213-aux.rs diff --git a/src/test/debuginfo/issue-13213.rs b/src/test/debuginfo/issue-13213.rs index 898ebe547b3..3c9a365fd4f 100644 --- a/src/test/debuginfo/issue-13213.rs +++ b/src/test/debuginfo/issue-13213.rs @@ -1,8 +1,8 @@ // min-lldb-version: 310 -// aux-build:issue13213aux.rs +// aux-build:issue-13213-aux.rs -extern crate issue13213aux; +extern crate issue_13213_aux; // compile-flags:-g @@ -10,6 +10,6 @@ extern crate issue13213aux; // statics that are marked with AvailableExternallyLinkage in the importing crate, may actually not // be available because they have been optimized out from the exporting crate. fn main() { - let b: issue13213aux::S = issue13213aux::A; + let b: issue_13213_aux::S = issue_13213_aux::A; println!("Nothing to do here..."); } |
