|
From: <sv...@va...> - 2009-04-28 01:47:34
|
Author: njn Date: 2009-04-28 02:30:45 +0100 (Tue, 28 Apr 2009) New Revision: 9655 Log: Allow another fault permutation in 'addressable', and remove an out-of-date .exp file for it. Removed: branches/DARWIN/memcheck/tests/addressable.stderr.exp2 Modified: branches/DARWIN/memcheck/tests/filter_addressable Deleted: branches/DARWIN/memcheck/tests/addressable.stderr.exp2 =================================================================== --- branches/DARWIN/memcheck/tests/addressable.stderr.exp2 2009-04-28 01:22:02 UTC (rev 9654) +++ branches/DARWIN/memcheck/tests/addressable.stderr.exp2 2009-04-28 01:30:45 UTC (rev 9655) @@ -1,70 +0,0 @@ - - -ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) -malloc/free: in use at exit: ... bytes in ... blocks. -malloc/free: ... allocs, ... frees, ... bytes allocated. -For a detailed leak analysis, rerun with: --leak-check=yes -For counts of detected errors, rerun with: -v -Unaddressable byte(s) found during client check request - at 0x........: test2 (addressable.c:48) - by 0x........: main (addressable.c:125) - Address 0x........ is not stack'd, malloc'd or (recently) free'd - -Invalid write of size 1 - at 0x........: test2 (addressable.c:51) - by 0x........: main (addressable.c:125) - Address 0x........ is not stack'd, malloc'd or (recently) free'd - -Process terminating with default action of signal 11 (SIGSEGV) - Access not within mapped region at address 0x........ - at 0x........: test2 (addressable.c:51) - by 0x........: main (addressable.c:125) - -ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 0 from 0) -malloc/free: in use at exit: ... bytes in ... blocks. -malloc/free: ... allocs, ... frees, ... bytes allocated. -For a detailed leak analysis, rerun with: --leak-check=yes -For counts of detected errors, rerun with: -v - -ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) -malloc/free: in use at exit: ... bytes in ... blocks. -malloc/free: ... allocs, ... frees, ... bytes allocated. -For a detailed leak analysis, rerun with: --leak-check=yes -For counts of detected errors, rerun with: -v - -Process terminating with default action of signal 11 (SIGSEGV) - Bad permissions for mapped region at address 0x........ - at 0x........: test4 (addressable.c:74) - by 0x........: main (addressable.c:125) - -ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) -malloc/free: in use at exit: ... bytes in ... blocks. -malloc/free: ... allocs, ... frees, ... bytes allocated. -For a detailed leak analysis, rerun with: --leak-check=yes -For counts of detected errors, rerun with: -v -Uninitialised byte(s) found during client check request - at 0x........: test5 (addressable.c:85) - by 0x........: main (addressable.c:125) - Address 0x........ is 10 bytes inside a block of size 20480 client-defined - at 0x........: test5 (addressable.c:82) - by 0x........: main (addressable.c:125) - -Uninitialised byte(s) found during client check request - at 0x........: test5 (addressable.c:91) - by 0x........: main (addressable.c:125) - Address 0x........ is 20 bytes inside a block of size 20480 client-defined - at 0x........: test5 (addressable.c:82) - by 0x........: main (addressable.c:125) - -ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 0 from 0) -malloc/free: in use at exit: ... bytes in ... blocks. -malloc/free: ... allocs, ... frees, ... bytes allocated. -For a detailed leak analysis, rerun with: --leak-check=yes -For counts of detected errors, rerun with: -v -Use --track-origins=yes to see where uninitialised values come from - -ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) -malloc/free: in use at exit: ... bytes in ... blocks. -malloc/free: ... allocs, ... frees, ... bytes allocated. -For a detailed leak analysis, rerun with: --leak-check=yes -For counts of detected errors, rerun with: -v Modified: branches/DARWIN/memcheck/tests/filter_addressable =================================================================== --- branches/DARWIN/memcheck/tests/filter_addressable 2009-04-28 01:22:02 UTC (rev 9654) +++ branches/DARWIN/memcheck/tests/filter_addressable 2009-04-28 01:30:45 UTC (rev 9655) @@ -2,6 +2,6 @@ ./filter_allocs | perl -p -e 's/(default action of signal) [0-9]+ \(SIG(SEGV|BUS)\)/$1 N \(SIGSEGV or SIGBUS\)/' | -perl -p -e 's/(Access not within mapped region|Non-existent physical address) at address 0x/Bad memory (SIGSEGV or SIGBUS) at address 0x/' +perl -p -e 's/(Bad permissions for mapped region|Access not within mapped region|Non-existent physical address) at address 0x/Bad memory (SIGSEGV or SIGBUS) at address 0x/' |