Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Unified Diff: tests/valgrind.supp

Issue 266473010: Add Valgrind suppressions for nvidia driver. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/valgrind.supp
diff --git a/tests/valgrind.supp b/tests/valgrind.supp
index 9cf392d0fced9ab5cbc035cabf5dee94ccd7d623..b7df1d64c4e4a5d3cb9e8f930c8ffac99e472135 100644
--- a/tests/valgrind.supp
+++ b/tests/valgrind.supp
@@ -38,6 +38,26 @@
fun:FcPatternObjectInsertElt
fun:FcPatternObjectAddWithBinding
}
+
+# Blanket nvidia driver suppressions
+{
+ nvidia_param_write_to_unallocated_buf
+ Memcheck:Param
+ write(buf)
+ obj:/usr/lib/libnvidia-glcore.so*
+}
+{
+ nvidia_conditional_jump_on_uninitialized_value
+ Memcheck:Cond
+ obj:/usr/lib/libnvidia-glcore.so*
+}
+{
+ nvidia_memory_leaks
+ Memcheck:Leak
+ obj:/usr/lib/libGL.so*
+}
+
+# Suppressions for ATI cards
{
driver_bug_1
Memcheck:Param
@@ -100,7 +120,7 @@
obj:/usr/lib/fglrx/fglrx-libGL.so.1.2
}
# the gpu_issue_* suppressions suppress issues that cannot be reproduced
-# locally.
+# locally.
{
gpu_issue_1
Memcheck:Addr2
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698