From 99ab11d1edef233cba07a0ae7725d947f973b409 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 9 Aug 2018 17:23:35 -0400 Subject: [PATCH] Add TestAltivecOps for Debug builds --- validat3.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/validat3.cpp b/validat3.cpp index 4a2be166..10ee1188 100644 --- a/validat3.cpp +++ b/validat3.cpp @@ -70,6 +70,10 @@ bool ValidateAll(bool thorough) // http://github.com/weidai11/cryptopp/issues/346 pass=TestASN1Parse() && pass; // Always part of the self tests; call in Debug +# if defined(CRYPTOPP_ALTIVEC_AVAILABLE) + pass=TestAltivecOps() && pass; +# endif + // Always part of the self tests; call in Debug pass=ValidateBaseCode() && pass; // https://github.com/weidai11/cryptopp/issues/562 pass=ValidateEncoder() && pass;