diff options
| author | bors <bors@rust-lang.org> | 2017-12-14 12:50:00 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2017-12-14 12:50:00 +0000 |
| commit | 8624ea51172c8a86d5c7c47d740be65a3a9efbc6 (patch) | |
| tree | 9cf47887652e5148f68c031c57fd7f42feff782e /src/test/codegen | |
| parent | 75a02a919c5109c55c652dd6671553df6452be04 (diff) | |
| parent | d732da813bac73d2c81caddd06df3df3d9609e3d (diff) | |
| download | rust-8624ea51172c8a86d5c7c47d740be65a3a9efbc6.tar.gz rust-8624ea51172c8a86d5c7c47d740be65a3a9efbc6.zip | |
Auto merge of #46335 - oli-obk:cleanups, r=jseyfried
Use PathBuf instead of String where applicable r? @jseyfried
Diffstat (limited to 'src/test/codegen')
| -rw-r--r-- | src/test/codegen/remap_path_prefix/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/codegen/remap_path_prefix/main.rs b/src/test/codegen/remap_path_prefix/main.rs index c73739bb765..ea0c9ad2b83 100644 --- a/src/test/codegen/remap_path_prefix/main.rs +++ b/src/test/codegen/remap_path_prefix/main.rs @@ -32,7 +32,7 @@ fn main() { } // Here we check that local debuginfo is mapped correctly. -// CHECK: !DIFile(filename: "/the/src/remap_path_prefix/main.rs", directory: "/the/cwd") +// CHECK: !DIFile(filename: "/the/src/remap_path_prefix/main.rs", directory: "/the/cwd/") // And here that debuginfo from other crates are expanded to absolute paths. // CHECK: !DIFile(filename: "/the/aux-src/remap_path_prefix_aux.rs", directory: "") |
