diff --git a/src/ObjectUtils/ElfFileTest.cpp b/src/ObjectUtils/ElfFileTest.cpp index 7f14dd6515f..72a9e6327cf 100644 --- a/src/ObjectUtils/ElfFileTest.cpp +++ b/src/ObjectUtils/ElfFileTest.cpp @@ -595,6 +595,10 @@ TEST(ElfFile, GetDeclarationLocationOfFunction) { } TEST(ElfFile, GetDeclarationLocationOfFunctionLibc) { +// TODO(https://github.com/google/orbit/issues/4502): Enable test again. +#ifdef _WIN32 + GTEST_SKIP(); +#endif const std::filesystem::path file_path = orbit_test::GetTestdataDir() / "libc.debug"; auto program = CreateElfFile(file_path); @@ -611,6 +615,10 @@ TEST(ElfFile, GetDeclarationLocationOfFunctionLibc) { } TEST(ElfFile, GetLocationOfFunctionLibc) { +// TODO(https://github.com/google/orbit/issues/4502): Enable test again. +#ifdef _WIN32 + GTEST_SKIP(); +#endif const std::filesystem::path file_path = orbit_test::GetTestdataDir() / "libc.debug"; auto program = CreateElfFile(file_path); @@ -627,6 +635,10 @@ TEST(ElfFile, GetLocationOfFunctionLibc) { } TEST(ElfFile, GetLocationOfFunctionNoSubroutine) { +// TODO(https://github.com/google/orbit/issues/4502): Enable test again. +#ifdef _WIN32 + GTEST_SKIP(); +#endif const std::filesystem::path file_path = orbit_test::GetTestdataDir() / "libc.debug"; auto program = CreateElfFile(file_path); diff --git a/src/WindowsUtils/ProcessLauncherTest.cpp b/src/WindowsUtils/ProcessLauncherTest.cpp index e472be287b4..cbab7a49dd6 100644 --- a/src/WindowsUtils/ProcessLauncherTest.cpp +++ b/src/WindowsUtils/ProcessLauncherTest.cpp @@ -35,6 +35,10 @@ TEST(ProcessLauncher, LaunchProcess) { } TEST(ProcessLauncher, LaunchSuspendResumeProcess) { +// TODO(https://github.com/google/orbit/issues/4503): Enable test again. +#ifdef _WIN32 + GTEST_SKIP(); +#endif ProcessLauncher launcher; auto launch_result = launcher.LaunchProcess(GetTestExecutablePath(), /*working_directory=*/"", /*arguments=*/"",