# HG changeset patch # User Tassilo Philipp # Date 1662219263 -7200 # Node ID d60f741e5eae6b3de4e53e02d3863479d1cfd0c7 # Parent fd7426080105959713543f44cf309bfce5757f42 - test code comments diff -r fd7426080105 -r d60f741e5eae test/call_suite_aggrs/globals.c --- a/test/call_suite_aggrs/globals.c Sat Sep 03 17:03:37 2022 +0200 +++ b/test/call_suite_aggrs/globals.c Sat Sep 03 17:34:23 2022 +0200 @@ -31,7 +31,10 @@ DEF_TYPES #undef X -#define AGGR_MISALIGN 1 +/* intentional misalignment of test aggregates (use only positive numbers); + * crashes/exceptions (e.g. sigbus on some platforms) when using values > 0 + * might reveal missing aggr-by-val copies in the implementation */ +#define AGGR_MISALIGN 1 /* @@@AGGR make configurable */ static double rand_d() { return ( ( (double) rand() ) / ( (double) RAND_MAX ) ); } diff -r fd7426080105 -r d60f741e5eae test/callback_suite_aggrs/globals.c --- a/test/callback_suite_aggrs/globals.c Sat Sep 03 17:03:37 2022 +0200 +++ b/test/callback_suite_aggrs/globals.c Sat Sep 03 17:34:23 2022 +0200 @@ -31,7 +31,10 @@ DEF_TYPES #undef X -#define AGGR_MISALIGN 1 +/* intentional misalignment of test aggregates (use only positive numbers); + * crashes/exceptions (e.g. sigbus on some platforms) when using values > 0 + * might reveal missing aggr-by-val copies in the implementation */ +#define AGGR_MISALIGN 1 /* @@@AGGR make configurable */ static double rand_d() { return ( ( (double) rand() ) / ( (double) RAND_MAX ) ); }