X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=tools%2Fccanlint%2Ffile_analysis.c;h=d17940a5d494b7763b72c8c34fbbe99848de4f2b;hb=ed776b635be5cde9bcda9569789fba487f4e7cca;hp=6ee74de884c68500b0a29b44e4b8d33f33538379;hpb=c906ef097b6af429d533b49c2773fec871eee817;p=ccan-lca-2011.git diff --git a/tools/ccanlint/file_analysis.c b/tools/ccanlint/file_analysis.c index 6ee74de..d17940a 100644 --- a/tools/ccanlint/file_analysis.c +++ b/tools/ccanlint/file_analysis.c @@ -4,6 +4,8 @@ #include #include #include +#include +#include #include "../tools.h" #include #include @@ -139,11 +141,36 @@ static void add_files(struct manifest *m, const char *dir) closedir(d); } +static int cmp_names(struct ccan_file *const *a, struct ccan_file *const *b, + void *unused) +{ + return strcmp((*a)->name, (*b)->name); +} + +static void sort_files(struct list_head *list) +{ + struct ccan_file **files = NULL, *f; + unsigned int i, num; + + num = 0; + while ((f = list_top(list, struct ccan_file, list)) != NULL) { + files = talloc_realloc(NULL, files, struct ccan_file *, num+1); + files[num++] = f; + list_del(&f->list); + } + asort(files, num, cmp_names, NULL); + + for (i = 0; i < num; i++) + list_add_tail(list, &files[i]->list); + talloc_free(files); +} + struct manifest *get_manifest(const void *ctx, const char *dir) { struct manifest *m = talloc(ctx, struct manifest); char *olddir; unsigned int len; + struct list_head *list; m->info_file = NULL; list_head_init(&m->c_files); @@ -191,6 +218,11 @@ struct manifest *get_manifest(const void *ctx, const char *dir) add_files(m, ""); + /* Nicer to run tests in a predictable order. */ + foreach_ptr(list, &m->api_tests, &m->run_tests, &m->compile_ok_tests, + &m->compile_fail_tests) + sort_files(list); + if (chdir(olddir) != 0) err(1, "Returning to original directory '%s'", olddir); talloc_free(olddir);