Re: [lldb-dev] [Release-testers] [8.0.0 Release] rc3 has been tagged
On 27 Feb 2019, at 19:51, Hans Wennborg via Release-testers wrote: > > 8.0.0-rc3 was just tagged from the release_80 branch at r355015. > > We're running a little behind schedule now, but I think we're also > close to be able to call this done. Again, I had to disable compiler-rt for this test run, as most of the sanitizers are totally broken. This is tracked in PR40761. Main test results on amd64-freebsd11: Expected Passes: 53895 (rc2: 53882) Expected Failures : 220 (rc2: 220) Unsupported Tests : 1081 (rc2: 1081) Unresolved Tests :10 (rc2:10) Unexpected Passes : 3 (rc2: 3) Unexpected Failures:62 (rc2:60) Main test results on i386-freebsd11: Expected Passes: 53747(rc2: 53729) Expected Failures : 236(rc2: 236) Unsupported Tests : 903(rc2: 903) Unresolved Tests :10(rc2:10) Unexpected Passes : 5(rc2: 5) Unexpected Failures: 175(rc2: 178) The unresolved tests are due to a number of tests hanging in state, forcing me to kill their parent .py processes. Uploaded: SHA256 (clang+llvm-8.0.0-rc3-amd64-unknown-freebsd11.tar.xz) = bc14dc280c7e2acc8750cd531b17698e943c3f22ee994f5b21db49b48f5e66e4 SHA256 (clang+llvm-8.0.0-rc3-i386-unknown-freebsd11.tar.xz) = 9003dda7df39f538e74983de74d2e3ff075d079e24671ab3649b702a9417423c -Dimitry signature.asc Description: Message signed with OpenPGP ___ lldb-dev mailing list lldb-dev@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev
[lldb-dev] [Bug 40943] New: lldb crashes (on linux) when debugging optimized code (-O2)
https://bugs.llvm.org/show_bug.cgi?id=40943 Bug ID: 40943 Summary: lldb crashes (on linux) when debugging optimized code (-O2) Product: lldb Version: unspecified Hardware: PC OS: All Status: NEW Severity: enhancement Priority: P Component: All Bugs Assignee: lldb-dev@lists.llvm.org Reporter: dav...@freebsd.org CC: apra...@apple.com, lab...@google.com, llvm-b...@lists.llvm.org, ztur...@google.com $ cat outer.c void optimize_me_not() {} $ cat abc.c a; main() { optimize_me_not(); { int b[1]; b[0] = 1; a = 0; } } $ clang-trunk abc.c /home/davide/reduce-crash/outer.c -g -O2 -o a.out $ $ cat cmds b 3 r kill quit $ lldb-trunk a.out -s cmds -b (lldb) target create "a.out" Current executable set to 'a.out' (x86_64). (lldb) command source -s 0 'cmds' Executing commands in '/home/davide/reduce-crash/cmds'. Segmentation fault (core dumped) $ clang-trunk --version clang version 9.0.0 (trunk 355281) Target: x86_64-unknown-linux-gnu Thread model: posix InstalledDir: /usr/local/bin $ lldb-trunk --version lldb version 9.0.0 (https://llvm.org/svn/llvm-project/lldb/trunk revision 355281) clang revision 355281 llvm revision 355281 $ uname -a Linux 4.15.0-45-generic #48-Ubuntu SMP Tue Jan 29 16:28:13 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux -- You are receiving this mail because: You are the assignee for the bug.___ lldb-dev mailing list lldb-dev@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev