Skip to content

Commit a6974a6

Browse files
committed
Fix tests on Windows
1 parent a7fafe6 commit a6974a6

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

crates/ark/tests/dap_notebook.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -488,6 +488,7 @@ fn test_notebook_breakpoint_stops_execution() {
488488
}
489489

490490
#[test]
491+
#[cfg_attr(target_os = "windows", ignore)]
491492
fn test_notebook_interrupt_at_breakpoint_exits_debugger() {
492493
let frontend = DummyArkFrontendNotebook::lock();
493494

@@ -662,6 +663,7 @@ fn test_notebook_unexpected_browser_continue_via_stdin() {
662663
}
663664

664665
#[test]
666+
#[cfg_attr(target_os = "windows", ignore)]
665667
fn test_notebook_unexpected_browser_interrupt_via_stdin() {
666668
let frontend = DummyArkFrontendNotebook::lock();
667669

crates/ark/tests/dap_step.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ fn test_dap_continue() {
141141
/// In console mode, interrupt at a breakpoint sends SIGINT (not Q).
142142
/// The debugger should remain active after the interrupt.
143143
#[test]
144+
#[cfg_attr(target_os = "windows", ignore)]
144145
fn test_dap_interrupt_at_breakpoint_stays_in_debugger() {
145146
let frontend = DummyArkFrontend::lock();
146147
let mut dap = frontend.start_dap();

0 commit comments

Comments
 (0)