Browse Source

Fix up most #include "tap.h" -> #include "tap/tap.h" in tests.

Rusty Russell 17 years ago
parent
commit
53edefb8b2
7 changed files with 7 additions and 7 deletions
  1. 1 1
      check_type/test/run.c
  2. 1 1
      container_of/test/run.c
  3. 1 1
      list/test/run.c
  4. 1 1
      noerr/test/run.c
  5. 1 1
      string/test/run.c
  6. 1 1
      talloc/test/run.c
  7. 1 1
      typesafe_cb/test/run.c

+ 1 - 1
check_type/test/run.c

@@ -1,5 +1,5 @@
 #include "check_type/check_type.h"
-#include "tap.h"
+#include "tap/tap.h"
 
 int main(int argc, char *argv[])
 {

+ 1 - 1
container_of/test/run.c

@@ -1,5 +1,5 @@
 #include "container_of/container_of.h"
-#include "tap.h"
+#include "tap/tap.h"
 
 struct foo {
 	int a;

+ 1 - 1
list/test/run.c

@@ -1,5 +1,5 @@
 #include "list/list.h"
-#include "tap.h"
+#include "tap/tap.h"
 #include "list/list.c"
 
 struct parent {

+ 1 - 1
noerr/test/run.c

@@ -1,5 +1,5 @@
 #include "noerr/noerr.h"
-#include "tap.h"
+#include "tap/tap.h"
 #include "noerr/noerr.c"
 #include <sys/types.h>
 #include <sys/stat.h>

+ 1 - 1
string/test/run.c

@@ -1,7 +1,7 @@
 #include <stdlib.h>
 #include <stdio.h>
 #include "string/string.h"
-#include "tap.h"
+#include "tap/tap.h"
 
 /* FIXME: ccanize */
 #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof(arr[0]))

+ 1 - 1
talloc/test/run.c

@@ -27,7 +27,7 @@
 
 #include "talloc/talloc.c"
 #include <stdbool.h>
-#include "tap.h"
+#include "tap/tap.h"
 
 #define torture_assert(test, expr, str)					\
 	ok(expr, "failure: %s [\n%s: Expression %s failed: %s\n]\n",	\

+ 1 - 1
typesafe_cb/test/run.c

@@ -1,6 +1,6 @@
 #include "typesafe_cb/typesafe_cb.h"
 #include <string.h>
-#include "tap.h"
+#include "tap/tap.h"
 
 static char dummy = 0;