From e2cda847aa1576e92467cd0b075f111fda3dda61 Mon Sep 17 00:00:00 2001 From: rasapala Date: Mon, 25 May 2026 09:50:43 +0200 Subject: [PATCH] Skip sporadic resume terminate on win --- src/test/pull_hf_model_test.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/test/pull_hf_model_test.cpp b/src/test/pull_hf_model_test.cpp index 8f18508fa0..25ada82a97 100644 --- a/src/test/pull_hf_model_test.cpp +++ b/src/test/pull_hf_model_test.cpp @@ -792,6 +792,9 @@ TEST(HfPullWindowsWorker, ResumeTerminateChildProcess) { // ResumeAfterForcedTerminationAndRerun TEST_F(HfPull, ResumeTerminate) { +#ifdef _WIN32 + SKIP_AND_EXIT_IF_NOT_RUNNING_UNSTABLE(); +#endif std::string basePath = ovms::FileSystem::joinPath({this->directoryPath, "repository", "OpenVINO", "Phi-3-mini-FastDraft-50M-int8-ov"}); std::string modelPath = ovms::FileSystem::appendSlash(basePath) + "openvino_model.bin"; std::string model2Path = ovms::FileSystem::appendSlash(basePath) + "openvino_detokenizer.bin";