Skip to content

Commit

Permalink
Disable EnvironmentTest w/ spaces
Browse files Browse the repository at this point in the history
darwin-debug does not like environment with spaces, and it is sent by lldb-mi.
Needs to be fixed externally.
  • Loading branch information
WardenGnaw committed Sep 3, 2021
1 parent e547bb0 commit ab6391e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/CppTests/Tests/EnvironmentTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,8 @@ public void EnvironmentVariablesSpaces(ITestSettings settings)
[DependsOnTest(nameof(CompileKitchenSinkForEnvironmentTests))]
[RequiresTestSettings]
// Need to support 'runInTerminal' request.
[UnsupportedDebugger(SupportedDebugger.VsDbg, SupportedArchitecture.x86 | SupportedArchitecture.x64)]
// darwin-debug does not support spaces in environment variables
[UnsupportedDebugger(SupportedDebugger.VsDbg | SupportedDebugger.Lldb, SupportedArchitecture.x86 | SupportedArchitecture.x64)]
public void EnvironmentVariablesSpacesNewTerminal(ITestSettings settings)
{
this.TestPurpose("Tests environment variables that include a space in a new terminal window");
Expand Down

0 comments on commit ab6391e

Please sign in to comment.