https://git.reactos.org/?p=reactos.git;a=commitdiff;h=4f7bb559fbdb70e19b0a5bb45033e2ce6eb5a49e

commit 4f7bb559fbdb70e19b0a5bb45033e2ce6eb5a49e
Author:     Katayama Hirofumi MZ <[email protected]>
AuthorDate: Sun Dec 1 11:44:43 2019 +0900
Commit:     Katayama Hirofumi MZ <[email protected]>
CommitDate: Sun Dec 1 11:44:43 2019 +0900

    [SHELL32_APITEST] Improve DragDrop testcase 2
    
    CORE-11238
---
 modules/rostests/apitests/shell32/DragDrop.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/rostests/apitests/shell32/DragDrop.cpp 
b/modules/rostests/apitests/shell32/DragDrop.cpp
index c292353d86a..46ab8bb1c72 100644
--- a/modules/rostests/apitests/shell32/DragDrop.cpp
+++ b/modules/rostests/apitests/shell32/DragDrop.cpp
@@ -264,7 +264,7 @@ static void DoTestEntry(const TEST_ENTRY *pEntry)
         CoTaskMemFree(pidl);
         pidl = NULL;
     }
-    ok(pidl != NULL, "pidl is NULL\n");
+    ok(pidl != NULL, "Line %d: pidl is NULL\n", line);
     pDropTarget = NULL;
     PITEMID_CHILD pidlLast = ILFindLastID(pidl);
     hr = s_pDesktop->GetUIObjectOf(NULL, 1, &pidlLast, IID_IDropTarget,
@@ -274,7 +274,7 @@ static void DoTestEntry(const TEST_ENTRY *pEntry)
 
     if (!pDropTarget)
     {
-        skip("pDropTarget was NULL\n");
+        skip("Line %d: pDropTarget was NULL\n", line);
 
         // clean up
         DeleteFileW(s_szSrcTestFile);

Reply via email to