Home | History | Annotate | Download | only in valgrind

Lines Matching refs:supp

556   for supp in positive:
557 parsed = suppression_parser(supp.split("\n"), "positive_suppression")
559 "Suppression:\n%s\ndidn't match stack:\n%s" % (supp, stack))
560 for supp in negative:
561 parsed = suppression_parser(supp.split("\n"), "negative_suppression")
563 "Suppression:\n%s\ndid match stack:\n%s" % (supp, stack))
982 supp = ValgrindStyleSuppression("http://crbug.com/1234", "Memcheck:Leak",
983 ["...", "fun:foo"], "supp.txt:1")
991 assert str(supp) == supp_str, (
992 "str(supp) != supp_str:\nleft: %s\nright: %s" % (str(supp), supp_str))
995 supp = DrMemorySuppression(
996 "http://crbug.com/1234", "LEAK", None, ["...", "*!foo"], "supp.txt:1")
1001 assert str(supp) == supp_str, (
1002 "str(supp) != supp_str:\nleft: %s\nright: %s" % (str(supp), supp_str))
1004 supp = DrMemorySuppression(
1006 ["ntdll.dll!*", "*!foo"], "supp.txt:1")
1012 assert str(supp) == supp_str, (
1013 "str(supp) != supp_str:\nleft: %s\nright: %s" % (str(supp), supp_str))