defined in the SuppressedValgrindErrors file.
Reviewed by Simon Hausmann.
* Scripts/run-webkit-tests:
LayoutTests: Add a file for suppressing invalid valgrind errors (Qt / Linux only)
Reviewed by Simon Hausmann.
* platform/qt/SuppressedValgrindErrors: Added.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@50965
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2009-11-13 Kenneth Rohde Christiansen <kenneth@webkit.org>
+
+ Reviewed by Simon Hausmann.
+
+ Add a file for suppressing invalid valgrind errors (Qt / Linux only)
+
+ * platform/qt/SuppressedValgrindErrors: Added.
+
2009-11-13 Alexey Proskuryakov <ap@apple.com>
Disable websocket tests on Windows, as the server cannot start on buildbot.
--- /dev/null
+{
+ <insert a suppression name here>
+ Memcheck:Cond
+ fun:_ZN3JSC4Heap18markConservativelyERNS_9MarkStackEPvS3_
+ fun:_ZN3JSC4Heap39markCurrentThreadConservativelyInternalERNS_9MarkStackE
+ fun:_ZN3JSC4Heap31markCurrentThreadConservativelyERNS_9MarkStackE
+ fun:_ZN3JSC4Heap7collectEv
+ fun:_ZN7WebCore12GCController12gcTimerFiredEPNS_5TimerIS0_EE
+ fun:_ZN7WebCore12ThreadTimers24sharedTimerFiredInternalEv
+ fun:_ZN7WebCore13SharedTimerQtD0Ev
+ fun:_ZN14QObjectPrivate14deleteChildrenEv
+ fun:_ZN7QObjectD2Ev
+ fun:_ZN16QCoreApplicationD2Ev
+ fun:_ZN12QApplicationD1Ev
+ fun:main
+}
+2009-11-13 Kenneth Rohde Christiansen <kenneth@webkit.org>
+
+ Reviewed by Simon Hausmann.
+
+ Make the Qt Linux only --valgrind feature, suppress errors
+ defined in the SuppressedValgrindErrors file.
+
+ * Scripts/run-webkit-tests:
+
2009-11-13 Kenneth Rohde Christiansen <kenneth@webkit.org>
Reviewed by Simon Hausmann.
}
if ($useValgrind) {
- unshift @args, "valgrind";
+ unshift @args, "valgrind", "--suppressions=$platformBaseDirectory/qt/SuppressedValgrindErrors";
}
$ENV{MallocStackLogging} = 1 if $shouldCheckLeaks;