Module: wine Branch: master Commit: 79cc4163fa4867ce0b28ce83111dc6bc18d3df15 URL: http://source.winehq.org/git/wine.git/?a=commit;h=79cc4163fa4867ce0b28ce8311...
Author: Huw Davies huw@codeweavers.com Date: Fri Feb 20 16:19:32 2009 +0000
lz32/tests: Display filename on failure.
---
dlls/lz32/tests/lzexpand_main.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/lz32/tests/lzexpand_main.c b/dlls/lz32/tests/lzexpand_main.c index 187aa80..9c95d07 100644 --- a/dlls/lz32/tests/lzexpand_main.c +++ b/dlls/lz32/tests/lzexpand_main.c @@ -391,7 +391,7 @@ static void test_LZOpenFileA(void) ok(file >= 0, "LZOpenFileA failed on read\n"); ok(test.cBytes == sizeof(OFSTRUCT) || broken(test.cBytes == 40), /* win95 */ - "LZOpenFileA set test.cBytes to %d\n", test.cBytes); + "LZOpenFileA set test.cBytes to %d '%s'('%s')\n", test.cBytes, expected, short_expected); ok(test.nErrCode == ERROR_SUCCESS, "LZOpenFileA set test.nErrCode to %d\n", test.nErrCode); ok(lstrcmpA(test.szPathName, expected) == 0 ||