[ROSTESTS] Add missing '\n' to a few skip()

This commit is contained in:
Serge Gautherie 2019-06-04 01:14:31 +02:00 committed by Hermès BÉLUSCA - MAÏTO
parent fdfef818ef
commit 73938ee96f
7 changed files with 7 additions and 7 deletions

View file

@ -254,7 +254,7 @@ START_TEST(MultiByteToWideChar)
trace("This test is designed for Windows 10+ and ReactOS.\n"
"It is expected to report some failures on older Windows versions.\n");
#if 0
skip("");
skip("\n");
return;
#endif
}

View file

@ -17,7 +17,7 @@ Test_VeryLongTests(void)
CHAR OldDir[MAX_PATH];
FILETIME FileTime, File1Time;
win_skip("Too long, see: ROSTESTS-177");
win_skip("Too long, see: ROSTESTS-177\n");
return;
/* Create a blank test directory */

View file

@ -123,7 +123,7 @@ void check(CONTEXT * pContext)
START_TEST(NtContinue)
{
#ifdef __RUNTIME_CHECKS__
skip("This test breaks MSVC runtime checks!");
skip("This test breaks MSVC runtime checks!\n");
return;
#endif /* __RUNTIME_CHECKS__ */
initrand();

View file

@ -196,7 +196,7 @@ START_TEST(CUserNotification)
ok(hThread != NULL, "CreateThread failed with error 0x%lu\n", GetLastError());
if (!hThread)
{
skip("Could not create the CUserNotification test thread!");
skip("Could not create the CUserNotification test thread!\n");
return;
}

View file

@ -22,7 +22,7 @@ START_TEST(NtGdiEnumFontOpen)
ok(idEnum != 0, "idEnum was 0.\n");
if (idEnum == 0)
{
skip("idEnum == 0");
skip("idEnum == 0\n");
return;
}

View file

@ -214,7 +214,7 @@ TestEventConcurrent(
Priority = KeQueryPriorityThread(Threads[i].Thread);
ok_eq_long(Priority, max(min(8L + PriorityIncrement + i, 15L), 8L));
/* replace the thread with the current thread - which will never signal */
if (!skip((Status & 0x3F) < ThreadCount, "Index out of bounds"))
if (!skip((Status & 0x3F) < ThreadCount, "Index out of bounds\n"))
ThreadObjects[Status & 0x3F] = Thread;
Status = KeWaitForMultipleObjects(ThreadCount, ThreadObjects, WaitAny, Executive, KernelMode, FALSE, &ShortTimeout, WaitBlock);
ok_eq_hex(Status, STATUS_TIMEOUT);

View file

@ -212,7 +212,7 @@ START_TEST(ObReference)
ok_eq_hex(Status, STATUS_SUCCESS);
ok(DirectoryHandle != NULL, "DirectoryHandle = NULL\n");
if (!skip(Status == STATUS_SUCCESS && DirectoryHandle, "Cannot proceed without an object"))
if (!skip(Status == STATUS_SUCCESS && DirectoryHandle, "Cannot proceed without an object\n"))
{
TestReference(DirectoryHandle, pName, pNameUpper, FALSE, Tests[i].AdditionalReferences, (Tests[i].Flags & OBJ_PERMANENT) != 0);
/* try again for good measure */