File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -112,13 +112,14 @@ jobs:
112
112
113
113
# Test that backtraces are still symbolicated if we don't embed an absolute
114
114
# path to the PDB file in the binary.
115
- - run : |
116
- cargo clean
117
- cargo test
115
+ # Add -Cforce-frame-pointers for stability. The test otherwise fails
116
+ # non-deterministically on i686-pc-windows-msvc because the stack cannot be
117
+ # unwound reliably. This failure is not related to the feature being tested.
118
+ - run : cargo clean && cargo test
118
119
if : contains(matrix.rust, 'msvc')
119
120
name : " Test that backtraces are symbolicated without absolute PDB path"
120
121
env :
121
- RUSTFLAGS: "-C link -arg=/PDBALTPATH:%_PDB%"
122
+ RUSTFLAGS : " -Clink -arg=/PDBALTPATH:%_PDB% -Cforce-frame-pointers "
122
123
123
124
# Test that including as a submodule will still work, both with and without
124
125
# the `backtrace` feature enabled.
You can’t perform that action at this time.
0 commit comments