diff test/call_suite_aggrs/globals.h @ 492:29d09d10ecd9

- added unsigned types to call_suite_aggrs
author Tassilo Philipp
date Mon, 21 Mar 2022 10:04:10 +0100
parents 0c68b3f91367
children ed7d1f5e7973
line wrap: on
line diff
--- a/test/call_suite_aggrs/globals.h	Mon Mar 21 10:02:04 2022 +0100
+++ b/test/call_suite_aggrs/globals.h	Mon Mar 21 10:04:10 2022 +0100
@@ -24,7 +24,7 @@
 
 
 /* the 'a'ggregate type points to memory with random data that is big enough to hold all different struct types */
-#define DEF_TYPES X(c,char) X(s,short) X(i,int) X(j,long) X(l,long long) X(p,void*) X(f,float) X(d,double) X(a,void*)
+#define DEF_TYPES X(c,char) X(s,short) X(i,int) X(j,long) X(l,long long) X(C,unsigned char) X(S,unsigned short) X(I,unsigned int) X(J,unsigned long) X(L,unsigned long long) X(p,void*) X(f,float) X(d,double) X(a,void*)
 
 #define X(CH,T) extern T *K_##CH; extern T *V_##CH;
 DEF_TYPES