[Lldb-commits] [lldb] r179246 - Updated the line on which to break for the formatters test
Enrico Granata
egranata at apple.com
Wed Apr 10 17:28:12 PDT 2013
Author: enrico
Date: Wed Apr 10 19:28:12 2013
New Revision: 179246
URL: http://llvm.org/viewvc/llvm-project?rev=179246&view=rev
Log:
Updated the line on which to break for the formatters test
Moving over to source-regex might be a good idea, but it’s not what we really want to test. Ideally, we would set a regex breakpoint to find the right line, then delete it and set one by file and line with the right line info from before.
Modified:
lldb/trunk/tools/lldb-perf/darwin/formatters/formatters.cpp
Modified: lldb/trunk/tools/lldb-perf/darwin/formatters/formatters.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/lldb-perf/darwin/formatters/formatters.cpp?rev=179246&r1=179245&r2=179246&view=diff
==============================================================================
--- lldb/trunk/tools/lldb-perf/darwin/formatters/formatters.cpp (original)
+++ lldb/trunk/tools/lldb-perf/darwin/formatters/formatters.cpp Wed Apr 10 19:28:12 2013
@@ -148,7 +148,7 @@ public:
switch (counter)
{
case 0:
- m_target.BreakpointCreateByLocation("fmts_tester.mm", 68);
+ m_target.BreakpointCreateByLocation("fmts_tester.mm", 78);
next_action.Continue();
break;
case 1:
More information about the lldb-commits
mailing list