Re-enable some tests

This commit is contained in:
Nick Guerrera 2017-08-25 18:47:11 -07:00
parent 656eab7aec
commit ac3900d9c1
2 changed files with 2 additions and 4 deletions

View file

@ -42,8 +42,7 @@ namespace Microsoft.DotNet.Tests.ArgumentForwarding
/// This is a critical scenario for the driver.
/// </summary>
/// <param name="testUserArgument"></param>
// This test is "Windows only" for now due to https://github.com/dotnet/corefx/issues/23496
[WindowsOnlyTheory]
[Theory]
[InlineData(@"""abc"" d e")]
[InlineData(@"""ábc"" d é")]
[InlineData(@"""abc"" d e")]

View file

@ -21,10 +21,9 @@
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="$(PlatformAbstractionsVersion)"/>
</ItemGroup>
<!-- Disabled on non-Windows due to https://github.com/dotnet/corefx/issues/23496 -->
<Target Name="PrecompileScript"
BeforeTargets="Build"
Condition=" '$(IsCrossTargetingBuild)' != 'true' And '$(OS)' == 'Windows_NT'">
Condition=" '$(IsCrossTargetingBuild)' != 'true' ">
<Exec Command="$(DotnetInOutputDirectory) publish ../ArgumentsReflector/ArgumentsReflector.csproj --output $(MSBuildThisFileDirectory)/$(OutputPath)" />
</Target>