summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorFei Peng <fei.peng@intel.com>2018-03-28 07:32:28 -0700
committerJan Kotas <jkotas@microsoft.com>2018-03-28 07:32:28 -0700
commit281a9f2b7805dc4df321e480ed9f48141d21dfec (patch)
treecf0cdf1092e9905655d7141e9e8bddd50f71b402 /tests
parent27a710b82880f67e8fe1bf29babee9243c7c9c2e (diff)
downloadcoreclr-281a9f2b7805dc4df321e480ed9f48141d21dfec.tar.gz
coreclr-281a9f2b7805dc4df321e480ed9f48141d21dfec.tar.bz2
coreclr-281a9f2b7805dc4df321e480ed9f48141d21dfec.zip
Remove tests of unimplemented ISAs (#17286)
Diffstat (limited to 'tests')
-rw-r--r--tests/src/JIT/HardwareIntrinsics/X86/General/IsSupported.cs7
1 files changed, 1 insertions, 6 deletions
diff --git a/tests/src/JIT/HardwareIntrinsics/X86/General/IsSupported.cs b/tests/src/JIT/HardwareIntrinsics/X86/General/IsSupported.cs
index abdc108536..6bc3cba771 100644
--- a/tests/src/JIT/HardwareIntrinsics/X86/General/IsSupported.cs
+++ b/tests/src/JIT/HardwareIntrinsics/X86/General/IsSupported.cs
@@ -36,15 +36,10 @@ namespace IntelHardwareIntrinsicTest
Convert.ToBoolean(typeof(Ssse3).GetMethod(issupported).Invoke(null, null)) != Ssse3.IsSupported ||
Convert.ToBoolean(typeof(Sse41).GetMethod(issupported).Invoke(null, null)) != Sse41.IsSupported ||
Convert.ToBoolean(typeof(Sse42).GetMethod(issupported).Invoke(null, null)) != Sse42.IsSupported ||
- Convert.ToBoolean(typeof(Aes).GetMethod(issupported).Invoke(null, null)) != Aes.IsSupported ||
Convert.ToBoolean(typeof(Avx).GetMethod(issupported).Invoke(null, null)) != Avx.IsSupported ||
Convert.ToBoolean(typeof(Avx2).GetMethod(issupported).Invoke(null, null)) != Avx2.IsSupported ||
- Convert.ToBoolean(typeof(Fma).GetMethod(issupported).Invoke(null, null)) != Fma.IsSupported ||
Convert.ToBoolean(typeof(Lzcnt).GetMethod(issupported).Invoke(null, null)) != Lzcnt.IsSupported ||
- Convert.ToBoolean(typeof(Bmi1).GetMethod(issupported).Invoke(null, null)) != Bmi1.IsSupported ||
- Convert.ToBoolean(typeof(Bmi2).GetMethod(issupported).Invoke(null, null)) != Bmi2.IsSupported ||
- Convert.ToBoolean(typeof(Popcnt).GetMethod(issupported).Invoke(null, null)) != Popcnt.IsSupported ||
- Convert.ToBoolean(typeof(Pclmulqdq).GetMethod(issupported).Invoke(null, null)) != Pclmulqdq.IsSupported
+ Convert.ToBoolean(typeof(Popcnt).GetMethod(issupported).Invoke(null, null)) != Popcnt.IsSupported
)
{
result = false;