summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAaron Robinson <arobins@microsoft.com>2018-07-19 19:42:48 -0700
committerGitHub <noreply@github.com>2018-07-19 19:42:48 -0700
commit524ae00b8c268f092614f85a77b81bb854875da4 (patch)
tree67b62115eeab8e7bdf381c276ad55b250b13881d /tests
parent21ade50e57e1f61fb7a1a4970adba12d72ec72f7 (diff)
downloadcoreclr-524ae00b8c268f092614f85a77b81bb854875da4.tar.gz
coreclr-524ae00b8c268f092614f85a77b81bb854875da4.tar.bz2
coreclr-524ae00b8c268f092614f85a77b81bb854875da4.zip
Add issues with COM tests in the helix build. (#19047)
Presently COM tests does not appear to run properly on Windows.Nano but there is no way to special case that OS so disabling them on all builds.
Diffstat (limited to 'tests')
-rw-r--r--tests/issues.targets7
-rw-r--r--tests/src/Interop/COM/NETClients/Primitives/Program.cs2
2 files changed, 8 insertions, 1 deletions
diff --git a/tests/issues.targets b/tests/issues.targets
index 145c16a049..63490d8829 100644
--- a/tests/issues.targets
+++ b/tests/issues.targets
@@ -433,6 +433,10 @@
<ExcludeList Include="$(XunitTestBinBase)\JIT\Performance\CodeQuality\BenchmarksGame\reverse-complement\reverse-complement-6\reverse-complement-6.cmd">
<Issue>9314</Issue>
</ExcludeList>
+ <!-- Disable COM tests since they don't properly run on Windows.Nano and at present there is no way to special case that OS flavor. -->
+ <ExcludeList Include="$(XunitTestBinBase)\Interop\COM\NETClients\Primitives\NETClientPrimitives\NETClientPrimitives.cmd">
+ <Issue>Fails on Windows.Nano</Issue>
+ </ExcludeList>
</ItemGroup>
<!-- The following are tests that fail on non-Windows, which we must not run when building against packages -->
@@ -549,6 +553,9 @@
<ExcludeList Include="$(XunitTestBinBase)\Interop\StructMarshalling\PInvoke\MarshalStructAsLayoutExp\MarshalStructAsLayoutExp.cmd">
<Issue>needs triage</Issue>
</ExcludeList>
+ <ExcludeList Include="$(XunitTestBinBase)\Interop\COM\NETClients\Primitives\NETClientPrimitives\NETClientPrimitives.cmd">
+ <Issue>by design Windows only</Issue>
+ </ExcludeList>
<ExcludeList Include="$(XunitTestBinBase)\JIT\Directed\IL\PInvokeTail\PInvokeTail\PInvokeTail.cmd">
<Issue>needs triage</Issue>
</ExcludeList>
diff --git a/tests/src/Interop/COM/NETClients/Primitives/Program.cs b/tests/src/Interop/COM/NETClients/Primitives/Program.cs
index 4d76417275..cf0249af66 100644
--- a/tests/src/Interop/COM/NETClients/Primitives/Program.cs
+++ b/tests/src/Interop/COM/NETClients/Primitives/Program.cs
@@ -19,7 +19,7 @@ namespace NetClient
}
catch (Exception e)
{
- Console.WriteLine($"Test Failure: {e.Message}\n{e.StackTrace}");
+ Console.WriteLine($"Test Failure: {e}");
return 101;
}