mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 14:25:52 +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"
|
trace("This test is designed for Windows 10+ and ReactOS.\n"
|
||||||
"It is expected to report some failures on older Windows versions.\n");
|
"It is expected to report some failures on older Windows versions.\n");
|
||||||
#if 0
|
#if 0
|
||||||
skip("");
|
skip("\n");
|
||||||
return;
|
return;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,7 +17,7 @@ Test_VeryLongTests(void)
|
||||||
CHAR OldDir[MAX_PATH];
|
CHAR OldDir[MAX_PATH];
|
||||||
FILETIME FileTime, File1Time;
|
FILETIME FileTime, File1Time;
|
||||||
|
|
||||||
win_skip("Too long, see: ROSTESTS-177");
|
win_skip("Too long, see: ROSTESTS-177\n");
|
||||||
return;
|
return;
|
||||||
|
|
||||||
/* Create a blank test directory */
|
/* Create a blank test directory */
|
||||||
|
|
|
@ -123,7 +123,7 @@ void check(CONTEXT * pContext)
|
||||||
START_TEST(NtContinue)
|
START_TEST(NtContinue)
|
||||||
{
|
{
|
||||||
#ifdef __RUNTIME_CHECKS__
|
#ifdef __RUNTIME_CHECKS__
|
||||||
skip("This test breaks MSVC runtime checks!");
|
skip("This test breaks MSVC runtime checks!\n");
|
||||||
return;
|
return;
|
||||||
#endif /* __RUNTIME_CHECKS__ */
|
#endif /* __RUNTIME_CHECKS__ */
|
||||||
initrand();
|
initrand();
|
||||||
|
|
|
@ -196,7 +196,7 @@ START_TEST(CUserNotification)
|
||||||
ok(hThread != NULL, "CreateThread failed with error 0x%lu\n", GetLastError());
|
ok(hThread != NULL, "CreateThread failed with error 0x%lu\n", GetLastError());
|
||||||
if (!hThread)
|
if (!hThread)
|
||||||
{
|
{
|
||||||
skip("Could not create the CUserNotification test thread!");
|
skip("Could not create the CUserNotification test thread!\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ START_TEST(NtGdiEnumFontOpen)
|
||||||
ok(idEnum != 0, "idEnum was 0.\n");
|
ok(idEnum != 0, "idEnum was 0.\n");
|
||||||
if (idEnum == 0)
|
if (idEnum == 0)
|
||||||
{
|
{
|
||||||
skip("idEnum == 0");
|
skip("idEnum == 0\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -214,7 +214,7 @@ TestEventConcurrent(
|
||||||
Priority = KeQueryPriorityThread(Threads[i].Thread);
|
Priority = KeQueryPriorityThread(Threads[i].Thread);
|
||||||
ok_eq_long(Priority, max(min(8L + PriorityIncrement + i, 15L), 8L));
|
ok_eq_long(Priority, max(min(8L + PriorityIncrement + i, 15L), 8L));
|
||||||
/* replace the thread with the current thread - which will never signal */
|
/* 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;
|
ThreadObjects[Status & 0x3F] = Thread;
|
||||||
Status = KeWaitForMultipleObjects(ThreadCount, ThreadObjects, WaitAny, Executive, KernelMode, FALSE, &ShortTimeout, WaitBlock);
|
Status = KeWaitForMultipleObjects(ThreadCount, ThreadObjects, WaitAny, Executive, KernelMode, FALSE, &ShortTimeout, WaitBlock);
|
||||||
ok_eq_hex(Status, STATUS_TIMEOUT);
|
ok_eq_hex(Status, STATUS_TIMEOUT);
|
||||||
|
|
|
@ -212,7 +212,7 @@ START_TEST(ObReference)
|
||||||
ok_eq_hex(Status, STATUS_SUCCESS);
|
ok_eq_hex(Status, STATUS_SUCCESS);
|
||||||
ok(DirectoryHandle != NULL, "DirectoryHandle = NULL\n");
|
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);
|
TestReference(DirectoryHandle, pName, pNameUpper, FALSE, Tests[i].AdditionalReferences, (Tests[i].Flags & OBJ_PERMANENT) != 0);
|
||||||
/* try again for good measure */
|
/* try again for good measure */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue