]> git.ozlabs.org Git - ccan/blobdiff - ccan/grab_file/test/run-grab.c
Fix tests: path change because they're now run under ccanlint (from their dir)
[ccan] / ccan / grab_file / test / run-grab.c
index dc25c0b0f32b406f2eb57bad92e8e3ddef1e86e2..baaf506642134aafe1de920c830c4ab288db2640 100644 (file)
@@ -1,14 +1,14 @@
 /* This is test for grab_file() function
  */
-#include       "grab_file/grab_file.h"
-#include       <stdlib.h>
-#include       <stdio.h>
-#include       <err.h>
-#include       <sys/stat.h>
-#include       "grab_file/grab_file.c"
-#include       "tap/tap.h"
-#include       "str_talloc/str_talloc.h"
-#include       "str/str.h"
+#include <ccan/grab_file/grab_file.h>
+#include <stdlib.h>
+#include <stdio.h>
+#include <err.h>
+#include <sys/stat.h>
+#include <ccan/grab_file/grab_file.c>
+#include <ccan/tap/tap.h>
+#include <ccan/str_talloc/str_talloc.h>
+#include <ccan/str/str.h>
 
 int 
 main(int argc, char *argv[])
@@ -18,15 +18,17 @@ main(int argc, char *argv[])
        int             length;
        struct          stat st;
 
-       str = grab_file(NULL, "ccan/grab_file/test/run-grab.c", NULL);
+       str = grab_file(NULL, "test/run-grab.c", NULL);
        split = strsplit(NULL, str, "\n", NULL);
        length = strlen(split[0]);
        ok1(streq(split[0], "/* This is test for grab_file() function"));
        for (i = 1; split[i]; i++)      
                length += strlen(split[i]);
        ok1(streq(split[i-1], "/* End of grab_file() test */"));
-       if (stat("ccan/grab_file/test/run-grab.c", &st) != 0) 
-               err(1, "Could not stat self");
+       if (stat("test/run-grab.c", &st) != 0) 
+               /* FIXME: ditto */
+               if (stat("ccan/grab_file/test/run-grab.c", &st) != 0) 
+                       err(1, "Could not stat self");
        ok1(st.st_size == length + i);
        
        return 0;