]> git.ozlabs.org Git - ccan/blobdiff - ccan/grab_file/test/run-grab.c
antithread, foreach, grab_file, hashtable, str_talloc: fix _info depends.
[ccan] / ccan / grab_file / test / run-grab.c
index 357a88b328d39d2fd59d5698886cfafb94f0f1cf..67be97c1b7b512778df691fdecd70af4cf7fbaed 100644 (file)
@@ -1,14 +1,13 @@
 /* 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>
 
 int 
 main(int argc, char *argv[])
@@ -21,12 +20,14 @@ main(int argc, char *argv[])
        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"));
+       ok1(!strcmp(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 */"));
+       ok1(!strcmp(split[i-1], "/* End of grab_file() test */"));
        if (stat("test/run-grab.c", &st) != 0) 
-               err(1, "Could not stat self");
+               /* 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;