Revision c47f6ddd571af53de83d87cea6af7209546aac4e authored by B2G Bumper Bot on 28 May 2014, 10:40:50 UTC, committed by B2G Bumper Bot on 28 May 2014, 10:40:50 UTC
========

https://hg.mozilla.org/integration/gaia-central/rev/c3dc7284eb8f
Author: Carsten Book <tomcat@mozilla.com>
Desc: Merge pull request #19186 from kamituel/Bug_1002643

Bug 1002643 - Test cases for NfcHandoverManager. r=alive

========

https://hg.mozilla.org/integration/gaia-central/rev/b7ee322088ca
Author: Kamil Leszczuk <kamituel@gmail.com>
Desc: Bug 1002643: Test cases for NfcHandoverManager
1 parent 9412995
Raw File
.lldbinit
# .lldbinit file for debugging Mozilla

# -----------------------------------------------------------------------------
# For documentation on all of the commands and type summaries defined here
# and in the accompanying Python scripts, see python/lldbutils/README.txt.
# -----------------------------------------------------------------------------

# Import the module that defines complex Gecko debugging commands.  This assumes
# you are either running lldb from the top level source directory, the objdir,
# or the dist/bin directory.  (.lldbinit files in the objdir and dist/bin set
# topsrcdir appropriately.)
script topsrcdir = topsrcdir if locals().has_key("topsrcdir") else "."; sys.path.append(os.path.join(topsrcdir, "python/lldbutils")); import lldbutils; lldbutils.init()

# Mozilla's use of UNIFIED_SOURCES to include multiple source files into a
# single compiled file breaks lldb breakpoint setting. This works around that.
# See http://lldb.llvm.org/troubleshooting.html for more info.
settings set target.inline-breakpoint-strategy always

# Show the dynamic type of an object when using "expr".  This, for example,
# will show a variable declared as "nsIFrame *" that points to an nsBlockFrame
# object as being of type "nsBlockFrame *" rather than "nsIFrame *".
settings set target.prefer-dynamic-value run-target

# Show the string value in atoms.
type summary add nsIAtom --summary-string "${var.mString}"

# Show the value of text nodes.
type summary add nsTextNode --summary-string "${var.mText}"

# Dump the current JS stack.
command alias js expr DumpJSStack()
back to top