summaryrefslogtreecommitdiff
path: root/tests/auto/debugger/tst_dumpers.cpp
Commit message (Collapse)AuthorAgeFilesLines
* MinGW-w64 Utils:: compilation fixRay Donnelly2015-06-011-1/+3
| | | | | | | | | | The include for utils/environment.h was omitted unless Q_OS_MSVC, but the code that uses it is also compiled for MinGW-w64, so change that compile guard to Q_OS_WIN instead. Change-Id: I2fa5a09f1864c0ed38d09e3fbb2c6f661fbc8b26 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
* Debugger: Remove StdStream dumper testhjk2015-04-171-18/+0
| | | | | | | | This was testing a bool value, not a stream, and doing that wrong on Windows. Change-Id: I86b1aaea99e77b2aa3c37bb5c9c3e0ba8a90cb05 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Debugger: Fix handling of ? in dumper testhjk2015-04-161-4/+5
| | | | | | | | | Normally, we use '?' as an optional Qt namespace qualification. This clashes with the use of ? in a regexp type expression. Re-order checks to avoid the clash. Change-Id: I4a8aee0174f4f3d21bec624919856623808becb1 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Debugger: Make QUrl dumper test pass for LLDB on Linuxhjk2015-04-151-7/+7
| | | | | | | ... by relaxing the namespace checks. Change-Id: I2c2978fe4e95bdc87df24fd6ecbcba4bf1913df3 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Debugger: Use a more generic approach to LLDB's namespace problemhjk2015-04-151-33/+46
| | | | | | | | | This is a generalization of 134234be67. '?QFoo' is now meant to match both 'QFoo' or 'Ns::QFoo' in a namespaced Qt. '@QFoo' continues to match 'Ns::QFoo' only. Change-Id: I4285cd9f75a2e4cd94ec5dbb107214f75a60c810 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Tests: Fix parsing of gcc version on SuSEChristian Stenger2015-04-151-2/+9
| | | | | Change-Id: Ieb8b5a1ea998abbd2d3baf13829f81f9d4cc43e5 Reviewed-by: hjk <hjk@theqtcompany.com>
* Debugger: Disable parts of QDate* dumper for GDB on 32 bithjk2015-04-151-19/+29
| | | | | | | | | Older versions of GDB (~GDB 7.4 on 32 bit) will cause segmentation faults in inferior calls due to misaligned %ebx values in an SSE call in qstring.cpp:findChar. Change-Id: I44492106080f12e645f9d57828438ec70fd66ca6 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Test: Dumper: Limit single check to Qt5.xChristian Stenger2015-04-151-1/+1
| | | | | Change-Id: Ia769c16761a171e3e472144cd3ace3280ae5a6aa Reviewed-by: hjk <hjk@theqtcompany.com>
* Debugger: Make QThread dumper test compile and pass on Machjk2015-04-151-1/+2
| | | | | Change-Id: I094d3add58681cbc94a76cdc0d45040c705169e5 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Debugger: Weaken QVariant(QUrl) testhjk2015-04-151-1/+1
| | | | | | | | ... to make it pass with LLDB. The exact display of the private is not *that* interesting anyways. Change-Id: I2d0a8bdd5daff4b03c77b00c887837c7568ea508 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Debugger: Workaround LLDB type handling failure on Linuxhjk2015-04-151-1/+5
| | | | | | | | | LLDB 3.7 on Linux doesn't get the namespace right in QMapNode: sc t = lldb.target.FindFirstType('Myns::QMapNode<int, CustomStruct>') sc t.GetName() -> QMapNode<int, CustomStruct> (no Myns::) Change-Id: Ied306f70035e0669bc822700a92371b7de35a603 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Debugger: Fix std::unordered_{map,set} dumper for LLDB on Linuxhjk2015-04-151-2/+2
| | | | | Change-Id: Id96d02cddcccdd7765e5a098bb98f894122781a1 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Debugger: Simplify LLDB test loop handlinghjk2015-04-141-1/+1
| | | | | | | We know that we expect a frame with valid debug info. Change-Id: I51079ca4db87df05c93464fd46e5add1f756cba7 Reviewed-by: hjk <hjk@theqtcompany.com>
* Debugger: Fix GCC/LLDB anon struct test by adjusting expectationshjk2015-04-141-1/+1
| | | | | Change-Id: I31775513c2e4a690b2620225682c89ee8c9156d2 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Debugger: Fix parameter passing to LLDB dumper testshjk2015-04-021-1/+1
| | | | | Change-Id: Iae342ffe68385de877c7a1e9a7e61e7d4889f731 Reviewed-by: hjk <hjk@theqtcompany.com>
* Debugger: Make QHash dumper pass againhjk2015-04-021-47/+10
| | | | | | | | | Failures were due to version specific reordering. This is still checked in cases h1, h7, h8. Simplify maintanance by removing the check in the other cases. Change-Id: I481672e693f6370c75bc4739d6cca937b9f027ea Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Debugger: Adjust QVariant2 dumper testhjk2015-04-021-3/+3
| | | | | | | | Take new QPolygon{,F} dumpers into account, also make QUrlPrivate field accessible, Change-Id: I2b5c122895c3ee389ba939eaeffcd613fa206009 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Test: Dumper: Adjust QVector test to cdb output.David Schulz2015-04-021-10/+20
| | | | | Change-Id: I2da7f4b21251e1417efaf20813ce260ea286b1f2 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Test: Dumper: Fix Compilation and adjust cdb output of "BigInt" test.David Schulz2015-04-021-4/+9
| | | | | Change-Id: I8ecfd77cd72e155e291acdc96fcbfd49572c91e3 Reviewed-by: hjk <hjk@theqtcompany.com>
* Test: Dumper: Adjust test to cdb output.David Schulz2015-03-311-16/+31
| | | | | Change-Id: Iae81984eedeb4f7190268eb5d19fb652e76f8f34 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Cdbext: Fix QByteArray dumper for unprintable characters.David Schulz2015-03-301-2/+1
| | | | | Change-Id: I7075df252ea9739600fdbf01c27987d2c0f8d159 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Tests: Dumper: Fix QByteArray dumper test for cdb.David Schulz2015-03-231-3/+8
| | | | | Change-Id: Ic5cdf0092d720bc13c1609b6e489e48712645f8b Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Tests: Dumper: Add current data tag to tmp build dir name.David Schulz2015-03-191-2/+4
| | | | | | Change-Id: I91c26bcb70a10ed00c32f8bf18f16e0ac449c5b6 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com> Reviewed-by: hjk <hjk@theqtcompany.com>
* Debugger: Fix dumper format choosing with GDBhjk2015-03-191-1/+1
| | | | | | | ... and further unify GDB and LLDB code paths. Change-Id: Id89f3804c53190c4888082891fd3c3c55eceac84 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Debugger: Tests: Fix execution of dumper tests on OSXChristian Stenger2015-03-101-0/+2
| | | | | Change-Id: Ibe3e447d29e3834766ef067ba4424c3b08ba5eb1 Reviewed-by: hjk <hjk@theqtcompany.com>
* Debugger: Add dumpers for QPolygon{,F} and QGraphicsPolygonItemhjk2015-02-241-0/+17
| | | | | Change-Id: Ic246b28d44312a677c8d41194d4e0c324bda125d Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Merge commit '3c85058694ee2e41658d17f524fb48f0b187d2fe'Eike Ziller2015-02-121-6/+6
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/libs/utils/tooltip/tipcontents.cpp src/libs/utils/tooltip/tipcontents.h src/plugins/android/androiddeployqtstep.cpp src/plugins/baremetal/baremetalconstants.h src/plugins/baremetal/baremetaldevice.cpp src/plugins/baremetal/baremetaldevice.h src/plugins/baremetal/baremetaldeviceconfigurationwidget.cpp src/plugins/baremetal/baremetaldeviceconfigurationwidget.h src/plugins/baremetal/baremetaldeviceconfigurationwizard.cpp src/plugins/baremetal/baremetaldeviceconfigurationwizardpages.cpp src/plugins/baremetal/baremetaldeviceconfigurationwizardpages.h src/plugins/baremetal/baremetalplugin.cpp src/plugins/baremetal/baremetalplugin.h src/plugins/baremetal/baremetalruncontrolfactory.cpp src/plugins/baremetal/baremetalruncontrolfactory.h src/plugins/cppeditor/cppcodemodelinspectordialog.cpp src/plugins/cppeditor/cppdoxygen_test.cpp src/plugins/cppeditor/cppdoxygen_test.h src/plugins/debugger/breakpointmarker.cpp src/plugins/debugger/debuggeritemmodel.cpp src/plugins/debugger/debuggeritemmodel.h src/plugins/debugger/loadcoredialog.cpp src/plugins/genericprojectmanager/cppmodelmanagerhelper.cpp src/plugins/projectexplorer/addnewmodel.cpp src/plugins/projectexplorer/addnewmodel.h src/plugins/projectexplorer/jsonwizard/jsonfieldpage.cpp src/plugins/qmlprofiler/abstracttimelinemodel.cpp src/plugins/qmlprofiler/abstracttimelinemodel.h src/plugins/qmlprofiler/notesmodel.cpp src/plugins/qmlprofiler/qml/CategoryLabel.qml src/plugins/qmlprofiler/qml/MainView.qml src/plugins/qmlprofiler/qml/Overview.js src/plugins/qmlprofiler/qml/Overview.qml src/plugins/qmlprofiler/qml/TimeDisplay.qml src/plugins/qmlprofiler/qml/TimeMarks.qml src/plugins/qmlprofiler/qmlprofilertimelinemodelproxy.cpp src/plugins/qmlprofiler/sortedtimelinemodel.cpp src/plugins/qmlprofiler/sortedtimelinemodel.h src/plugins/qmlprofiler/timelinemodelaggregator.cpp src/plugins/qmlprofiler/timelinemodelaggregator.h src/plugins/qmlprofiler/timelinerenderer.cpp src/plugins/qmlprofiler/timelinerenderer.h src/plugins/qmlprojectmanager/QmlProjectManager.json.in src/plugins/texteditor/findinfiles.cpp src/plugins/vcsbase/vcsconfigurationpage.cpp src/shared/qbs src/shared/scriptwrapper/interface_wrap_helpers.h src/shared/scriptwrapper/wrap_helpers.h tests/auto/qmlprofiler/abstracttimelinemodel/tst_abstracttimelinemodel.cpp tests/system/suite_debugger/tst_debug_empty_main/test.py tests/system/suite_debugger/tst_qml_js_console/test.py tests/system/suite_debugger/tst_qml_locals/test.py Change-Id: I67540b648f8b162496f4aa606b04d50c7c9125c6
| * Update LicenseEike Ziller2015-01-161-6/+6
| | | | | | | | | | Change-Id: I711d5fb475ef814a1dc9d2822740e827f3f67125 Reviewed-by: Alessandro Portale <alessandro.portale@digia.com>
* | Debugger: Convert bb extension to use runCommandhjk2015-02-121-2/+7
| | | | | | | | | | Change-Id: I528c51d2b02dccd91429778ef8c940fe5565345f Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* | Debugger: Move bbsetup over to runCommand()hjk2015-02-121-1/+1
| | | | | | | | | | Change-Id: I0a19b28d24cb570651ea84bf7cdbc9a761f85a0b Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* | Debugger: Invert LLDB/Python startup orderhjk2015-01-301-10/+11
| | | | | | | | | | | | | | | | | | Instead of starting LLDB through a Python script this now starts LLDB directly. This did not work a while ago but seems fine nowaday. Change-Id: I20e915070cd6addf260817c311f4160d010aa861 Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com> Reviewed-by: hjk <hjk@theqtcompany.com>
* | Debugger: Test compile fixhjk2015-01-291-1/+1
| | | | | | | | | | Change-Id: Ice03e5fd61970f86b99ce3b9122acb5ae0eb2cea Reviewed-by: hjk <hjk@theqtcompany.com>
* | Debugger: Work on LLDB auto-test on Linuxhjk2015-01-281-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | Write the full command to a temporary file for easier re-use. Un-ignore the first stop, this does not seem to be needed in the new async setup. In some cases LLDB is not able to extract the even the top most frame of the stopped thread (happened 2 out of 100 runs of the QDateTime dumper). It's unclear why. For now just report the fact. Change-Id: I76a63bc288f1ae6f5bd9b9604a47f051912b93d7 Reviewed-by: hjk <hjk@theqtcompany.com>
* | Debugger: Make LLDB autotest produce output on Linux againhjk2015-01-261-5/+14
| | | | | | | | | | Change-Id: I0ea21b248b51a871753f66e386fd125df1d1ead5 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* | Debugger: Fix gdb auto testshjk2015-01-231-0/+1
| | | | | | | | | | | | | | | | cca10304 made dumper detection lazier, the bbsetup needs now to be trigger separately. Change-Id: I7f78c5e4b3a6981dbd1c292654a48eac0b5b58e7 Reviewed-by: hjk <hjk@theqtcompany.com>
* | Merge remote-tracking branch 'origin/3.3'Eike Ziller2015-01-081-7/+7
|\ \ | |/ | | | | | | | | | | Conflicts: src/plugins/cppeditor/cppdocumentationcommenthelper.cpp Change-Id: I2cf25eba1de149765a6c44ad354d606ce9de512d
| * Adapt bugtracker URLEike Ziller2014-12-191-7/+7
| | | | | | | | | | Change-Id: I93a256f18e720edb0bcfc2b409c119abfdcf2a2b Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
* | Debugger: Fix std::unordered_* dumpers with GCC 4.9.1hjk2014-12-121-1/+1
|/ | | | | Change-Id: I5d5ed9cfc68af061970b0055b76cb563ca04ee53 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Debugger: Disable QVariant(KeySequence) dumper for LLDBhjk2014-12-011-1/+1
| | | | | | | | | | | This triggers errors in LLDB error: main.o Parsing a die that is being parsed die: 0x00001ddf: DW_TAG_subprogram operator void *QMetaObject::Connection::* error: main.o Parsing a die that is being parsed die: 0x000100fa: DW_TAG_subprogram operator QObjectData *QScopedPointer<QObjectData, QScopedPointerDeleter<QObjectData> >::* Change-Id: Iae6a8ca1fbd84c43c7d31b65e017792d1b6a1e0b Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Debugger: Fix LLDB reference display for LLDB 320.xhjk2014-11-281-6/+8
| | | | | | | | There is seemingly still no proper API for that, and the old hack broke. Use a new one. Change-Id: I9e638ca1fbd84c43c7d31b65e017792d1b6a1e0b Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Debugger: Add more reference related autotestshjk2014-11-281-3/+19
| | | | | Change-Id: Iae638ca1fbd84c43c7d31b65e017792d1b6a1e0b Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Debugger: Also output dumper location in LLDB auto testhjk2014-11-271-0/+1
| | | | | Change-Id: I51a017ced91198bdc4e822cfcc1c45580945a773 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Debugger: Require some clang version for clang specific testhjk2014-11-251-4/+4
| | | | | Change-Id: Ib6ba0ffb5957a60e700abd9a540bd7bbf5888b2a Reviewed-by: hjk <hjk121@nokiamail.com>
* Debugger: Adjust std::vector<bool> dumper autotest for recent Clanghjk2014-11-211-6/+9
| | | | | Change-Id: I1998f0750c5905a3dc4e83db297edc135cd2a39a Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Debugger: Add ability to check for clang version in testshjk2014-11-211-7/+54
| | | | | Change-Id: Ie56de7a0e59cadd8557f7a2fd00d434470000f3c Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
* Debugger: Add auto test for QVarLengthArray dumperhjk2014-10-141-0/+80
| | | | | Change-Id: I25af89bea8fe7781ae6b1b21fd294753f8519ee6 Reviewed-by: hjk <hjk121@nokiamail.com>
* Merge remote-tracking branch 'origin/3.2'Eike Ziller2014-10-141-7/+8
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/libs/utils/ipaddresslineedit.cpp src/libs/utils/logging.h src/plugins/analyzerbase/AnalyzerBase.pluginspec.in src/plugins/android/Android.pluginspec.in src/plugins/android/androiddeploystep.cpp src/plugins/android/androiddeploystep.h src/plugins/android/androiddeploystepfactory.cpp src/plugins/android/androiddeploystepwidget.cpp src/plugins/android/androidpackagecreationfactory.cpp src/plugins/android/androidpackagecreationstep.cpp src/plugins/android/androidpackagecreationstep.h src/plugins/android/androidpackagecreationwidget.cpp src/plugins/android/androidpackagecreationwidget.h src/plugins/android/javafilewizard.cpp src/plugins/autotoolsprojectmanager/AutotoolsProjectManager.pluginspec.in src/plugins/baremetal/BareMetal.pluginspec.in src/plugins/bazaar/Bazaar.pluginspec.in src/plugins/beautifier/Beautifier.pluginspec.in src/plugins/bineditor/BinEditor.pluginspec.in src/plugins/bookmarks/Bookmarks.pluginspec.in src/plugins/clangcodemodel/ClangCodeModel.pluginspec.in src/plugins/clangcodemodel/clanghighlightingsupport.cpp src/plugins/clangcodemodel/clangsymbolsearcher.cpp src/plugins/classview/ClassView.pluginspec.in src/plugins/clearcase/ClearCase.pluginspec.in src/plugins/cmakeprojectmanager/CMakeProjectManager.pluginspec.in src/plugins/cmakeprojectmanager/cmakeeditorfactory.cpp src/plugins/cmakeprojectmanager/cmakehighlighter.cpp src/plugins/coreplugin/Core.pluginspec.in src/plugins/cpaster/CodePaster.pluginspec.in src/plugins/cppeditor/CppEditor.pluginspec.in src/plugins/cppeditor/cppfilewizard.cpp src/plugins/cpptools/CppTools.pluginspec.in src/plugins/cpptools/cpphighlightingsupportinternal.cpp src/plugins/cpptools/cppmodelmanagerinterface.cpp src/plugins/cpptools/cppmodelmanagerinterface.h src/plugins/cvs/CVS.pluginspec.in src/plugins/debugger/Debugger.pluginspec.in src/plugins/designer/Designer.pluginspec.in src/plugins/diffeditor/DiffEditor.pluginspec.in src/plugins/emacskeys/EmacsKeys.pluginspec.in src/plugins/fakevim/FakeVim.pluginspec.in src/plugins/genericprojectmanager/GenericProjectManager.pluginspec.in src/plugins/git/Git.pluginspec.in src/plugins/git/gitorious/gitorious.cpp src/plugins/git/gitorious/gitorious.h src/plugins/git/gitorious/gitoriousclonewizard.cpp src/plugins/git/gitorious/gitorioushostwidget.cpp src/plugins/git/gitorious/gitorioushostwidget.h src/plugins/git/gitorious/gitorioushostwizardpage.cpp src/plugins/git/gitorious/gitoriousprojectwidget.cpp src/plugins/git/gitorious/gitoriousprojectwidget.h src/plugins/git/gitorious/gitoriousprojectwizardpage.cpp src/plugins/git/gitorious/gitoriousprojectwizardpage.h src/plugins/git/gitorious/gitoriousrepositorywizardpage.cpp src/plugins/git/gitorious/gitoriousrepositorywizardpage.h src/plugins/glsleditor/GLSLEditor.pluginspec.in src/plugins/glsleditor/glsleditorfactory.cpp src/plugins/glsleditor/glslfilewizard.cpp src/plugins/helloworld/HelloWorld.pluginspec.in src/plugins/help/Help.pluginspec.in src/plugins/imageviewer/ImageViewer.pluginspec.in src/plugins/ios/Ios.pluginspec.in src/plugins/macros/Macros.pluginspec.in src/plugins/mercurial/Mercurial.pluginspec.in src/plugins/perforce/Perforce.pluginspec.in src/plugins/projectexplorer/ProjectExplorer.pluginspec.in src/plugins/pythoneditor/PythonEditor.pluginspec.in src/plugins/pythoneditor/pythoneditorwidget.cpp src/plugins/pythoneditor/wizard/pythonfilewizard.cpp src/plugins/qbsprojectmanager/QbsProjectManager.pluginspec.in src/plugins/qbsprojectmanager/defaultpropertyprovider.cpp src/plugins/qmakeprojectmanager/QmakeProjectManager.pluginspec.in src/plugins/qmakeprojectmanager/profileeditorfactory.cpp src/plugins/qmldesigner/QmlDesigner.pluginspec.in src/plugins/qmljseditor/QmlJSEditor.pluginspec.in src/plugins/qmljseditor/qmljseditorfactory.cpp src/plugins/qmljstools/QmlJSTools.pluginspec.in src/plugins/qmlprofiler/QmlProfiler.pluginspec.in src/plugins/qmlprojectmanager/QmlProjectManager.pluginspec.in src/plugins/qnx/Qnx.pluginspec.in src/plugins/qtsupport/QtSupport.pluginspec.in src/plugins/remotelinux/RemoteLinux.pluginspec.in src/plugins/resourceeditor/ResourceEditor.pluginspec.in src/plugins/resourceeditor/resourcewizard.h src/plugins/subversion/Subversion.pluginspec.in src/plugins/tasklist/TaskList.pluginspec.in src/plugins/texteditor/TextEditor.pluginspec.in src/plugins/texteditor/basetexteditor_p.h src/plugins/texteditor/basetextmark.cpp src/plugins/texteditor/codeassist/basicproposalitemlistmodel.h src/plugins/texteditor/codeassist/defaultassistinterface.h src/plugins/texteditor/codeassist/iassistproposalitem.cpp src/plugins/texteditor/itexteditor.cpp src/plugins/texteditor/itexteditor.h src/plugins/texteditor/itextmark.cpp src/plugins/texteditor/plaintexteditor.cpp src/plugins/texteditor/plaintexteditor.h src/plugins/texteditor/texteditoractionhandler.cpp src/plugins/todo/Todo.pluginspec.in src/plugins/updateinfo/UpdateInfo.pluginspec.in src/plugins/valgrind/Valgrind.pluginspec.in src/plugins/vcsbase/VcsBase.pluginspec.in src/plugins/welcome/Welcome.pluginspec.in src/plugins/winrt/WinRt.pluginspec.in tests/auto/debugger/temporarydir.h Change-Id: I254af8be8119fe9855287909e17d4b8ca9d2fc2f
| * License updateEike Ziller2014-10-091-7/+8
| | | | | | | | | | Change-Id: I3c22ef2685d7aa589f5d0ab74d693653a4c32082 Reviewed-by: Alessandro Portale <alessandro.portale@digia.com>
| * Debugger: Fix QHash display of "compact" keyshjk2014-09-261-3/+3
| | | | | | | | | | | | | | | | Add make std::string usable as "compact" key. Change-Id: Idbfcf9d299e2dde392025166a20c3d0ab60239a6 (cherry picked from commit 2776536a7efd6758de1d6720b2c05a9fe0bc65a5) Reviewed-by: Christian Stenger <christian.stenger@digia.com>
* | Debugger: Only auto test dumper for boost >= 1.54hjk2014-09-261-5/+4
| | | | | | | | | | Change-Id: Ib8d0f2c6ed0323eb969c6a6eed9ea0a6c0e3cf8e Reviewed-by: hjk <hjk121@nokiamail.com>