[Lldb-commits] [PATCH] D11910: Refactor dosep to use list comprehension. NFC.

2015-08-10 Thread Chaoren Lin via lldb-commits
chaoren created this revision. chaoren added a reviewer: zturner. chaoren added a subscriber: lldb-commits. http://reviews.llvm.org/D11910 Files: test/dosep.py Index: test/dosep.py === --- test/dosep.py +++ test/dosep.py @@ -153,1

Re: [Lldb-commits] [PATCH] D11846: Make dosep.py PEP8 compliant. NFC.

2015-08-10 Thread Chaoren Lin via lldb-commits
chaoren updated this revision to Diff 31683. chaoren added a comment. Rebase on top of http://reviews.llvm.org/D11910. http://reviews.llvm.org/D11846 Files: test/dosep.py Index: test/dosep.py === --- test/dosep.py +++ test/dosep

Re: [Lldb-commits] [PATCH] D11816: Allow dosep.py to print full output of dotest.py, even when dotest succeeds.

2015-08-10 Thread Chaoren Lin via lldb-commits
chaoren added a comment. Zach, there were two more comments since the LGTM. Comment at: test/dosep.py:1 @@ -1,2 +1,2 @@ -#!/usr/bin/env python +#!/usr/bin/env python chaoren wrote: > I think you added a character here. Could you please double check > before

Re: [Lldb-commits] [PATCH] D11843: Make dosep output status by overwriting the same line.

2015-08-10 Thread Chaoren Lin via lldb-commits
chaoren updated this revision to Diff 31703. chaoren added a comment. Rebase on top of http://reviews.llvm.org/rL244469. http://reviews.llvm.org/D11843 Files: test/dosep.py Index: test/dosep.py === --- test/dosep.py +++ test/dos

Re: [Lldb-commits] [PATCH] D11910: Refactor dosep to use list comprehension. NFC.

2015-08-10 Thread Chaoren Lin via lldb-commits
chaoren updated this revision to Diff 31708. chaoren added a comment. Accidentally removed timed_out tests from failed tests. http://reviews.llvm.org/D11910 Files: test/dosep.py Index: test/dosep.py === --- test/dosep.py +++ tes

[Lldb-commits] [PATCH] D11967: Export snprintf to avoid linking error with liblldb on Windows.

2015-08-11 Thread Chaoren Lin via lldb-commits
chaoren created this revision. chaoren added reviewers: zturner, ovyalov. chaoren added a subscriber: lldb-commits. http://reviews.llvm.org/D11967 Files: include/lldb/Host/windows/win32.h Index: include/lldb/Host/windows/win32.h =

Re: [Lldb-commits] [PATCH] D11843: Make dosep output status by overwriting the same line.

2015-08-11 Thread Chaoren Lin via lldb-commits
chaoren added a comment. Ping? http://reviews.llvm.org/D11843 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] r244710 - Export snprintf to avoid linking error with liblldb on Windows.

2015-08-11 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Tue Aug 11 20:22:24 2015 New Revision: 244710 URL: http://llvm.org/viewvc/llvm-project?rev=244710&view=rev Log: Export snprintf to avoid linking error with liblldb on Windows. Reviewers: zturner, ovyalov Subscribers: lldb-commits Differential Revision: http://reviews.llvm.

Re: [Lldb-commits] [PATCH] D11967: Export snprintf to avoid linking error with liblldb on Windows.

2015-08-11 Thread Chaoren Lin via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL244710: Export snprintf to avoid linking error with liblldb on Windows. (authored by chaoren). Changed prior to commit: http://reviews.llvm.org/D11967?vs=31884&id=31896#toc Repository: rL LLVM http:

Re: [Lldb-commits] [PATCH] D11967: Export snprintf to avoid linking error with liblldb on Windows.

2015-08-11 Thread Chaoren Lin via lldb-commits
chaoren added a subscriber: chaoren. chaoren added a comment. Sorry! I'll fix this as soon as I get home. I have a question though, isn't this only a problem if whatever's linking against lldb includes this header? This isn't in the API, so that shouldn't happen. I also don't know if it's correct

Re: [Lldb-commits] [PATCH] D11967: Export snprintf to avoid linking error with liblldb on Windows.

2015-08-11 Thread Chaoren Lin via lldb-commits
it's part of the api. Are we > sure it can't happen through a transitive include? > > As long as the user of liblldb doesn't see the declaration it shouldn't be > a problem. > > On Tue, Aug 11, 2015 at 6:54 PM Chaoren Lin via lldb-commits < > lldb-c

Re: [Lldb-commits] [PATCH] D11843: Make dosep output status by overwriting the same line.

2015-08-12 Thread Chaoren Lin via lldb-commits
chaoren added inline comments. Comment at: test/dosep.py:163 @@ -162,3 @@ -# We're only interested in the test file with the "Test*.py" naming pattern. -if not name.startswith("Test") or not name.endswith(".py"): -continue From here.

[Lldb-commits] [lldb] r244783 - Refactor dosep to use list comprehension. NFC.

2015-08-12 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Wed Aug 12 13:02:53 2015 New Revision: 244783 URL: http://llvm.org/viewvc/llvm-project?rev=244783&view=rev Log: Refactor dosep to use list comprehension. NFC. Reviewers: zturner Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D11910 Modified:

[Lldb-commits] [lldb] r244781 - Make dosep output status by overwriting the same line.

2015-08-12 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Wed Aug 12 13:02:49 2015 New Revision: 244781 URL: http://llvm.org/viewvc/llvm-project?rev=244781&view=rev Log: Make dosep output status by overwriting the same line. Summary: Update to D11816. Reviewers: zturner Subscribers: zturner, lldb-commits Differential Revision: h

Re: [Lldb-commits] [PATCH] D11910: Refactor dosep to use list comprehension. NFC.

2015-08-12 Thread Chaoren Lin via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL244783: Refactor dosep to use list comprehension. NFC. (authored by chaoren). Changed prior to commit: http://reviews.llvm.org/D11910?vs=31708&id=31963#toc Repository: rL LLVM http://reviews.llvm.or

[Lldb-commits] [lldb] r244782 - Don't print number of failures and percentage if no tests ran.

2015-08-12 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Wed Aug 12 13:02:51 2015 New Revision: 244782 URL: http://llvm.org/viewvc/llvm-project?rev=244782&view=rev Log: Don't print number of failures and percentage if no tests ran. Reviewers: zturner Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D11909

[Lldb-commits] [lldb] r244784 - Make dosep.py PEP8 compliant. NFC.

2015-08-12 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Wed Aug 12 13:02:54 2015 New Revision: 244784 URL: http://llvm.org/viewvc/llvm-project?rev=244784&view=rev Log: Make dosep.py PEP8 compliant. NFC. Reviewers: zturner, clayborg Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D11846 Modified: ll

Re: [Lldb-commits] [PATCH] D11846: Make dosep.py PEP8 compliant. NFC.

2015-08-12 Thread Chaoren Lin via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL244784: Make dosep.py PEP8 compliant. NFC. (authored by chaoren). Changed prior to commit: http://reviews.llvm.org/D11846?vs=31683&id=31964#toc Repository: rL LLVM http://reviews.llvm.org/D11846 Fi

Re: [Lldb-commits] [PATCH] D11909: Don't print number of failures and percentage if no tests ran.

2015-08-12 Thread Chaoren Lin via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL244782: Don't print number of failures and percentage if no tests ran. (authored by chaoren). Changed prior to commit: http://reviews.llvm.org/D11909?vs=31679&id=31962#toc Repository: rL LLVM http:/

Re: [Lldb-commits] [PATCH] D11843: Make dosep output status by overwriting the same line.

2015-08-12 Thread Chaoren Lin via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL244781: Make dosep output status by overwriting the same line. (authored by chaoren). Changed prior to commit: http://reviews.llvm.org/D11843?vs=31703&id=31961#toc Repository: rL LLVM http://reviews

Re: [Lldb-commits] [PATCH] D12020: Print unexpected successes at the end of dosep.

2015-08-13 Thread Chaoren Lin via lldb-commits
chaoren added inline comments. Comment at: test/dosep.py:202 @@ -196,1 +201,3 @@ if status != ePassed] +xpasses = [name for name, status, _, _, unexpected_successes in results if unexpected_successes > 0] + Don't need status here. Nit: cou

Re: [Lldb-commits] [PATCH] D12020: Print unexpected successes at the end of dosep.

2015-08-13 Thread Chaoren Lin via lldb-commits
chaoren accepted this revision. chaoren added a comment. This revision is now accepted and ready to land. LGTM http://reviews.llvm.org/D12020 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/ll

Re: [Lldb-commits] [PATCH] D12039: Make @skipUnlessArch actually skip instead of XFAIL

2015-08-14 Thread Chaoren Lin via lldb-commits
chaoren added inline comments. Comment at: test/lldbtest.py:943 @@ -947,1 +942,3 @@ +def skipUnlessArch(archlist): +def myImpl(func): Is there a reason ``` return unittest2.skipUnless(getArchitecture() in archlist, ...) ``` is not sufficient? Also, please a

Re: [Lldb-commits] [PATCH] D12039: Make @skipUnlessArch actually skip instead of XFAIL

2015-08-14 Thread Chaoren Lin via lldb-commits
chaoren accepted this revision. This revision is now accepted and ready to land. Comment at: test/lldbtest.py:943 @@ -947,1 +942,3 @@ +def skipUnlessArch(archlist): +def myImpl(func): zturner wrote: > chaoren wrote: > > Is there a reason > > ``` > > return u

[Lldb-commits] [lldb] r245262 - Revert part of "Convert all use of pthreads in tests to c++11 threads."

2015-08-17 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Mon Aug 17 19:27:08 2015 New Revision: 245262 URL: http://llvm.org/viewvc/llvm-project?rev=245262&view=rev Log: Revert part of "Convert all use of pthreads in tests to c++11 threads." TestExprDoesntBlock started failing because deadlocks behave differently with pthread_mutex

Re: [Lldb-commits] [PATCH] D11962: Mark TestCModules as XFAIL on OSX

2015-08-18 Thread Chaoren Lin via lldb-commits
chaoren added a subscriber: chaoren. chaoren added a comment. Ping? It's been a week, and the buildbot is still red because of this: http://lab.llvm.org:8011/builders/lldb-x86_64-darwin-13.4/builds/4923 http://reviews.llvm.org/D11962 ___ lldb-commi

[Lldb-commits] [lldb] r245398 - Update to r245397.

2015-08-18 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Tue Aug 18 20:24:57 2015 New Revision: 245398 URL: http://llvm.org/viewvc/llvm-project?rev=245398&view=rev Log: Update to r245397. `ast_transformer` could be null, in which case we should initialize `m_code_generator` with the ASTContext. Modified: lldb/trunk/source/Exp

[Lldb-commits] [lldb] r245407 - XFAIL TestCppChainedCalls for GCC.

2015-08-18 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Tue Aug 18 21:55:33 2015 New Revision: 245407 URL: http://llvm.org/viewvc/llvm-project?rev=245407&view=rev Log: XFAIL TestCppChainedCalls for GCC. Modified: lldb/trunk/test/lang/cpp/chained-calls/TestCppChainedCalls.py Modified: lldb/trunk/test/lang/cpp/chained-calls/Te

[Lldb-commits] [lldb] r245412 - Fix TestCppNsImport and TestCppScope for remote tests.

2015-08-18 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Tue Aug 18 23:08:56 2015 New Revision: 245412 URL: http://llvm.org/viewvc/llvm-project?rev=245412&view=rev Log: Fix TestCppNsImport and TestCppScope for remote tests. Modified: lldb/trunk/test/lang/cpp/nsimport/TestCppNsImport.py lldb/trunk/test/lang/cpp/scope/TestCp

Re: [Lldb-commits] [PATCH] D11543: Fix evaluation of global operators in C++

2015-08-18 Thread Chaoren Lin via lldb-commits
chaoren added a subscriber: chaoren. Comment at: test/lang/cpp/global_operators/TestCppGlobalOperators.py:9 @@ +8,3 @@ +class TestCppGlobalOperators(TestBase): + +mydir = TestBase.compute_mydir(__file__) Please be careful of trailing whitespaces.

[Lldb-commits] [lldb] r245418 - XFAIL TestCppScope for Darwin.

2015-08-18 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Wed Aug 19 01:21:09 2015 New Revision: 245418 URL: http://llvm.org/viewvc/llvm-project?rev=245418&view=rev Log: XFAIL TestCppScope for Darwin. Modified: lldb/trunk/test/lang/cpp/scope/TestCppScope.py Modified: lldb/trunk/test/lang/cpp/scope/TestCppScope.py URL: http://

[Lldb-commits] [lldb] r245460 - XTIMEOUT TestExitDuringStep for Darwin.

2015-08-19 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Wed Aug 19 12:13:02 2015 New Revision: 245460 URL: http://llvm.org/viewvc/llvm-project?rev=245460&view=rev Log: XTIMEOUT TestExitDuringStep for Darwin. Modified: lldb/trunk/test/dosep.py Modified: lldb/trunk/test/dosep.py URL: http://llvm.org/viewvc/llvm-project/lldb/t

[Lldb-commits] [lldb] r245464 - XTIMEOUT TestEvents and TestThreadStates for Windows to Android.

2015-08-19 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Wed Aug 19 12:22:12 2015 New Revision: 245464 URL: http://llvm.org/viewvc/llvm-project?rev=245464&view=rev Log: XTIMEOUT TestEvents and TestThreadStates for Windows to Android. Modified: lldb/trunk/test/dosep.py Modified: lldb/trunk/test/dosep.py URL: http://llvm.org/v

[Lldb-commits] [lldb] r245477 - XTIMEOUT TestChangeProcessGroup for Linux.

2015-08-19 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Wed Aug 19 13:39:25 2015 New Revision: 245477 URL: http://llvm.org/viewvc/llvm-project?rev=245477&view=rev Log: XTIMEOUT TestChangeProcessGroup for Linux. Modified: lldb/trunk/test/dosep.py Modified: lldb/trunk/test/dosep.py URL: http://llvm.org/viewvc/llvm-project/lld

Re: [Lldb-commits] [PATCH] D12165: Improve tests regarding imported namespaces and chained calls in C++

2015-08-19 Thread Chaoren Lin via lldb-commits
chaoren added a subscriber: chaoren. chaoren requested changes to this revision. chaoren added a reviewer: chaoren. This revision now requires changes to proceed. Comment at: test/lang/cpp/chained-calls/TestCppChainedCalls.py:45 @@ -45,3 +44,3 @@ env = None proce

Re: [Lldb-commits] [PATCH] D12165: Improve tests regarding imported namespaces and chained calls in C++

2015-08-19 Thread Chaoren Lin via lldb-commits
chaoren requested changes to this revision. This revision now requires changes to proceed. Comment at: test/lang/cpp/nsimport/TestCppNsImport.py:37 @@ -36,3 +36,3 @@ # Get the path of the executable -cwd = os.getcwd() +cwd = self.get_process_working_direct

[Lldb-commits] [lldb] r245532 - XTIMEOUT TestIntegerTypesExpr for Darwin.

2015-08-19 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Wed Aug 19 20:26:57 2015 New Revision: 245532 URL: http://llvm.org/viewvc/llvm-project?rev=245532&view=rev Log: XTIMEOUT TestIntegerTypesExpr for Darwin. Modified: lldb/trunk/test/dosep.py Modified: lldb/trunk/test/dosep.py URL: http://llvm.org/viewvc/llvm-project/lldb

[Lldb-commits] [PATCH] D12206: Inline fake snprintf to avoid linkage issues on Windows.

2015-08-20 Thread Chaoren Lin via lldb-commits
chaoren created this revision. chaoren added a reviewer: zturner. chaoren added a subscriber: lldb-commits. dllexport doesn't work if linking against a static library with its own copy of snprintf. http://reviews.llvm.org/D12206 Files: include/lldb/Host/windows/win32.h source/Host/windows/Wi

[Lldb-commits] [lldb] r245610 - Inline fake snprintf to avoid linkage issues on Windows.

2015-08-20 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Thu Aug 20 15:53:15 2015 New Revision: 245610 URL: http://llvm.org/viewvc/llvm-project?rev=245610&view=rev Log: Inline fake snprintf to avoid linkage issues on Windows. Summary: dllexport doesn't work if linking against a static library with its own copy of snprintf. Review

Re: [Lldb-commits] [PATCH] D12206: Inline fake snprintf to avoid linkage issues on Windows.

2015-08-20 Thread Chaoren Lin via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL245610: Inline fake snprintf to avoid linkage issues on Windows. (authored by chaoren). Changed prior to commit: http://reviews.llvm.org/D12206?vs=32722&id=32740#toc Repository: rL LLVM http://revie

[Lldb-commits] [PATCH] D12420: Make ProcessGDBRemote get a //copy// of platform Unix signals.

2015-08-27 Thread Chaoren Lin via lldb-commits
chaoren created this revision. chaoren added reviewers: clayborg, jaydeep. chaoren added a subscriber: lldb-commits. Update to http://reviews.llvm.org/rL243618. http://reviews.llvm.org/D12420 Files: source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp Index: source/Plugins/Process/gdb-remot

Re: [Lldb-commits] [PATCH] D12420: Make ProcessGDBRemote get a //copy// of platform Unix signals.

2015-08-28 Thread Chaoren Lin via lldb-commits
chaoren updated this revision to Diff 33460. chaoren added a comment. - Force client side copy. http://reviews.llvm.org/D12420 Files: include/lldb/Target/Process.h source/Plugins/Process/elf-core/ProcessElfCore.cpp source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp source/Target/Pro

Re: [Lldb-commits] [PATCH] D12420: Make ProcessGDBRemote get a //copy// of platform Unix signals.

2015-08-28 Thread Chaoren Lin via lldb-commits
chaoren marked an inline comment as done. Comment at: source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp:853 @@ -852,3 +852,3 @@ if (platform_sp && platform_sp->IsConnected()) -SetUnixSignals(platform_sp->GetUnixSignals()); + SetUnixSignals(std

Re: [Lldb-commits] [PATCH] D12420: Make ProcessGDBRemote get a //copy// of platform Unix signals.

2015-08-28 Thread Chaoren Lin via lldb-commits
chaoren updated this revision to Diff 33485. chaoren added a comment. - ProcessGDBRemote should automatically get a copy of GDBRemoteSignals. http://reviews.llvm.org/D12420 Files: include/lldb/Target/Process.h source/Plugins/Process/elf-core/ProcessElfCore.cpp source/Plugins/Process/gdb-r

Re: [Lldb-commits] [PATCH] D12420: Make ProcessGDBRemote get a //copy// of platform Unix signals.

2015-08-31 Thread Chaoren Lin via lldb-commits
chaoren added inline comments. Comment at: source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp:2910 @@ +2909,3 @@ +{ +Process::SetUnixSignals(std::make_shared(signals_sp)); +} Here's the copy. http://reviews.llvm.org/D12420

[Lldb-commits] [lldb] r246557 - Make ProcessGDBRemote get a //copy// of platform Unix signals.

2015-09-01 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Tue Sep 1 11:58:45 2015 New Revision: 246557 URL: http://llvm.org/viewvc/llvm-project?rev=246557&view=rev Log: Make ProcessGDBRemote get a //copy// of platform Unix signals. Summary: Update to http://reviews.llvm.org/rL243618. Reviewers: jaydeep, clayborg Subscribers: lab

Re: [Lldb-commits] [PATCH] D12420: Make ProcessGDBRemote get a //copy// of platform Unix signals.

2015-09-01 Thread Chaoren Lin via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL246557: Make ProcessGDBRemote get a //copy// of platform Unix signals. (authored by chaoren). Changed prior to commit: http://reviews.llvm.org/D12420?vs=33485&id=33707#toc Repository: rL LLVM http:/

[Lldb-commits] [lldb] r247628 - Fix CMake build.

2015-09-14 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Mon Sep 14 17:39:34 2015 New Revision: 247628 URL: http://llvm.org/viewvc/llvm-project?rev=247628&view=rev Log: Fix CMake build. - Typo: Coca.cpp -> Cocoa.cpp - Missing include. Added: lldb/trunk/source/Plugins/Language/ObjC/Cocoa.cpp - copied, changed from r24762

[Lldb-commits] [PATCH] D12868: Revert "Fixup XFAIL marking on TestConstVariables for clang version"

2015-09-14 Thread Chaoren Lin via lldb-commits
chaoren created this revision. chaoren added a reviewer: tfiala. chaoren added a subscriber: lldb-commits. Linux with ToT clang (3.8) fails. This reverts commit r247633. http://reviews.llvm.org/D12868 Files: test/lang/c/const_variables/TestConstVariables.py Index: test/lang/c/const_variables

Re: [Lldb-commits] [PATCH] D12868: Revert "Fixup XFAIL marking on TestConstVariables for clang version"

2015-09-14 Thread Chaoren Lin via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL247648: Revert "Fixup XFAIL marking on TestConstVariables for clang version" (authored by chaoren). Changed prior to commit: http://reviews.llvm.org/D12868?vs=34764&id=34766#toc Repository: rL LLVM

[Lldb-commits] [lldb] r247648 - Revert "Fixup XFAIL marking on TestConstVariables for clang version"

2015-09-14 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Mon Sep 14 19:52:00 2015 New Revision: 247648 URL: http://llvm.org/viewvc/llvm-project?rev=247648&view=rev Log: Revert "Fixup XFAIL marking on TestConstVariables for clang version" Summary: Linux with ToT clang (3.8) fails. This reverts commit r247633. Reviewers: tfiala S

[Lldb-commits] [lldb] r247766 - Fix off-by-one size check.

2015-09-15 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Tue Sep 15 20:20:34 2015 New Revision: 247766 URL: http://llvm.org/viewvc/llvm-project?rev=247766&view=rev Log: Fix off-by-one size check. Modified: lldb/trunk/source/Expression/IRInterpreter.cpp Modified: lldb/trunk/source/Expression/IRInterpreter.cpp URL: http://llvm

[Lldb-commits] [PATCH] D12909: Fix Makefile for Windows to Android tests.

2015-09-16 Thread Chaoren Lin via lldb-commits
chaoren created this revision. chaoren added a reviewer: zturner. chaoren added a subscriber: lldb-commits. Herald added subscribers: danalbert, tberghammer. http://reviews.llvm.org/D12909 Files: test/make/Makefile.rules Index: test/make/Makefile.rules =

[Lldb-commits] [lldb] r247855 - XFAIL TestCppNsImport for gcc-4.9.

2015-09-16 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Wed Sep 16 16:32:48 2015 New Revision: 247855 URL: http://llvm.org/viewvc/llvm-project?rev=247855&view=rev Log: XFAIL TestCppNsImport for gcc-4.9. Works for gcc-4.8. A bug in gcc perhaps. Modified: lldb/trunk/test/lang/cpp/nsimport/TestCppNsImport.py Modified: lldb/tru

[Lldb-commits] [lldb] r247857 - Fix Makefile for Windows to Android tests.

2015-09-16 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Wed Sep 16 16:51:51 2015 New Revision: 247857 URL: http://llvm.org/viewvc/llvm-project?rev=247857&view=rev Log: Fix Makefile for Windows to Android tests. Reviewers: zturner Subscribers: tberghammer, lldb-commits, danalbert Differential Revision: http://reviews.llvm.org/D1

Re: [Lldb-commits] [PATCH] D12909: Fix Makefile for Windows to Android tests.

2015-09-16 Thread Chaoren Lin via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL247857: Fix Makefile for Windows to Android tests. (authored by chaoren). Changed prior to commit: http://reviews.llvm.org/D12909?vs=34905&id=34929#toc Repository: rL LLVM http://reviews.llvm.org/D1

[Lldb-commits] [lldb] r247863 - XFAIL TestCppNsImport for gcc-4.9 inclusive.

2015-09-16 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Wed Sep 16 18:36:41 2015 New Revision: 247863 URL: http://llvm.org/viewvc/llvm-project?rev=247863&view=rev Log: XFAIL TestCppNsImport for gcc-4.9 inclusive. Modified: lldb/trunk/test/lang/cpp/nsimport/TestCppNsImport.py Modified: lldb/trunk/test/lang/cpp/nsimport/TestCp

Re: [Lldb-commits] [PATCH] D12115: [LLDB-MI] Fix -data-info-line and -symbol-list-lines when Windows filenames are used.

2015-09-17 Thread Chaoren Lin via lldb-commits
chaoren added a subscriber: chaoren. chaoren added a comment. Could you please take a look at these issues? TestMiSymbol started to fail on Linux with gcc-4.9: http://lab.llvm.org:8011/builders/lldb-x86_64-ubuntu-14.04-cmake/builds/6387 Comment at: lldb/trunk/tools/lldb-mi/MIUt

[Lldb-commits] [lldb] r247914 - Fix TestMiSymbol for gcc-4.9 test.

2015-09-17 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Thu Sep 17 13:38:55 2015 New Revision: 247914 URL: http://llvm.org/viewvc/llvm-project?rev=247914&view=rev Log: Fix TestMiSymbol for gcc-4.9 test. Modified: lldb/trunk/test/tools/lldb-mi/symbol/TestMiSymbol.py Modified: lldb/trunk/test/tools/lldb-mi/symbol/TestMiSymbol.

[Lldb-commits] [PATCH] D12976: Fix TestChangeProcessGroup to properly step out of sleep.

2015-09-18 Thread Chaoren Lin via lldb-commits
chaoren created this revision. chaoren added a reviewer: labath. chaoren added a subscriber: lldb-commits. http://reviews.llvm.org/D12976 Files: test/functionalities/process_group/TestChangeProcessGroup.py Index: test/functionalities/process_group/TestChangeProcessGroup.py

Re: [Lldb-commits] [PATCH] D12976: Fix TestChangeProcessGroup to properly step out of sleep.

2015-09-18 Thread Chaoren Lin via lldb-commits
chaoren updated this revision to Diff 35113. chaoren added a comment. Remove old line. http://reviews.llvm.org/D12976 Files: test/functionalities/process_group/TestChangeProcessGroup.py Index: test/functionalities/process_group/TestChangeProcessGroup.py ==

Re: [Lldb-commits] [PATCH] D12976: Fix TestChangeProcessGroup to properly step out of sleep.

2015-09-18 Thread Chaoren Lin via lldb-commits
chaoren added a comment. I thought this was supposed to be fixed, but TestChangeProcessGroup, TestExpressionInSyscall, and TestRegisters just started failing for me recently because of this. http://reviews.llvm.org/D12976 ___ lldb-commits mailing

[Lldb-commits] [lldb] r248075 - Fix Linux bot.

2015-09-18 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Fri Sep 18 19:57:11 2015 New Revision: 248075 URL: http://llvm.org/viewvc/llvm-project?rev=248075&view=rev Log: Fix Linux bot. Modified: lldb/trunk/test/dosep.py Modified: lldb/trunk/test/dosep.py URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/dosep.py?rev=24

Re: [Lldb-commits] [PATCH] D12976: Fix TestChangeProcessGroup to properly step out of sleep.

2015-09-21 Thread Chaoren Lin via lldb-commits
chaoren added a comment. Do we still need the original stepInstruction? http://reviews.llvm.org/D12976 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Re: [Lldb-commits] [PATCH] D12976: Fix TestChangeProcessGroup to properly step out of sleep.

2015-09-21 Thread Chaoren Lin via lldb-commits
chaoren updated this revision to Diff 35304. chaoren added a comment. Remove existing workaround. http://reviews.llvm.org/D12976 Files: test/functionalities/process_group/TestChangeProcessGroup.py Index: test/functionalities/process_group/TestChangeProcessGroup.py ===

[Lldb-commits] [lldb] r248301 - Update TestChangeProcessGroup to remove obsolete workaround.

2015-09-22 Thread Chaoren Lin via lldb-commits
Author: chaoren Date: Tue Sep 22 12:37:34 2015 New Revision: 248301 URL: http://llvm.org/viewvc/llvm-project?rev=248301&view=rev Log: Update TestChangeProcessGroup to remove obsolete workaround. Expression evaluation in syscalls should work now. Reviewers: labath Subscribers: lldb-commits Diff

Re: [Lldb-commits] [PATCH] D12976: Update TestChangeProcessGroup to remove obsolete workaround.

2015-09-22 Thread Chaoren Lin via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL248301: Update TestChangeProcessGroup to remove obsolete workaround. (authored by chaoren). Changed prior to commit: http://reviews.llvm.org/D12976?vs=35304&id=35391#toc Repository: rL LLVM http://r

<    1   2