On Thu, Jul 8, 2021 at 9:07 PM Siddhesh Poyarekar wrote: > > > diff --git a/malloc/Makefile b/malloc/Makefile > > index 37a9a4efab..b685ed6d61 100644 > > --- a/malloc/Makefile > > +++ b/malloc/Makefile > > @@ -42,6 +42,7 @@ tests := mallocbug tst-malloc tst-valloc tst-calloc tst-obstack \ > > tst-malloc-stats-cancellation \ > > tst-tcfree1 tst-tcfree2 tst-tcfree3 \ > > tst-safe-linking \ > > + tst-mallocalign1 \ > > > > Please remove the trailing '\'. OK otherwise. > Changes in the v2 patch 1. Add a comment in malloc/tst-mallocalign1.c to indicate that it is used to verify that MALLOC_ALIGNMENT is honored by malloc. 2. Include in malloc-size.h after SIZE_SZ is defined since may use SIZE_SZ. BTW, I kept the trailing '\' since it is used in all other places in malloc/Makefile. OK for master? Thanks. -- H.J.