[Lldb-commits] [lldb] r219905 - Remove dead store.

2014-10-16 Thread Jason Molenda
Author: jmolenda Date: Thu Oct 16 02:47:37 2014 New Revision: 219905 URL: http://llvm.org/viewvc/llvm-project?rev=219905view=rev Log: Remove dead store. clang static analyzer fixit. Modified: lldb/trunk/source/Symbol/LineTable.cpp Modified: lldb/trunk/source/Symbol/LineTable.cpp URL:

[Lldb-commits] [lldb] r219907 - Remove dead store.

2014-10-16 Thread Jason Molenda
Author: jmolenda Date: Thu Oct 16 02:49:27 2014 New Revision: 219907 URL: http://llvm.org/viewvc/llvm-project?rev=219907view=rev Log: Remove dead store. clang static analyzer fixit. Modified: lldb/trunk/source/Target/Process.cpp Modified: lldb/trunk/source/Target/Process.cpp URL:

[Lldb-commits] [lldb] r219911 - Remove unreachable code.

2014-10-16 Thread Jason Molenda
Author: jmolenda Date: Thu Oct 16 03:05:22 2014 New Revision: 219911 URL: http://llvm.org/viewvc/llvm-project?rev=219911view=rev Log: Remove unreachable code. Modified: lldb/trunk/source/DataFormatters/CXXFormatterFunctions.cpp Modified:

[Lldb-commits] [lldb] r219915 - Remove unreachable code.

2014-10-16 Thread Jason Molenda
Author: jmolenda Date: Thu Oct 16 03:08:13 2014 New Revision: 219915 URL: http://llvm.org/viewvc/llvm-project?rev=219915view=rev Log: Remove unreachable code. Modified: lldb/trunk/source/Interpreter/OptionValuePathMappings.cpp Modified:

[Lldb-commits] [lldb] r219920 - Most of this function checks to see if m_process is non-null before

2014-10-16 Thread Jason Molenda
Author: jmolenda Date: Thu Oct 16 03:43:27 2014 New Revision: 219920 URL: http://llvm.org/viewvc/llvm-project?rev=219920view=rev Log: Most of this function checks to see if m_process is non-null before dereferencing it, except for this one section of code. Add a null check around it. clang

Re: [Lldb-commits] [PATCH] Compiler args patch resubmission

2014-10-16 Thread Alex Pepper
I am looking into it. Thanks. - Alex On Oct 16, 2014, at 8:09 AM, Ed Maste ema...@freebsd.org wrote: On FreeBSD this change introduced 29 test failures. It seems like they are all segfaults. My test build was w/o debug info - I'll have to rebuild and grab a backtrace. ``` Failing

[Lldb-commits] [lldb] r219936 - Fix MemoryHistory plugin to check whether the plugin

2014-10-16 Thread Jason Molenda
Author: jmolenda Date: Thu Oct 16 11:59:23 2014 New Revision: 219936 URL: http://llvm.org/viewvc/llvm-project?rev=219936view=rev Log: Fix MemoryHistory plugin to check whether the plugin was able to create itself before returning the shared pointer to it. clang warning. Modified:

[Lldb-commits] [lldb] r219970 - I see this test case crash - skip for now

2014-10-16 Thread Enrico Granata
Author: enrico Date: Thu Oct 16 16:42:34 2014 New Revision: 219970 URL: http://llvm.org/viewvc/llvm-project?rev=219970view=rev Log: I see this test case crash - skip for now Modified: lldb/trunk/test/lang/objc/blocks/TestObjCIvarsInBlocks.py Modified:

[Lldb-commits] [lldb] r219971 - This test actually works alright - we were just checking for the wrong string

2014-10-16 Thread Enrico Granata
Author: enrico Date: Thu Oct 16 17:04:05 2014 New Revision: 219971 URL: http://llvm.org/viewvc/llvm-project?rev=219971view=rev Log: This test actually works alright - we were just checking for the wrong string Modified: lldb/trunk/test/lang/c/anonymous/TestAnonymous.py Modified:

[Lldb-commits] [lldb] r219973 - Some more failure to bug tracking

2014-10-16 Thread Enrico Granata
Author: enrico Date: Thu Oct 16 17:27:17 2014 New Revision: 219973 URL: http://llvm.org/viewvc/llvm-project?rev=219973view=rev Log: Some more failure to bug tracking Modified: lldb/trunk/test/expression_command/test/TestExprs.py lldb/trunk/test/lang/cpp/dynamic-value/TestCppValueCast.py

[Lldb-commits] [lldb] r219979 - Add a test for the -b (batch mode) option to the lldb driver.

2014-10-16 Thread Jim Ingham
Author: jingham Date: Thu Oct 16 18:02:14 2014 New Revision: 219979 URL: http://llvm.org/viewvc/llvm-project?rev=219979view=rev Log: Add a test for the -b (batch mode) option to the lldb driver. Added: lldb/trunk/test/driver/ lldb/trunk/test/driver/batch_mode/

[Lldb-commits] [lldb] r219980 - This test needs the SB headers to make sense

2014-10-16 Thread Enrico Granata
Author: enrico Date: Thu Oct 16 18:02:45 2014 New Revision: 219980 URL: http://llvm.org/viewvc/llvm-project?rev=219980view=rev Log: This test needs the SB headers to make sense Modified: lldb/trunk/test/api/multiple-debuggers/TestMultipleDebuggers.py Modified:

[Lldb-commits] [lldb] r219982 - The number '5' triggers a bug unrelated to LLDB, and is not instrumental to this test in any way. Use another, randomly chosen, number to make the test pass again and p

2014-10-16 Thread Enrico Granata
Author: enrico Date: Thu Oct 16 18:06:40 2014 New Revision: 219982 URL: http://llvm.org/viewvc/llvm-project?rev=219982view=rev Log: The number '5' triggers a bug unrelated to LLDB, and is not instrumental to this test in any way. Use another, randomly chosen, number to make the test pass again

[Lldb-commits] [lldb] r219983 - Change a use of mktemp() to mkstemp() for better security.

2014-10-16 Thread Jason Molenda
Author: jmolenda Date: Thu Oct 16 18:10:03 2014 New Revision: 219983 URL: http://llvm.org/viewvc/llvm-project?rev=219983view=rev Log: Change a use of mktemp() to mkstemp() for better security. We have two more uses of mktemp still in the source base but they'll take a little more consideration.

[Lldb-commits] [lldb] r219984 - Added a new kind of test case: the inline test

2014-10-16 Thread Sean Callanan
Author: spyffe Date: Thu Oct 16 18:15:22 2014 New Revision: 219984 URL: http://llvm.org/viewvc/llvm-project?rev=219984view=rev Log: Added a new kind of test case: the inline test case. This test case style attempts to shed all of the boilerplate that is required for test cases, and let 80% of

[Lldb-commits] [lldb] r219985 - Split this test case to handle each literal kind uniquely

2014-10-16 Thread Enrico Granata
Author: enrico Date: Thu Oct 16 18:16:13 2014 New Revision: 219985 URL: http://llvm.org/viewvc/llvm-project?rev=219985view=rev Log: Split this test case to handle each literal kind uniquely Modified: lldb/trunk/test/lang/cpp/rdar12991846/TestRdar12991846.py Modified:

[Lldb-commits] [lldb] r220001 - Made multi-line test case actions possible in

2014-10-16 Thread Sean Callanan
Author: spyffe Date: Thu Oct 16 19:39:37 2014 New Revision: 220001 URL: http://llvm.org/viewvc/llvm-project?rev=220001view=rev Log: Made multi-line test case actions possible in the inline test cases. This makes them much more readable. Modified: lldb/trunk/test/lang/c/struct_types/main.c

[Lldb-commits] [PATCH] fix Bug21211 : reworked test/api/multithreaded/test_listener_event_description.cpp to work properly on Linux/FreeBSD

2014-10-16 Thread Shawn Best
Hi emaste, Issue D5632 fixed an issue where linux would dump spurious output to tty on startup (due to a broadcast stop event). After the checkin, it was noticed on FreeBSD a unit test was now failing. On closer investigation I found the test was using the C++ API to launch an inferior while

[Lldb-commits] [PATCH] remove CREATE_THREADS:=yes from api/multithreaded Makefile

2014-10-16 Thread Shawn Best
This flag triggers a '-lpthead' during the linking stage. Technically this is not needed since the multithreading is handled by std library, triggered by '-std=c++11' in build command line. The **real** reason I want to remove the '-lpthread' is it was causing a (linux/gcc built) test program