Rollup merge of #39146 - alexcrichton:fix-osx-debug, r=michaelwoerister
travis: Fix post-failure lldb invocation Pass an absolute path, not just the basename.
This commit is contained in:
commit
254380e2f3
|
@ -49,7 +49,7 @@ matrix:
|
|||
echo 'bt all' > cmds;
|
||||
for file in $(ls /cores); do
|
||||
echo core file $file;
|
||||
lldb -c $file `which ld` -b -s cmds;
|
||||
lldb -c /cores/$file `which ld` -b -s cmds;
|
||||
done
|
||||
|
||||
- env: >
|
||||
|
|
Loading…
Reference in New Issue