Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -1261,7 +1261,7 @@ public class MyOptions

// validate the location is inside the MyOptions class and not outside the compilation which is in the referenced assembly
Assert.StartsWith("src-0.cs: (12,", diag.Location.GetLineSpan().ToString());
}, assemblyPath).Dispose();
}, assemblyPath, new RemoteInvokeOptions { TimeOut = 300 * 1000}).Dispose();

File.Delete(assemblyPath); // cleanup
}
Expand Down Expand Up @@ -1379,7 +1379,7 @@ internal sealed partial class ExtOptionsValidator : IValidateOptions<ExtOptions>
MemoryStream ms = new();
EmitResult emitResult = compilation.Emit(ms);
Assert.True(emitResult.Success);
}, assemblyPath).Dispose();
}, assemblyPath, new RemoteInvokeOptions { TimeOut = 300 * 1000}).Dispose();

File.Delete(assemblyPath); // cleanup

Expand Down