diff options
| author | Nathan Moinvaziri <nathan@nathanm.com> | 2026-02-18 00:08:25 -0800 |
|---|---|---|
| committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2026-02-18 15:05:03 +0100 |
| commit | e9e34e301802b6f9fa88015c3371fcdcf657e651 (patch) | |
| tree | 1b3e39b5da64fad8cf0326ffbe09af3e9ae7cc68 | |
| parent | ee2dd805d6418dee2cce27d6bbef20f400fc934e (diff) | |
| download | Project-Tick-e9e34e301802b6f9fa88015c3371fcdcf657e651.tar.gz Project-Tick-e9e34e301802b6f9fa88015c3371fcdcf657e651.zip | |
Add POWER8 VSX and S390 VX CRC32 copy tests
| -rw-r--r-- | test/test_crc32_copy.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/test_crc32_copy.cc b/test/test_crc32_copy.cc index b72884325a..d397448017 100644 --- a/test/test_crc32_copy.cc +++ b/test/test_crc32_copy.cc @@ -70,6 +70,12 @@ TEST_CRC32_COPY(braid, crc32_copy_braid, 1) # ifdef RISCV_CRC32_ZBC TEST_CRC32_COPY(riscv, crc32_copy_riscv64_zbc, test_cpu_features.riscv.has_zbc) # endif +# ifdef POWER8_VSX_CRC32 + TEST_CRC32_COPY(power8, crc32_copy_power8, test_cpu_features.power.has_arch_2_07) +# endif +# ifdef S390_CRC32_VX + TEST_CRC32_COPY(vx, crc32_copy_s390_vx, test_cpu_features.s390.has_vx) +# endif # ifdef X86_PCLMULQDQ_CRC TEST_CRC32_COPY(pclmulqdq, crc32_copy_pclmulqdq, test_cpu_features.x86.has_pclmulqdq) # endif |
