Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Commit

Permalink
add quiet parameter in the command.
Browse files Browse the repository at this point in the history
  • Loading branch information
huanwu committed Sep 15, 2017
1 parent 9a93885 commit d72bc35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Microsoft.XmlSerializer.Generator/tests/SGenTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public static class SgenTests
public static void SgenCommandTest()
{
string codefile = "Microsoft.XmlSerializer.Generator.Tests.XmlSerializers.cs";
int n = Sgen.Main(new string[] { "Microsoft.XmlSerializer.Generator.Tests.dll", "/force"});
int n = Sgen.Main(new string[] { "Microsoft.XmlSerializer.Generator.Tests.dll", "/force /quiet"});
Assert.Equal(0, n);
Assert.True(File.Exists(codefile), string.Format("Fail to generate {0}.", codefile));
}
Expand Down

0 comments on commit d72bc35

Please sign in to comment.