From efb5923120638a30356257809c0718fd05938f75 Mon Sep 17 00:00:00 2001 From: Chris Ross Date: Fri, 8 Feb 2019 08:03:42 -0800 Subject: [PATCH] Enable verbose h2spec logs (#7361) --- .../Kestrel/test/Interop.FunctionalTests/H2SpecCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Servers/Kestrel/test/Interop.FunctionalTests/H2SpecCommands.cs b/src/Servers/Kestrel/test/Interop.FunctionalTests/H2SpecCommands.cs index 56a46b3ad7..1d545e84e2 100644 --- a/src/Servers/Kestrel/test/Interop.FunctionalTests/H2SpecCommands.cs +++ b/src/Servers/Kestrel/test/Interop.FunctionalTests/H2SpecCommands.cs @@ -178,7 +178,7 @@ namespace Interop.FunctionalTests process.StartInfo.FileName = GetToolLocation(); process.StartInfo.RedirectStandardOutput = true; process.StartInfo.RedirectStandardError = true; - process.StartInfo.Arguments = $"{testId} -p {port.ToString(CultureInfo.InvariantCulture)} --strict -j {tempFile} --timeout {TimeoutSeconds}" + process.StartInfo.Arguments = $"{testId} -p {port.ToString(CultureInfo.InvariantCulture)} --strict -v -j {tempFile} --timeout {TimeoutSeconds}" + (https ? " --tls --insecure" : ""); process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden; process.StartInfo.CreateNoWindow = true;