From 79cc4163fa4867ce0b28ce83111dc6bc18d3df15 Mon Sep 17 00:00:00 2001 From: Huw Davies Date: Fri, 20 Feb 2009 16:19:32 +0000 Subject: [PATCH] lz32/tests: Display filename on failure. --- dlls/lz32/tests/lzexpand_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/lz32/tests/lzexpand_main.c b/dlls/lz32/tests/lzexpand_main.c index 187aa803c7a..9c95d07a859 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 ||