summaryrefslogtreecommitdiff
path: root/test/common
diff options
context:
space:
mode:
authorMartin Ebourne <martin@ebourne.me.uk>2005-11-30 23:16:15 +0000
committerMartin Ebourne <martin@ebourne.me.uk>2005-11-30 23:16:15 +0000
commita1fc249484f3c88630901828918c72897dd2c18d (patch)
treebf633f6cb4064044a9f15a72554873b1ca1aba62 /test/common
parent01ca97865fa9d6ed1a967e970927265f1c348289 (diff)
Merged martin/ppcfixes at r3 to trunk
Diffstat (limited to 'test/common')
-rwxr-xr-xtest/common/testcommon.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/common/testcommon.cpp b/test/common/testcommon.cpp
index b00ee281..7febf92f 100755
--- a/test/common/testcommon.cpp
+++ b/test/common/testcommon.cpp
@@ -139,7 +139,6 @@ int test(int argc, const char *argv[])
void *block = ::malloc(12);
TEST_THAT(memleakfinder_numleaks() == 1);
void *b2 = ::realloc(block, 128*1024);
- TEST_THAT(block != b2);
TEST_THAT(memleakfinder_numleaks() == 1);
::free(b2);
TEST_THAT(memleakfinder_numleaks() == 0);