Module: wine Branch: master Commit: 43c94c95ce78c7fed5b6ba805da7018a9fbe94fd URL: http://source.winehq.org/git/wine.git/?a=commit;h=43c94c95ce78c7fed5b6ba805d...
Author: Michael Stefaniuc mstefani@redhat.de Date: Wed Dec 27 00:19:40 2006 +0100
localspl/tests: In multiline strings there is no need for '' at the end of the lines.
---
dlls/localspl/tests/localmon.c | 22 +++++++++++----------- 1 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/dlls/localspl/tests/localmon.c b/dlls/localspl/tests/localmon.c index 5aecda6..98a4082 100644 --- a/dlls/localspl/tests/localmon.c +++ b/dlls/localspl/tests/localmon.c @@ -212,7 +212,7 @@ static void test_EnumPorts(void) }
ok( !res && (GetLastError() == ERROR_INSUFFICIENT_BUFFER), - "(%d) returned %d with %d and %d, %d (expected '0' with " \ + "(%d) returned %d with %d and %d, %d (expected '0' with " "ERROR_INSUFFICIENT_BUFFER)\n", level, res, GetLastError(), cbBuf, pcReturned);
@@ -239,7 +239,7 @@ static void test_EnumPorts(void) SetLastError(0xdeadbeef); res = pEnumPorts(NULL, level, buffer, cbBuf-1, &pcbNeeded, &pcReturned); ok( !res && (GetLastError() == ERROR_INSUFFICIENT_BUFFER), - "(%d) returned %d with %d and %d, %d (expected '0' with " \ + "(%d) returned %d with %d and %d, %d (expected '0' with " "ERROR_INSUFFICIENT_BUFFER)\n", level, res, GetLastError(), pcbNeeded, pcReturned);
@@ -281,13 +281,13 @@ static void test_InitializePrintMonitor( res = pInitializePrintMonitor(NULL); /* The Parameter was unchecked before w2k */ ok( res || (GetLastError() == ERROR_INVALID_PARAMETER), - "returned %p with %d\n (expected '!= NULL' or: NULL with " \ + "returned %p with %d\n (expected '!= NULL' or: NULL with " "ERROR_INVALID_PARAMETER)\n", res, GetLastError());
SetLastError(0xdeadbeef); res = pInitializePrintMonitor(emptyW); ok( res || (GetLastError() == ERROR_INVALID_PARAMETER), - "returned %p with %d\n (expected '!= NULL' or: NULL with " \ + "returned %p with %d\n (expected '!= NULL' or: NULL with " "ERROR_INVALID_PARAMETER)\n", res, GetLastError());
@@ -357,7 +357,7 @@ static void test_XcvDataPort(void) SetLastError(0xdeadbeef); res = pXcvDataPort(hXcv, cmd_MonitorUIW, NULL, 0, NULL, 0, &needed); ok( (res == ERROR_INSUFFICIENT_BUFFER) && (needed <= MAX_PATH), - "returned %d with 0x%x and 0x%x (expected 'ERROR_INSUFFICIENT_BUFFER' " \ + "returned %d with 0x%x and 0x%x (expected 'ERROR_INSUFFICIENT_BUFFER' " " and '<= MAX_PATH')\n", res, GetLastError(), needed);
if (needed > MAX_PATH) goto xcv_cleanup; @@ -367,7 +367,7 @@ static void test_XcvDataPort(void) needed = (DWORD) 0xdeadbeef; SetLastError(0xdeadbeef); res = pXcvDataPort(hXcv, emptyW, NULL, 0, NULL, 0, &needed); - ok( res == ERROR_INVALID_PARAMETER, "returned %d with 0x%x and 0x%x " \ + ok( res == ERROR_INVALID_PARAMETER, "returned %d with 0x%x and 0x%x " "(expected 'ERROR_INVALID_PARAMETER')\n", res, GetLastError(), needed);
if (0) { @@ -382,7 +382,7 @@ static void test_XcvDataPort(void) needed = (DWORD) 0xdeadbeef; SetLastError(0xdeadbeef); res = pXcvDataPort(NULL, cmd_MonitorUIW, NULL, 0, buffer, len, &needed); - ok( res == ERROR_SUCCESS, "returned %d with 0x%x and 0x%x " \ + ok( res == ERROR_SUCCESS, "returned %d with 0x%x and 0x%x " "(expected 'ERROR_SUCCESS')\n", res, GetLastError(), needed);
@@ -391,14 +391,14 @@ static void test_XcvDataPort(void) needed = (DWORD) 0xdeadbeef; SetLastError(0xdeadbeef); res = pXcvDataPort(hXcv, cmd_MonitorUI_lcaseW, NULL, 0, buffer, len, &needed); - ok( res == ERROR_INVALID_PARAMETER, "returned %d with 0x%x and 0x%x " \ + ok( res == ERROR_INVALID_PARAMETER, "returned %d with 0x%x and 0x%x " "(expected 'ERROR_INVALID_PARAMETER')\n", res, GetLastError(), needed);
/* off by one: larger */ needed = (DWORD) 0xdeadbeef; SetLastError(0xdeadbeef); res = pXcvDataPort(hXcv, cmd_MonitorUIW, NULL, 0, buffer, len+1, &needed); - ok( res == ERROR_SUCCESS, "returned %d with 0x%x and 0x%x " \ + ok( res == ERROR_SUCCESS, "returned %d with 0x%x and 0x%x " "(expected 'ERROR_SUCCESS')\n", res, GetLastError(), needed);
@@ -406,7 +406,7 @@ static void test_XcvDataPort(void) needed = (DWORD) 0xdeadbeef; SetLastError(0xdeadbeef); res = pXcvDataPort(hXcv, cmd_MonitorUIW, NULL, 0, buffer, len-1, &needed); - ok( res == ERROR_INSUFFICIENT_BUFFER, "returned %d with 0x%x and 0x%x " \ + ok( res == ERROR_INSUFFICIENT_BUFFER, "returned %d with 0x%x and 0x%x " "(expected 'ERROR_INSUFFICIENT_BUFFER')\n", res, GetLastError(), needed);
/* Normal use. The DLL-Name without a Path is returned */ @@ -414,7 +414,7 @@ static void test_XcvDataPort(void) needed = (DWORD) 0xdeadbeef; SetLastError(0xdeadbeef); res = pXcvDataPort(hXcv, cmd_MonitorUIW, NULL, 0, buffer, len, &needed); - ok( res == ERROR_SUCCESS, "returned %d with 0x%x and 0x%x " \ + ok( res == ERROR_SUCCESS, "returned %d with 0x%x and 0x%x " "(expected 'ERROR_SUCCESS')\n", res, GetLastError(), needed);
xcv_cleanup: