Commit 43c94c95 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

localspl/tests: In multiline strings there is no need for '\' at the end of the lines.

parent ee2e686a
......@@ -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(void)
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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment