Commit d8951b7 1 parent 704b55c commit d8951b7 Copy full SHA for d8951b7
File tree 3 files changed +4
-2
lines changed
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 82
82
- run : cargo test --features libbacktrace --manifest-path crates/without_debuginfo/Cargo.toml
83
83
- run : cargo test --features "libbacktrace coresymbolication" --manifest-path crates/without_debuginfo/Cargo.toml
84
84
- run : cargo test --features "libbacktrace gimli-symbolize" --manifest-path crates/without_debuginfo/Cargo.toml
85
- - run : cargo test --manifest-path crates/line-tables-only/Cargo.toml
85
+ - run : cargo test --manifest-path crates/line-tables-only/Cargo.toml --features libbacktrace
86
+ - run : cargo test --manifest-path crates/line-tables-only/Cargo.toml --features gimli-symbolize
86
87
87
88
windows_arm64 :
88
89
name : Windows AArch64
Original file line number Diff line number Diff line change @@ -18,3 +18,4 @@ features = [
18
18
19
19
[features ]
20
20
libbacktrace = [' backtrace/libbacktrace' ]
21
+ gimli-symbolize = [' backtrace/gimli-symbolize' ]
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ mod tests {
26
26
for symbol in frame. symbols ( ) {
27
27
if let Some ( name) = symbol. name ( ) {
28
28
if name. as_bytes ( ) == expected_name. as_bytes ( ) {
29
- assert_eq ! ( symbol. filename( ) , Some ( expected_file) ) ;
29
+ assert ! ( symbol. filename( ) . unwrap ( ) . ends_with ( expected_file) ) ;
30
30
assert_eq ! ( symbol. lineno( ) , Some ( expected_line) ) ;
31
31
return ;
32
32
}
You can’t perform that action at this time.
0 commit comments