mirror of
https://github.com/reactos/reactos.git
synced 2025-05-06 18:31:26 +00:00
[ROSTESTS] Add missing '\n' to a few skip()
This commit is contained in:
parent
fdfef818ef
commit
73938ee96f
7 changed files with 7 additions and 7 deletions
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue