aboutsummaryrefslogtreecommitdiff
path: root/xfree-4.supp
AgeCommit message (Collapse)Author
2010-01-08Generalise X11 suppressions somewhat, and add a suppression needed forsewardj
Ubuntu 9.10 on amd64. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11023 a5019735-40e9-0310-863c-91ae7b9d1cf9
2009-01-29Generalise zlib suppressions a bit.sewardj
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@9084 a5019735-40e9-0310-863c-91ae7b9d1cf9
2008-10-23Add further zlib suppressions.sewardj
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8699 a5019735-40e9-0310-863c-91ae7b9d1cf9
2008-10-22Improve suppressions for zlib-1.2.x. Needs further work, but thissewardj
is a start. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8695 a5019735-40e9-0310-863c-91ae7b9d1cf9
2008-06-24Suppress false positives in Memcheck caused by very clever coding in zlib.sewardj
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8275 a5019735-40e9-0310-863c-91ae7b9d1cf9
2008-06-19Merge (from 3_3_BRANCH) some parts of r8168 (Fix up suppressions for Ubuntu ↵sewardj
8.04.) git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8261 a5019735-40e9-0310-863c-91ae7b9d1cf9
2008-06-03Import recent suppression upgrades from 3_3_BRANCH: sewardj
revs 8163 8166 8167 8168. Also, mention glibc-2.X.supp.in in Makefile.am so it gets included in the distro tarball. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8176 a5019735-40e9-0310-863c-91ae7b9d1cf9
2008-04-27update suppression for glibc 2.8: the backtracedirk
points to ld-2.8.so here.. so just match for any lib in /lib git-svn-id: svn://svn.valgrind.org/valgrind/trunk@7951 a5019735-40e9-0310-863c-91ae7b9d1cf9
2007-09-12suppression update for 10.3dirk
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@6826 a5019735-40e9-0310-863c-91ae7b9d1cf9
2007-07-23suppression update for 10.3/glibc 2.6dirk
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@6768 a5019735-40e9-0310-863c-91ae7b9d1cf9
2007-01-22Another ifort 9.1 suppression (Ashley Pittman)sewardj
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@6543 a5019735-40e9-0310-863c-91ae7b9d1cf9
2007-01-10Merge r6504 (ifort 9.1 on amd64 suppression)sewardj
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@6505 a5019735-40e9-0310-863c-91ae7b9d1cf9
2006-12-31Apparently needed on Red Hat 7.3.sewardj
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@6467 a5019735-40e9-0310-863c-91ae7b9d1cf9
2006-12-31Redo a suppression in X.org style.sewardj
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@6463 a5019735-40e9-0310-863c-91ae7b9d1cf9
2006-12-16Completely overhauled the internals of Memcheck's error handling. All thenjn
different error kinds were reusing the same struct for storing their details. Each one used some but not all the fields, and the AddrInfo was similar, and it was very confusing. So I changed MC_Error and AddrInfo to be tagged unions, like Vex's IRExpr and IRStmt types. The resulting code is a little more verbose but much easier to understand. I also split up several error kinds, which also made things simpler. The user-visible behaviour is identical except for a couple of very minor things that I've documented in the NEWS file for the 3.3.0 release. Ideally I'd get rid of the Addr and Char* fields in the core Error type, which are not always used, and do them similarly within tools. But that would require changing the core/tool interface, so I'm leaving it for the moment. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@6402 a5019735-40e9-0310-863c-91ae7b9d1cf9
2006-12-14Remove some very old and incorrect info in the headers.njn
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@6398 a5019735-40e9-0310-863c-91ae7b9d1cf9
2006-09-14Merge (from stable) r6066 (Yet another X padding suppression)sewardj
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@6068 a5019735-40e9-0310-863c-91ae7b9d1cf9
2006-05-25Suppression for SuSE 10.1 on amd64.sewardj
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5927 a5019735-40e9-0310-863c-91ae7b9d1cf9
2006-03-27Merge in the COMPVBITS branch to the trunk. This is a big change tonjn
Memcheck, replacing the 9-bits-per-byte shadow memory representation to a 2-bits-per-byte representation (with possibly a little more on the side) by taking advantage of the fact that extremely few memory bytes are partially defined. For the SPEC2k benchmarks with "test" inputs, this speeds up Memcheck by a (geometric mean) factor of 1.20, and reduces the size of shadow memory by a (geometric mean) factor of 4.26. At the same time, Addrcheck is removed. It hadn't worked for quite some time, and with these improvements in Memcheck its raisons-d'etre have shrivelled so much that it's not worth the effort to keep around. Hooray! Nb: this code hasn't been tested on PPC. If things go wrong, look first in the fast stack-handling functions (eg. mc_new_mem_stack_160, MC_(helperc_MAKE_STACK_UNINIT)). git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5791 a5019735-40e9-0310-863c-91ae7b9d1cf9
2006-01-03update suppression for newer versions of Xorgdirk
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5491 a5019735-40e9-0310-863c-91ae7b9d1cf9
2005-05-12* move libc-specific suppressions into glibc-2.3.suppsewardj
* enhance the xfree suppressions so they match 64-bit X libraries git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3682 a5019735-40e9-0310-863c-91ae7b9d1cf9
2005-05-07Yet another index suppression.tom
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3627 a5019735-40e9-0310-863c-91ae7b9d1cf9
2005-05-07Add another index suppression.tom
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3626 a5019735-40e9-0310-863c-91ae7b9d1cf9
2005-05-03Some suppressions for FC3 amd64 systems.tom
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3599 a5019735-40e9-0310-863c-91ae7b9d1cf9
2005-04-27Try a different kludge to get around strlen not being interceptedsewardj
early enough. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3573 a5019735-40e9-0310-863c-91ae7b9d1cf9
2005-03-12Update suppressions for X on FC3;njn
Even more liberal match in undef writev suppression; Wider match for writev in X suppression. MERGED FROM CVS HEAD git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3309 a5019735-40e9-0310-863c-91ae7b9d1cf9
2003-11-14Started to rescind the name "skin", replacing it with "tool". Did this in allnethercote
the places that normal users will see: - command line: --tool=foo (although --skin=foo still works) - docs: removed all traces (included renaming coregrind_skins.html to coregrind_tools.html) - in the usage messages - in error messages Also did in in some places that I judged were unlikely to cause clashes with existing workspaces: - in the header comments of many files (eg. "This file is part of Memcheck, a Valgrind tool for...") - in the regtests script - in the .supp files - in AUTHORS - in README_MISSING_SYSCALL_OR_IOCTL Also update the AUTHORS file to mention Jeremy. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2027 a5019735-40e9-0310-863c-91ae7b9d1cf9
2003-09-18add suppression about common X11 protocol and ICE errors. Pleasedaywalker
scream if you don't like this.. Personally I've never seen a valid warning and all of them were spurious. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1826 a5019735-40e9-0310-863c-91ae7b9d1cf9
2003-06-12Added support for Value16 and Addr16 error suppressions.njn
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1677 a5019735-40e9-0310-863c-91ae7b9d1cf9
2002-12-15Suppressions for R H 8.sewardj
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1383 a5019735-40e9-0310-863c-91ae7b9d1cf9
2002-10-05Make suppressions work again after I messed with skin names. Sigh.sewardj
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1200 a5019735-40e9-0310-863c-91ae7b9d1cf9
2002-10-02Qualifying suppression types with the skin name, like this:njn
memcheck:Addr4 Changed the `name' need of the memcheck skin from "valgrind" to "memcheck" for this. But the name Valgrind will return when I print core and skin names in the startup message. One issue is that some skins share suppression types, eg. memcheck and addrcheck. Might be useful to allow multi-skin suppressions, viz: memcheck,addrcheck:Addr4 This won't be too hard to tack on, though. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1163 a5019735-40e9-0310-863c-91ae7b9d1cf9
2002-06-20A libXpm suppression.sewardj
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@456 a5019735-40e9-0310-863c-91ae7b9d1cf9
2002-05-30More X suppressions.sewardj
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@341 a5019735-40e9-0310-863c-91ae7b9d1cf9
2002-04-04splitted the suppression files so that default.supp can be created by pickinggobry
from the library specific supp files. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@45 a5019735-40e9-0310-863c-91ae7b9d1cf9