]> git.ozlabs.org Git - ccan/blobdiff - tools/run_tests.c
Hack to fix test builds, by ignoring deps with no .o's (ie.
[ccan] / tools / run_tests.c
index eab42add8dfb06a6cf623181d37a30a7b3811298..105a3e4b10b688c8466174414101b0ee1996aaaf 100644 (file)
@@ -4,9 +4,11 @@
 #include <dirent.h>
 #include <assert.h>
 #include <unistd.h>
+#include <sys/stat.h>
+#include <errno.h>
 #include "ccan/tap/tap.h"
 #include "ccan/talloc/talloc.h"
-#include "ccan/string/string.h"
+#include "ccan/str/str.h"
 #include "tools.h"
 
 /* FIXME: Use build bug later. */
@@ -106,12 +108,20 @@ static int build(const char *dir, const char *name, int fail)
        char *externals = talloc_strdup(name, "");
        char **deps;
 
-       for (deps = get_deps(objs, dir); *deps; deps++) {
+       for (deps = get_deps(talloc_autofree_context(), dir, true); *deps; deps++) {
+               char *newobj;
+               struct stat st;
+
                if (!strstarts(*deps, "ccan/"))
                        continue;
 
                /* ccan/foo -> ccan/foo.o */
-               externals = talloc_asprintf_append(externals, " %s.o", *deps);
+               newobj = talloc_asprintf(name, "%s.o", *deps);
+
+               /* Only if it exists.  Makefile sorts this out. */
+               if (stat(newobj, &st) == 0 || errno != ENOENT)
+                       externals = talloc_asprintf_append(externals,
+                                                          " %s", newobj);
        }
 
        cmd = talloc_asprintf(name, "gcc " CFLAGS " %s -o %s %s %s%s%s",