Re: [PATCH 5/9] configurator: Mark non-Windows tests MAY_NOT_COMPILE
David Gibson <[email protected]> Tue, 20 Sep 2016 15:06:23 +1000
| Newsgroups | org.ozlabs.lists.ccan |
|---|---|
| Message-ID | <20160920050623.GO20488@umbus> |
On Sun, Sep 18, 2016 at 06:52:02PM -0600, Kevin Locke wrote: > Several of the EXECUTABLE tests depend on headers not available on > Windows. Mark these tests MAY_NOT_COMPILE to handle this. > > Signed-off-by: Kevin Locke <[email protected]> Reviewed-by: David Gibson <[email protected]> > --- > tools/configurator/configurator.c | 12 ++++++------ > 1 file changed, 6 insertions(+), 6 deletions(-) > > diff --git a/tools/configurator/configurator.c b/tools/configurator/configurator.c > index e95fd70..0307635 100644 > --- a/tools/configurator/configurator.c > +++ b/tools/configurator/configurator.c > @@ -72,7 +72,7 @@ struct test { > }; > > static struct test tests[] = { > - { "HAVE_32BIT_OFF_T", DEFINES_EVERYTHING|EXECUTE, NULL, NULL, > + { "HAVE_32BIT_OFF_T", DEFINES_EVERYTHING|EXECUTE|MAY_NOT_COMPILE, NULL, NULL, > "#include <sys/types.h>\n" > "int main(void) {\n" > " return sizeof(off_t) == 4 ? 0 : 1;\n" > @@ -177,7 +177,7 @@ static struct test tests[] = { > { "HAVE_COMPOUND_LITERALS", INSIDE_MAIN, NULL, NULL, > "int *foo = (int[]) { 1, 2, 3, 4 };\n" > "return foo[0] ? 0 : 1;" }, > - { "HAVE_FCHDIR", DEFINES_EVERYTHING|EXECUTE, NULL, NULL, > + { "HAVE_FCHDIR", DEFINES_EVERYTHING|EXECUTE|MAY_NOT_COMPILE, NULL, NULL, > "#include <sys/types.h>\n" > "#include <sys/stat.h>\n" > "#include <fcntl.h>\n" > @@ -198,7 +198,7 @@ static struct test tests[] = { > " if (arg == 4)\n" > " warnx(\"warn %u\", arg);\n" > "}\n" }, > - { "HAVE_FILE_OFFSET_BITS", DEFINES_EVERYTHING|EXECUTE, > + { "HAVE_FILE_OFFSET_BITS", DEFINES_EVERYTHING|EXECUTE|MAY_NOT_COMPILE, > "HAVE_32BIT_OFF_T", NULL, > "#define _FILE_OFFSET_BITS 64\n" > "#include <sys/types.h>\n" > @@ -244,7 +244,7 @@ static struct test tests[] = { > "static void *func(int fd) {\n" > " return mmap(0, 65536, PROT_READ, MAP_SHARED, fd, 0);\n" > "}" }, > - { "HAVE_PROC_SELF_MAPS", DEFINES_EVERYTHING|EXECUTE, NULL, NULL, > + { "HAVE_PROC_SELF_MAPS", DEFINES_EVERYTHING|EXECUTE|MAY_NOT_COMPILE, NULL, NULL, > "#include <sys/types.h>\n" > "#include <sys/stat.h>\n" > "#include <fcntl.h>\n" > @@ -329,7 +329,7 @@ static struct test tests[] = { > "-Werror -fopenmp" }, > { "HAVE_VALGRIND_MEMCHECK_H", OUTSIDE_MAIN, NULL, NULL, > "#include <valgrind/memcheck.h>\n" }, > - { "HAVE_UCONTEXT", DEFINES_EVERYTHING|EXECUTE, > + { "HAVE_UCONTEXT", DEFINES_EVERYTHING|EXECUTE|MAY_NOT_COMPILE, > NULL, NULL, > "#include <ucontext.h>\n" > "static int x = 0;\n" > @@ -350,7 +350,7 @@ static struct test tests[] = { > " return (x == 3) ? 0 : 1;\n" > "}\n" > }, > - { "HAVE_POINTER_SAFE_MAKECONTEXT", DEFINES_EVERYTHING|EXECUTE, > + { "HAVE_POINTER_SAFE_MAKECONTEXT", DEFINES_EVERYTHING|EXECUTE|MAY_NOT_COMPILE, > "HAVE_UCONTEXT", NULL, > "#include <stddef.h>\n" > "#include <ucontext.h>\n" -- David Gibson | I'll have my music baroque, and my code david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_ | _way_ _around_! http://www.ozlabs.org/~dgibson _______________________________________________ ccan mailing list [email protected] https://lists.ozlabs.org/listinfo/ccan
signature.asc
(application/pgp-signature, 819 B)
-----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCAAGBQJX4MPPAAoJEGw4ysog2bOSf+QP+wZfYvs0xIQh4VgQHi/DElYu abzbtGCJHZnveuHfYAjD+TJ4pxeeplSXoboqiSFEd1kjnil23y6bnKxrUwL/s+K7 umL9feaZho1Zw6eDQUC/Srdqkg0R3mJiXIHZhCcb1daHr8SgKN38uYz8/SF9Ou6A q8BUHO285U+4dzGSLsLIG1TBK5z2ib/mnnP6TM1Z72H1nunIsKs73fe6mcGFVYd0 6nbvqQ2ZPpkb97G3uzO/LaTGTdK2LBYCxARl3SYc5SUytmjJ7On6nILwcYAXev9u RrCFI+6YDmvxB3wzX3KM1ySxq6wDNM6r+LM76beJeAlll3u7O+onEEJStODmb/wV QS5Fk6mviEGtPyPC78Fh7515kTzPcRn9NFKI5I5Q8wqj8QlJomdOTxrwrn3fWhva gnUcLHvGpRgpVB8G50YEWp4CH43ny+UA5dPo5ZGr2aDKCxcwOqbmzUsEKolSZbEe PtcN2M8h9XM2OnVkZAHhEuemM6XQCNrZtw3JkKkDgRdRBPNEXrlnYfpSNEwmHCrt fnm9X5sqvoJ+wfSqN9iX++S2QxTUizoIfyF2RZ7+Ib5sXBFlbbegIImiAJ+eKEeP q/IKoksj2DEYiWVFEQSP8J4vaYx/yNG0Zp56gxMQpdHXH831nXC5dwm9zabTIyx9 +IHPapH686DUz6vTnoSA =EKGH -----END PGP SIGNATURE-----