X-Git-Url: https://git.draconx.ca/gitweb/cdecl99.git/blobdiff_plain/b8b1c8789189cf94ec1e1a15623531ebecc3eb85..8ba5dbed14fc225893f8ad4b935e0e4b9f77db78:/test/randomdecl.c diff --git a/test/randomdecl.c b/test/randomdecl.c index 8e40448..9e9271e 100644 --- a/test/randomdecl.c +++ b/test/randomdecl.c @@ -1,19 +1,19 @@ /* - * Generate random C declarations for testing. - * Copyright © 2011 Nick Bowler + * Generate random C declarations for testing. + * Copyright © 2012, 2020, 2022 Nick Bowler * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . */ #include @@ -54,11 +54,14 @@ static void print_usage(FILE *f) static void print_help(void) { + const struct option *opt; + print_usage(stdout); - puts("Detailed help coming soon."); + puts("Generate random C declarations for testing.\n"); + test_print_options(lopts); } -static struct cdecl *random_decl(struct gen_rng *rng) +static struct cdecl *random_decl(struct test_rng *rng) { struct cdecl *decl; unsigned flags = 0; @@ -82,7 +85,7 @@ static struct cdecl *random_decl(struct gen_rng *rng) int main(int argc, char **argv) { const char *seed = "", *count_str = NULL; - struct gen_rng *rng; + struct test_rng *rng; struct cdecl *decl; unsigned long count = 0; int opt, mode = MODE_CDECL; @@ -121,7 +124,7 @@ int main(int argc, char **argv) return EXIT_FAILURE; } - rng = gen_alloc_rng(seed); + rng = test_rng_alloc(seed); if (!rng) return EXIT_FAILURE; @@ -139,7 +142,7 @@ int main(int argc, char **argv) free(decl); } - gen_free_rng(rng); + test_rng_free(rng); return EXIT_SUCCESS; }