Skip to content

Commit d82e48d

Browse files
committed
Test - try RemoteExecutor without captured closure
1 parent 680d466 commit d82e48d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/System.CommandLine.Tests/Invocation/CancelOnProcessTerminationTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ public async Task CancelOnProcessTermination_cancels_on_process_termination(int
9292
}
9393

9494
[LinuxOnlyTheory]
95-
[InlineData(null, SIGINT)]
95+
//[InlineData(null, SIGINT)]
9696
[InlineData(100, SIGINT)]
97-
[InlineData(null, SIGTERM)]
97+
//[InlineData(null, SIGTERM)]
9898
[InlineData(100, SIGTERM)]
9999
public async Task CancelOnProcessTermination_timeout_on_cancel_processing(int? timeOutMs, int signo)
100100
{
@@ -139,7 +139,7 @@ public async Task CancelOnProcessTermination_timeout_on_cancel_processing(int? t
139139
{
140140
command
141141
})
142-
.CancelOnProcessTermination(timeOut)
142+
.CancelOnProcessTermination(/*timeOut*/TimeSpan.FromSeconds(100))
143143
.Build()
144144
.InvokeAsync("the-command");
145145
};

0 commit comments

Comments
 (0)