diff test/test.c @ 18:cf04071d2148

impl: initial NEON support; test: verify bit shifting functions
author Paper <paper@tflc.us>
date Wed, 20 Nov 2024 14:33:19 -0500
parents 41dd962abdd1
children
line wrap: on
line diff
--- a/test/test.c	Wed Nov 20 12:02:15 2024 -0500
+++ b/test/test.c	Wed Nov 20 14:33:19 2024 -0500
@@ -112,6 +112,7 @@
 #include "test_align.h"
 #include "test_arith.h"
 #include "test_compare.h"
+#include "test_shift.h"
 
 // ------------------------------------------------------------
 
@@ -124,6 +125,7 @@
 	ret |= test_align();
 	ret |= test_arith();
 	ret |= test_compare();
+	ret |= test_shift();
 
 	return ret;
 }