summaryrefslogtreecommitdiff
path: root/tests/src/Exceptions
diff options
context:
space:
mode:
authorAditya Mandaleeka <adityam@microsoft.com>2016-03-31 17:44:24 -0700
committerAditya Mandaleeka <adityam@microsoft.com>2016-03-31 17:44:24 -0700
commitd9f0d424f5055cf73763a735bf19a446f417d74b (patch)
treecffbd6252a56f5bed6dde9deb920078a6e3c8d88 /tests/src/Exceptions
parent064744a23663cb0a34c6364618c3be308ee87933 (diff)
downloadcoreclr-d9f0d424f5055cf73763a735bf19a446f417d74b.tar.gz
coreclr-d9f0d424f5055cf73763a735bf19a446f417d74b.tar.bz2
coreclr-d9f0d424f5055cf73763a735bf19a446f417d74b.zip
Disable ForeignThreadExceptions test on ARM64.
Diffstat (limited to 'tests/src/Exceptions')
-rw-r--r--tests/src/Exceptions/ForeignThread/CMakeLists.txt4
-rw-r--r--tests/src/Exceptions/ForeignThread/ForeignThreadExceptions.csproj2
2 files changed, 4 insertions, 2 deletions
diff --git a/tests/src/Exceptions/ForeignThread/CMakeLists.txt b/tests/src/Exceptions/ForeignThread/CMakeLists.txt
index 5a16a42f3f..78bde48d59 100644
--- a/tests/src/Exceptions/ForeignThread/CMakeLists.txt
+++ b/tests/src/Exceptions/ForeignThread/CMakeLists.txt
@@ -1,5 +1,7 @@
cmake_minimum_required (VERSION 2.6)
+if(NOT (CLR_CMAKE_TARGET_ARCH STREQUAL arm64))
+
project (ForeignThreadExceptionsNative)
include_directories(${INC_PLATFORM_DIR})
@@ -12,4 +14,4 @@ add_library (ForeignThreadExceptionsNative SHARED ${SOURCES})
# add the install targets
install (TARGETS ForeignThreadExceptionsNative DESTINATION bin)
-
+endif() \ No newline at end of file
diff --git a/tests/src/Exceptions/ForeignThread/ForeignThreadExceptions.csproj b/tests/src/Exceptions/ForeignThread/ForeignThreadExceptions.csproj
index 634bb39d7b..9b624fce6c 100644
--- a/tests/src/Exceptions/ForeignThread/ForeignThreadExceptions.csproj
+++ b/tests/src/Exceptions/ForeignThread/ForeignThreadExceptions.csproj
@@ -13,7 +13,7 @@
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages</ReferencePath>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
-
+ <DisableProjectBuild Condition=" '$(Platform)' == 'arm64' ">true</DisableProjectBuild>
<NuGetPackageImportStamp>7a9bfb7d</NuGetPackageImportStamp>
<DefineConstants>$(DefineConstants);STATIC</DefineConstants>
</PropertyGroup>