From cc04af24571e07b540361968d81576d6f1e192d5 Mon Sep 17 00:00:00 2001 From: Sebastian Lackner Date: Mon, 17 Aug 2015 08:37:22 +0200 Subject: [PATCH] Add missing linebreak to ok message in multiple patches. --- ...1-ntdll-Throw-exception-if-invalid-handle-is-passed-to.patch | 2 +- ...5-nvcuda-Properly-wrap-undocumented-ContextStorage-int.patch | 2 +- .../ws2_32-WSAPoll/0002-ws2_32-tests-Add-WSAPoll-tests.patch | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/patches/ntdll-Exception/0001-ntdll-Throw-exception-if-invalid-handle-is-passed-to.patch b/patches/ntdll-Exception/0001-ntdll-Throw-exception-if-invalid-handle-is-passed-to.patch index 2834034a..9ee81fa5 100644 --- a/patches/ntdll-Exception/0001-ntdll-Throw-exception-if-invalid-handle-is-passed-to.patch +++ b/patches/ntdll-Exception/0001-ntdll-Throw-exception-if-invalid-handle-is-passed-to.patch @@ -127,7 +127,7 @@ index 5cbab71..7a97ae5 100644 + invalid_handle_exceptions = 0; + res = CloseHandle((HANDLE)0xdeadbeef); + ok(!res, "CloseHandle(0xdeadbeef) unexpectedly succeeded\n"); -+ ok(GetLastError() == ERROR_INVALID_HANDLE, "wrong error code %d instead of %d", ++ ok(GetLastError() == ERROR_INVALID_HANDLE, "wrong error code %d instead of %d\n", + GetLastError(), ERROR_INVALID_HANDLE); + ok(invalid_handle_exceptions == numexc, "CloseHandle generated %d exceptions, expected %d\n", + invalid_handle_exceptions, numexc); diff --git a/patches/nvcuda-CUDA_Support/0005-nvcuda-Properly-wrap-undocumented-ContextStorage-int.patch b/patches/nvcuda-CUDA_Support/0005-nvcuda-Properly-wrap-undocumented-ContextStorage-int.patch index 88d38d73..1fdb5f3c 100644 --- a/patches/nvcuda-CUDA_Support/0005-nvcuda-Properly-wrap-undocumented-ContextStorage-int.patch +++ b/patches/nvcuda-CUDA_Support/0005-nvcuda-Properly-wrap-undocumented-ContextStorage-int.patch @@ -425,7 +425,7 @@ index fc8f300..9c30c37 100644 + ok(!res, "Expected CUDA_SUCCESS, got %d\n", res); + ok(test_data.count == 1, "Expected count to be 1, got %d\n", test_data.count); + ok(test_data.ctx == ctx, "Expected ctx to be %p, got %p\n", ctx, test_data.ctx); -+ ok(test_data.key == STORAGE_KEY_1, "Expected key to be %p, got %p", STORAGE_KEY_1, test_data.key); ++ ok(test_data.key == STORAGE_KEY_1, "Expected key to be %p, got %p\n", STORAGE_KEY_1, test_data.key); + + /* Test if destructor callback is called when removing an element */ + res = pcuCtxCreate(&ctx, 0, 0); diff --git a/patches/ws2_32-WSAPoll/0002-ws2_32-tests-Add-WSAPoll-tests.patch b/patches/ws2_32-WSAPoll/0002-ws2_32-tests-Add-WSAPoll-tests.patch index 058a5a26..46aca22a 100644 --- a/patches/ws2_32-WSAPoll/0002-ws2_32-tests-Add-WSAPoll-tests.patch +++ b/patches/ws2_32-WSAPoll/0002-ws2_32-tests-Add-WSAPoll-tests.patch @@ -166,7 +166,7 @@ index 6d328e6..3d584f2 100644 + tmp_buf[0] = 0xAF; + SetLastError(0xdeadbeef); + ret = recv(fdRead, tmp_buf, sizeof(tmp_buf), MSG_OOB); -+ ok(ret == SOCKET_ERROR, "expected -1, got %d", ret); ++ ok(ret == SOCKET_ERROR, "expected -1, got %d\n", ret); + ok(GetLastError() == WSAEINVAL, "expected 10022, got %d\n", GetLastError()); + ret = recv(fdRead, tmp_buf, sizeof(tmp_buf), 0); + ok(ret == 1, "expected 1, got %d\n", ret);