summaryrefslogtreecommitdiff
path: root/tests/src/JIT/jit64
diff options
context:
space:
mode:
authorRuss Keldorph <Russ.Keldorph@microsoft.com>2016-04-19 11:27:19 -0700
committerRuss Keldorph <Russ.Keldorph@microsoft.com>2016-04-19 12:53:57 -0700
commitc144b768b0a8fdd53023c89df4b5f364e8fcb871 (patch)
treefad2147f499701b97519c4002bba26a787bbfbe3 /tests/src/JIT/jit64
parentfa9d085cfffe748f0bb9c977d0ddf00b0d654168 (diff)
downloadcoreclr-c144b768b0a8fdd53023c89df4b5f364e8fcb871.tar.gz
coreclr-c144b768b0a8fdd53023c89df4b5f364e8fcb871.tar.bz2
coreclr-c144b768b0a8fdd53023c89df4b5f364e8fcb871.zip
Suppress CS8002 for JIT test projects
"Referenced assembly 'Foo, ...' does not have a strong name." Happens when a .csproj has a ProjectReference for a .ilproj. It's not particularly interesting to give these test assemblies strong names, so I'm just suppressing the warning. Fixes #4232 Fixes #4233 Fixes #4234 Fixes #4235 Fixes #4236 Fixes #4237
Diffstat (limited to 'tests/src/JIT/jit64')
-rw-r--r--tests/src/JIT/jit64/localloc/eh/eh01_dynamic.csproj1
-rw-r--r--tests/src/JIT/jit64/localloc/eh/eh01_large.csproj1
-rw-r--r--tests/src/JIT/jit64/localloc/eh/eh01_small.csproj1
-rw-r--r--tests/src/JIT/jit64/localloc/eh/eh02_dynamic.csproj1
-rw-r--r--tests/src/JIT/jit64/localloc/eh/eh02_large.csproj1
-rw-r--r--tests/src/JIT/jit64/localloc/eh/eh02_small.csproj1
-rw-r--r--tests/src/JIT/jit64/localloc/ehverify/eh09_dynamic.csproj1
-rw-r--r--tests/src/JIT/jit64/localloc/ehverify/eh09_large.csproj1
-rw-r--r--tests/src/JIT/jit64/localloc/ehverify/eh09_small.csproj1
-rw-r--r--tests/src/JIT/jit64/localloc/unwind/unwind01_dynamic.csproj1
-rw-r--r--tests/src/JIT/jit64/localloc/unwind/unwind01_large.csproj1
-rw-r--r--tests/src/JIT/jit64/localloc/unwind/unwind01_small.csproj1
-rw-r--r--tests/src/JIT/jit64/localloc/unwind/unwind02_dynamic.csproj1
-rw-r--r--tests/src/JIT/jit64/localloc/unwind/unwind02_large.csproj1
-rw-r--r--tests/src/JIT/jit64/localloc/unwind/unwind02_small.csproj1
-rw-r--r--tests/src/JIT/jit64/localloc/unwind/unwind03_dynamic.csproj1
-rw-r--r--tests/src/JIT/jit64/localloc/unwind/unwind03_large.csproj1
-rw-r--r--tests/src/JIT/jit64/localloc/unwind/unwind03_small.csproj1
18 files changed, 18 insertions, 0 deletions
diff --git a/tests/src/JIT/jit64/localloc/eh/eh01_dynamic.csproj b/tests/src/JIT/jit64/localloc/eh/eh01_dynamic.csproj
index 917c37976b..607077b090 100644
--- a/tests/src/JIT/jit64/localloc/eh/eh01_dynamic.csproj
+++ b/tests/src/JIT/jit64/localloc/eh/eh01_dynamic.csproj
@@ -31,6 +31,7 @@
<NoLogo>True</NoLogo>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<DefineConstants>$(DefineConstants);DESKTOP;LOCALLOC_DYNAMIC</DefineConstants>
+ <NoWarn>$(NoWarn),8002</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Include="eh01.cs" />
diff --git a/tests/src/JIT/jit64/localloc/eh/eh01_large.csproj b/tests/src/JIT/jit64/localloc/eh/eh01_large.csproj
index 8aa1322434..f3d8fc65fd 100644
--- a/tests/src/JIT/jit64/localloc/eh/eh01_large.csproj
+++ b/tests/src/JIT/jit64/localloc/eh/eh01_large.csproj
@@ -31,6 +31,7 @@
<NoLogo>True</NoLogo>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<DefineConstants>$(DefineConstants);DESKTOP;LOCALLOC_LARGE</DefineConstants>
+ <NoWarn>$(NoWarn),8002</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Include="eh01.cs" />
diff --git a/tests/src/JIT/jit64/localloc/eh/eh01_small.csproj b/tests/src/JIT/jit64/localloc/eh/eh01_small.csproj
index b7e477923b..66454c4da3 100644
--- a/tests/src/JIT/jit64/localloc/eh/eh01_small.csproj
+++ b/tests/src/JIT/jit64/localloc/eh/eh01_small.csproj
@@ -31,6 +31,7 @@
<NoLogo>True</NoLogo>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<DefineConstants>$(DefineConstants);DESKTOP;LOCALLOC_SMALL</DefineConstants>
+ <NoWarn>$(NoWarn),8002</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Include="eh01.cs" />
diff --git a/tests/src/JIT/jit64/localloc/eh/eh02_dynamic.csproj b/tests/src/JIT/jit64/localloc/eh/eh02_dynamic.csproj
index acadab7cc6..2d6b11af2f 100644
--- a/tests/src/JIT/jit64/localloc/eh/eh02_dynamic.csproj
+++ b/tests/src/JIT/jit64/localloc/eh/eh02_dynamic.csproj
@@ -31,6 +31,7 @@
<NoLogo>True</NoLogo>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<DefineConstants>$(DefineConstants);DESKTOP;LOCALLOC_DYNAMIC</DefineConstants>
+ <NoWarn>$(NoWarn),8002</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Include="eh02.cs" />
diff --git a/tests/src/JIT/jit64/localloc/eh/eh02_large.csproj b/tests/src/JIT/jit64/localloc/eh/eh02_large.csproj
index 9a87f2132b..6b1a3ce6a6 100644
--- a/tests/src/JIT/jit64/localloc/eh/eh02_large.csproj
+++ b/tests/src/JIT/jit64/localloc/eh/eh02_large.csproj
@@ -31,6 +31,7 @@
<NoLogo>True</NoLogo>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<DefineConstants>$(DefineConstants);DESKTOP;LOCALLOC_LARGE</DefineConstants>
+ <NoWarn>$(NoWarn),8002</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Include="eh02.cs" />
diff --git a/tests/src/JIT/jit64/localloc/eh/eh02_small.csproj b/tests/src/JIT/jit64/localloc/eh/eh02_small.csproj
index 9e7cb5c47e..6fa819855a 100644
--- a/tests/src/JIT/jit64/localloc/eh/eh02_small.csproj
+++ b/tests/src/JIT/jit64/localloc/eh/eh02_small.csproj
@@ -31,6 +31,7 @@
<NoLogo>True</NoLogo>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<DefineConstants>$(DefineConstants);DESKTOP;LOCALLOC_SMALL</DefineConstants>
+ <NoWarn>$(NoWarn),8002</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Include="eh02.cs" />
diff --git a/tests/src/JIT/jit64/localloc/ehverify/eh09_dynamic.csproj b/tests/src/JIT/jit64/localloc/ehverify/eh09_dynamic.csproj
index e293dbec06..972c051a57 100644
--- a/tests/src/JIT/jit64/localloc/ehverify/eh09_dynamic.csproj
+++ b/tests/src/JIT/jit64/localloc/ehverify/eh09_dynamic.csproj
@@ -31,6 +31,7 @@
<NoLogo>True</NoLogo>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<DefineConstants>$(DefineConstants);DESKTOP;LOCALLOC_SMALL</DefineConstants>
+ <NoWarn>$(NoWarn),8002</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Include="eh09.cs" />
diff --git a/tests/src/JIT/jit64/localloc/ehverify/eh09_large.csproj b/tests/src/JIT/jit64/localloc/ehverify/eh09_large.csproj
index e293dbec06..972c051a57 100644
--- a/tests/src/JIT/jit64/localloc/ehverify/eh09_large.csproj
+++ b/tests/src/JIT/jit64/localloc/ehverify/eh09_large.csproj
@@ -31,6 +31,7 @@
<NoLogo>True</NoLogo>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<DefineConstants>$(DefineConstants);DESKTOP;LOCALLOC_SMALL</DefineConstants>
+ <NoWarn>$(NoWarn),8002</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Include="eh09.cs" />
diff --git a/tests/src/JIT/jit64/localloc/ehverify/eh09_small.csproj b/tests/src/JIT/jit64/localloc/ehverify/eh09_small.csproj
index e293dbec06..972c051a57 100644
--- a/tests/src/JIT/jit64/localloc/ehverify/eh09_small.csproj
+++ b/tests/src/JIT/jit64/localloc/ehverify/eh09_small.csproj
@@ -31,6 +31,7 @@
<NoLogo>True</NoLogo>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<DefineConstants>$(DefineConstants);DESKTOP;LOCALLOC_SMALL</DefineConstants>
+ <NoWarn>$(NoWarn),8002</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Include="eh09.cs" />
diff --git a/tests/src/JIT/jit64/localloc/unwind/unwind01_dynamic.csproj b/tests/src/JIT/jit64/localloc/unwind/unwind01_dynamic.csproj
index a65e822161..9b16dc8405 100644
--- a/tests/src/JIT/jit64/localloc/unwind/unwind01_dynamic.csproj
+++ b/tests/src/JIT/jit64/localloc/unwind/unwind01_dynamic.csproj
@@ -31,6 +31,7 @@
<NoLogo>True</NoLogo>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<DefineConstants>$(DefineConstants);DESKTOP;LOCALLOC_DYNAMIC</DefineConstants>
+ <NoWarn>$(NoWarn),8002</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Include="unwind01.cs" />
diff --git a/tests/src/JIT/jit64/localloc/unwind/unwind01_large.csproj b/tests/src/JIT/jit64/localloc/unwind/unwind01_large.csproj
index 0654367989..6d9f544360 100644
--- a/tests/src/JIT/jit64/localloc/unwind/unwind01_large.csproj
+++ b/tests/src/JIT/jit64/localloc/unwind/unwind01_large.csproj
@@ -31,6 +31,7 @@
<NoLogo>True</NoLogo>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<DefineConstants>$(DefineConstants);DESKTOP;LOCALLOC_LARGE</DefineConstants>
+ <NoWarn>$(NoWarn),8002</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Include="unwind01.cs" />
diff --git a/tests/src/JIT/jit64/localloc/unwind/unwind01_small.csproj b/tests/src/JIT/jit64/localloc/unwind/unwind01_small.csproj
index a37ba9ff89..2c58fe33db 100644
--- a/tests/src/JIT/jit64/localloc/unwind/unwind01_small.csproj
+++ b/tests/src/JIT/jit64/localloc/unwind/unwind01_small.csproj
@@ -31,6 +31,7 @@
<NoLogo>True</NoLogo>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<DefineConstants>$(DefineConstants);DESKTOP;LOCALLOC_SMALL</DefineConstants>
+ <NoWarn>$(NoWarn),8002</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Include="unwind01.cs" />
diff --git a/tests/src/JIT/jit64/localloc/unwind/unwind02_dynamic.csproj b/tests/src/JIT/jit64/localloc/unwind/unwind02_dynamic.csproj
index 3873cf8689..6a06359082 100644
--- a/tests/src/JIT/jit64/localloc/unwind/unwind02_dynamic.csproj
+++ b/tests/src/JIT/jit64/localloc/unwind/unwind02_dynamic.csproj
@@ -31,6 +31,7 @@
<NoLogo>True</NoLogo>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<DefineConstants>$(DefineConstants);DESKTOP;LOCALLOC_DYNAMIC</DefineConstants>
+ <NoWarn>$(NoWarn),8002</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Include="unwind02.cs" />
diff --git a/tests/src/JIT/jit64/localloc/unwind/unwind02_large.csproj b/tests/src/JIT/jit64/localloc/unwind/unwind02_large.csproj
index b1ca904412..6aa86051f2 100644
--- a/tests/src/JIT/jit64/localloc/unwind/unwind02_large.csproj
+++ b/tests/src/JIT/jit64/localloc/unwind/unwind02_large.csproj
@@ -31,6 +31,7 @@
<NoLogo>True</NoLogo>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<DefineConstants>$(DefineConstants);DESKTOP;LOCALLOC_LARGE</DefineConstants>
+ <NoWarn>$(NoWarn),8002</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Include="unwind02.cs" />
diff --git a/tests/src/JIT/jit64/localloc/unwind/unwind02_small.csproj b/tests/src/JIT/jit64/localloc/unwind/unwind02_small.csproj
index f157f1d658..e3a9f989f6 100644
--- a/tests/src/JIT/jit64/localloc/unwind/unwind02_small.csproj
+++ b/tests/src/JIT/jit64/localloc/unwind/unwind02_small.csproj
@@ -31,6 +31,7 @@
<NoLogo>True</NoLogo>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<DefineConstants>$(DefineConstants);DESKTOP;LOCALLOC_SMALL</DefineConstants>
+ <NoWarn>$(NoWarn),8002</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Include="unwind02.cs" />
diff --git a/tests/src/JIT/jit64/localloc/unwind/unwind03_dynamic.csproj b/tests/src/JIT/jit64/localloc/unwind/unwind03_dynamic.csproj
index de100344df..99ceeec72b 100644
--- a/tests/src/JIT/jit64/localloc/unwind/unwind03_dynamic.csproj
+++ b/tests/src/JIT/jit64/localloc/unwind/unwind03_dynamic.csproj
@@ -31,6 +31,7 @@
<NoLogo>True</NoLogo>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<DefineConstants>$(DefineConstants);DESKTOP;LOCALLOC_DYNAMIC</DefineConstants>
+ <NoWarn>$(NoWarn),8002</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Include="unwind03.cs" />
diff --git a/tests/src/JIT/jit64/localloc/unwind/unwind03_large.csproj b/tests/src/JIT/jit64/localloc/unwind/unwind03_large.csproj
index 9231b960d2..8d430f5af5 100644
--- a/tests/src/JIT/jit64/localloc/unwind/unwind03_large.csproj
+++ b/tests/src/JIT/jit64/localloc/unwind/unwind03_large.csproj
@@ -31,6 +31,7 @@
<NoLogo>True</NoLogo>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<DefineConstants>$(DefineConstants);DESKTOP;LOCALLOC_LARGE</DefineConstants>
+ <NoWarn>$(NoWarn),8002</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Include="unwind03.cs" />
diff --git a/tests/src/JIT/jit64/localloc/unwind/unwind03_small.csproj b/tests/src/JIT/jit64/localloc/unwind/unwind03_small.csproj
index ec5663ec15..47519b1133 100644
--- a/tests/src/JIT/jit64/localloc/unwind/unwind03_small.csproj
+++ b/tests/src/JIT/jit64/localloc/unwind/unwind03_small.csproj
@@ -31,6 +31,7 @@
<NoLogo>True</NoLogo>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<DefineConstants>$(DefineConstants);DESKTOP;LOCALLOC_SMALL</DefineConstants>
+ <NoWarn>$(NoWarn),8002</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Include="unwind03.cs" />