Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions conformance_tests/tools/debug/src/test_debug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1101,7 +1101,7 @@ void zetDebugEventReadTest::run_read_events_in_separate_thread_test(
module_load_cv.wait(lk, [] { return module_loaded; });
lk.unlock();
LOG_INFO << "[Debugger] Main thread sleeping to wait for device threads";
std::this_thread::sleep_for(std::chrono::seconds(60));
std::this_thread::sleep_for(std::chrono::seconds(6));

LOG_INFO << "[Debugger] Sending interrupt from main thread";
lzt::debug_interrupt(debugSession, device_thread);
Expand Down Expand Up @@ -1277,7 +1277,7 @@ void zetDebugReadWriteRegistersTest::run_read_write_registers_test(

LOG_INFO << "[Debugger] Stopping all device threads";
// give time to app to launch the kernel
std::this_thread::sleep_for(std::chrono::seconds(60));
std::this_thread::sleep_for(std::chrono::seconds(6));

lzt::debug_interrupt(debugSession, device_threads);

Expand Down Expand Up @@ -1426,7 +1426,7 @@ void zetDebugThreadControlTest::SetUpThreadControl(ze_device_handle_t &device,

LOG_INFO << "[Debugger] Interrupting all threads";
// give time to app to launch the kernel
std::this_thread::sleep_for(std::chrono::seconds(60));
std::this_thread::sleep_for(std::chrono::seconds(6));

lzt::debug_interrupt(debugSession, thread);
stopped_threads = {};
Expand Down
2 changes: 1 addition & 1 deletion conformance_tests/tools/debug/src/test_debug_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,7 @@ void zetDebugMemAccessTest::run_read_write_module_and_memory_test(

LOG_INFO << "[Debugger] Interrupting all threads";
// give time to app to launch the kernel
std::this_thread::sleep_for(std::chrono::seconds(60));
std::this_thread::sleep_for(std::chrono::seconds(6));

lzt::debug_interrupt(debugSession, thread);
std::vector<ze_device_thread_t> stopped_threads;
Expand Down