programs/test_*: remove unnecessary 'tests passed' messages

This commit is contained in:
Eric Biggers 2020-10-18 14:21:25 -07:00
parent 303bb42c52
commit cda4447098
2 changed files with 0 additions and 4 deletions

View File

@ -190,8 +190,6 @@ tmain(int argc, tchar *argv[])
buffer[rand() % 32768] = 0xFE;
}
printf("Adler-32 and CRC-32 checksum tests passed!\n");
free(buffer);
free_guarded_buffer(guarded_buf_start, guarded_buf_end);
return 0;

View File

@ -143,8 +143,6 @@ tmain(int argc, tchar *argv[])
ASSERT(memcmp(decompressed, original, original_nbytes) == 0);
}
printf("Trailing bytes decompression tests passed!\n");
free(original);
free(compressed);
free(decompressed);