X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Fcontainer_of%2Ftest%2Frun.c;h=5da440a1e5d09ca05c3c36f03d04a149d694a9ab;hb=6109a0a6140acbbfe5e998f7d7ea1215f035cb90;hp=96ef483c55879e36df948a82f5af847c0dee9df1;hpb=578da7e7b6265153fa0519035fc52a086a711ac0;p=ccan diff --git a/ccan/container_of/test/run.c b/ccan/container_of/test/run.c index 96ef483c..5da440a1 100644 --- a/ccan/container_of/test/run.c +++ b/ccan/container_of/test/run.c @@ -12,7 +12,7 @@ int main(int argc, char *argv[]) int *intp = &foo.a; char *charp = &foo.b; - plan_tests(6); + plan_tests(8); ok1(container_of(intp, struct foo, a) == &foo); ok1(container_of(charp, struct foo, b) == &foo); ok1(container_of_var(intp, &foo, a) == &foo); @@ -20,5 +20,7 @@ int main(int argc, char *argv[]) ok1(container_off(struct foo, a) == 0); ok1(container_off(struct foo, b) == offsetof(struct foo, b)); + ok1(container_off_var(&foo, a) == 0); + ok1(container_off_var(&foo, b) == offsetof(struct foo, b)); return exit_status(); }