[Lldb-commits] [lldb] r371144 - [Reproducer] Add a `cont` to ModuleCXX.test

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Thu Sep 5 16:36:57 PDT 2019


Author: jdevlieghere
Date: Thu Sep  5 16:36:57 2019
New Revision: 371144

URL: http://llvm.org/viewvc/llvm-project?rev=371144&view=rev
Log:
[Reproducer] Add a `cont` to ModuleCXX.test

On more than one occasion I've found this test got stuck during replay
while waiting for a packet from debugserver when the debugger was in the
process of being destroyed. For some reason it's more prevalent on the
downstream Swift fork. Adding a cont mitigates the problem while I
investigate.

Modified:
    lldb/trunk/lit/Reproducer/Modules/Inputs/ModuleCXX.in

Modified: lldb/trunk/lit/Reproducer/Modules/Inputs/ModuleCXX.in
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lit/Reproducer/Modules/Inputs/ModuleCXX.in?rev=371144&r1=371143&r2=371144&view=diff
==============================================================================
--- lldb/trunk/lit/Reproducer/Modules/Inputs/ModuleCXX.in (original)
+++ lldb/trunk/lit/Reproducer/Modules/Inputs/ModuleCXX.in Thu Sep  5 16:36:57 2019
@@ -3,4 +3,5 @@ run
 expr -l Objective-C++ -- @import Foo
 expr -l Objective-C++ -- @import Bar
 expr -- Bar()
+cont
 reproducer generate




More information about the lldb-commits mailing list