Add missing linebreak to ok message in multiple patches.

This commit is contained in:
Sebastian Lackner 2015-08-17 08:37:22 +02:00
parent 68bdb355dc
commit cc04af2457
3 changed files with 3 additions and 3 deletions

View File

@ -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);

View File

@ -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);

View File

@ -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);