Also test VPX_ARCH_AARCH64 for 64-bit platforms
authorWan-Teh Chang <wtc@google.com>
Fri, 20 Oct 2023 01:28:48 +0000 (18:28 -0700)
committerWan-Teh Chang <wtc@google.com>
Fri, 20 Oct 2023 01:28:48 +0000 (18:28 -0700)
Change-Id: Ic11ccd791ff78801e0aba1d12ad2d99b9941ce9d

test/realtime_test.cc

index 88e510f..a9870b3 100644 (file)
@@ -95,7 +95,7 @@ TEST_P(RealtimeTest, IntegerOverflow) { TestIntegerOverflow(2048, 2048); }
 
 TEST_P(RealtimeTest, IntegerOverflowLarge) {
   if (IsVP9()) {
-#if VPX_ARCH_X86_64
+#if VPX_ARCH_AARCH64 || VPX_ARCH_X86_64
     TestIntegerOverflow(16384, 16384);
 #else
     TestIntegerOverflow(4096, 4096);