Reactos

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

authored by

Serge Gautherie and committed by
Hermès BÉLUSCA - MAÏTO
73938ee9 fdfef818

+7 -7
+1 -1
modules/rostests/apitests/kernel32/MultiByteToWideChar.c
··· 254 254 trace("This test is designed for Windows 10+ and ReactOS.\n" 255 255 "It is expected to report some failures on older Windows versions.\n"); 256 256 #if 0 257 - skip(""); 257 + skip("\n"); 258 258 return; 259 259 #endif 260 260 }
+1 -1
modules/rostests/apitests/kernel32/TunnelCache.c
··· 17 17 CHAR OldDir[MAX_PATH]; 18 18 FILETIME FileTime, File1Time; 19 19 20 - win_skip("Too long, see: ROSTESTS-177"); 20 + win_skip("Too long, see: ROSTESTS-177\n"); 21 21 return; 22 22 23 23 /* Create a blank test directory */
+1 -1
modules/rostests/apitests/ntdll/NtContinue.c
··· 123 123 START_TEST(NtContinue) 124 124 { 125 125 #ifdef __RUNTIME_CHECKS__ 126 - skip("This test breaks MSVC runtime checks!"); 126 + skip("This test breaks MSVC runtime checks!\n"); 127 127 return; 128 128 #endif /* __RUNTIME_CHECKS__ */ 129 129 initrand();
+1 -1
modules/rostests/apitests/shell32/CUserNotification.cpp
··· 196 196 ok(hThread != NULL, "CreateThread failed with error 0x%lu\n", GetLastError()); 197 197 if (!hThread) 198 198 { 199 - skip("Could not create the CUserNotification test thread!"); 199 + skip("Could not create the CUserNotification test thread!\n"); 200 200 return; 201 201 } 202 202
+1 -1
modules/rostests/apitests/win32nt/ntgdi/NtGdiEnumFontOpen.c
··· 22 22 ok(idEnum != 0, "idEnum was 0.\n"); 23 23 if (idEnum == 0) 24 24 { 25 - skip("idEnum == 0"); 25 + skip("idEnum == 0\n"); 26 26 return; 27 27 } 28 28
+1 -1
modules/rostests/kmtests/ntos_ke/KeEvent.c
··· 214 214 Priority = KeQueryPriorityThread(Threads[i].Thread); 215 215 ok_eq_long(Priority, max(min(8L + PriorityIncrement + i, 15L), 8L)); 216 216 /* replace the thread with the current thread - which will never signal */ 217 - if (!skip((Status & 0x3F) < ThreadCount, "Index out of bounds")) 217 + if (!skip((Status & 0x3F) < ThreadCount, "Index out of bounds\n")) 218 218 ThreadObjects[Status & 0x3F] = Thread; 219 219 Status = KeWaitForMultipleObjects(ThreadCount, ThreadObjects, WaitAny, Executive, KernelMode, FALSE, &ShortTimeout, WaitBlock); 220 220 ok_eq_hex(Status, STATUS_TIMEOUT);
+1 -1
modules/rostests/kmtests/ntos_ob/ObReference.c
··· 212 212 ok_eq_hex(Status, STATUS_SUCCESS); 213 213 ok(DirectoryHandle != NULL, "DirectoryHandle = NULL\n"); 214 214 215 - if (!skip(Status == STATUS_SUCCESS && DirectoryHandle, "Cannot proceed without an object")) 215 + if (!skip(Status == STATUS_SUCCESS && DirectoryHandle, "Cannot proceed without an object\n")) 216 216 { 217 217 TestReference(DirectoryHandle, pName, pNameUpper, FALSE, Tests[i].AdditionalReferences, (Tests[i].Flags & OBJ_PERMANENT) != 0); 218 218 /* try again for good measure */