summaryrefslogtreecommitdiff
path: root/testsuite/libffi.closures/cls_3byte1.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/libffi.closures/cls_3byte1.c')
-rw-r--r--testsuite/libffi.closures/cls_3byte1.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/libffi.closures/cls_3byte1.c b/testsuite/libffi.closures/cls_3byte1.c
index a02c463..b424917 100644
--- a/testsuite/libffi.closures/cls_3byte1.c
+++ b/testsuite/libffi.closures/cls_3byte1.c
@@ -24,6 +24,15 @@ cls_struct_3byte cls_struct_3byte_fn(struct cls_struct_3byte a1,
printf("%d %d %d %d: %d %d\n", a1.a, a1.b, a2.a, a2.b, result.a, result.b);
+ CHECK(a1.a == 12);
+ CHECK(a1.b == 119);
+
+ CHECK(a2.a == 1);
+ CHECK(a2.b == 15);
+
+ CHECK(result.a == 13);
+ CHECK(result.b == 134);
+
return result;
}
@@ -78,6 +87,8 @@ int main (void)
/* { dg-output "12 119 1 15: 13 134" } */
printf("res: %d %d\n", res_dbl.a, res_dbl.b);
/* { dg-output "\nres: 13 134" } */
+ CHECK(res_dbl.a == 13);
+ CHECK(res_dbl.b == 134);
CHECK(ffi_prep_closure_loc(pcl, &cif, cls_struct_3byte_gn, NULL, code) == FFI_OK);
@@ -85,6 +96,8 @@ int main (void)
/* { dg-output "\n12 119 1 15: 13 134" } */
printf("res: %d %d\n", res_dbl.a, res_dbl.b);
/* { dg-output "\nres: 13 134" } */
+ CHECK(res_dbl.a == 13);
+ CHECK(res_dbl.b == 134);
exit(0);
}