Commit c2671133 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

shell32/tests: Make sure return values are used (LLVM/Clang).

parent df846e89
......@@ -2058,6 +2058,7 @@ static void test_sh_create_dir(void)
ok(ERROR_ALREADY_EXISTS == ret, "SHCreateDirectoryEx should fail to create existing directory, ret = %d\n", ret);
ret = pSHCreateDirectoryExA(NULL, "c:\\testdir3", NULL);
ok(ERROR_SUCCESS == ret, "SHCreateDirectoryEx failed to create directory, ret = %d\n", ret);
ok(file_exists("c:\\testdir3"), "The directory is not created\n");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment