block08: Use local include

Update #3818.
This commit is contained in:
Sebastian Huber
2019-11-12 09:46:42 +01:00
parent 37d509b249
commit 6da85f49ea
14 changed files with 14 additions and 14 deletions

View File

@@ -91,7 +91,7 @@ block08_SOURCES = block08/init.c block08/system.h \
block08/bdbuf_test4_1.c block08/bdbuf_test4_2.c \ block08/bdbuf_test4_1.c block08/bdbuf_test4_2.c \
block08/bdbuf_test4_3.c block08/bdbuf_test4_3.c
block08_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_block08) \ block08_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_block08) \
$(support_includes) -I$(top_srcdir)/block08 $(support_includes)
endif endif
if TEST_block09 if TEST_block09

View File

@@ -30,7 +30,7 @@
#include "config.h" #include "config.h"
#endif #endif
#include <bdbuf_tests.h> #include "bdbuf_tests.h"
static rtems_task bdbuf_test1_1_thread1(rtems_task_argument arg); static rtems_task bdbuf_test1_1_thread1(rtems_task_argument arg);

View File

@@ -32,7 +32,7 @@
#include "config.h" #include "config.h"
#endif #endif
#include <bdbuf_tests.h> #include "bdbuf_tests.h"
static rtems_task bdbuf_test1_2_thread1(rtems_task_argument arg); static rtems_task bdbuf_test1_2_thread1(rtems_task_argument arg);
static rtems_task bdbuf_test1_2_thread2(rtems_task_argument arg); static rtems_task bdbuf_test1_2_thread2(rtems_task_argument arg);

View File

@@ -33,7 +33,7 @@
#include "config.h" #include "config.h"
#endif #endif
#include <bdbuf_tests.h> #include "bdbuf_tests.h"
static rtems_task bdbuf_test1_3_thread1(rtems_task_argument arg); static rtems_task bdbuf_test1_3_thread1(rtems_task_argument arg);
static rtems_task bdbuf_test1_3_thread2(rtems_task_argument arg); static rtems_task bdbuf_test1_3_thread2(rtems_task_argument arg);

View File

@@ -30,7 +30,7 @@
#include "config.h" #include "config.h"
#endif #endif
#include <bdbuf_tests.h> #include "bdbuf_tests.h"
static rtems_task bdbuf_test1_4_thread1(rtems_task_argument arg); static rtems_task bdbuf_test1_4_thread1(rtems_task_argument arg);
static rtems_task bdbuf_test1_4_thread2(rtems_task_argument arg); static rtems_task bdbuf_test1_4_thread2(rtems_task_argument arg);

View File

@@ -29,7 +29,7 @@
#include "config.h" #include "config.h"
#endif #endif
#include <bdbuf_tests.h> #include "bdbuf_tests.h"
static rtems_task bdbuf_test1_5_thread1(rtems_task_argument arg); static rtems_task bdbuf_test1_5_thread1(rtems_task_argument arg);
static rtems_task bdbuf_test1_5_thread2(rtems_task_argument arg); static rtems_task bdbuf_test1_5_thread2(rtems_task_argument arg);

View File

@@ -32,7 +32,7 @@
#include "config.h" #include "config.h"
#endif #endif
#include <bdbuf_tests.h> #include "bdbuf_tests.h"
static rtems_task bdbuf_test2_1_thread1(rtems_task_argument arg); static rtems_task bdbuf_test2_1_thread1(rtems_task_argument arg);
static rtems_task bdbuf_test2_1_thread2(rtems_task_argument arg); static rtems_task bdbuf_test2_1_thread2(rtems_task_argument arg);

View File

@@ -35,7 +35,7 @@
#include "config.h" #include "config.h"
#endif #endif
#include <bdbuf_tests.h> #include "bdbuf_tests.h"
static rtems_task bdbuf_test2_2_thread1(rtems_task_argument arg); static rtems_task bdbuf_test2_2_thread1(rtems_task_argument arg);
static rtems_task bdbuf_test2_2_thread2(rtems_task_argument arg); static rtems_task bdbuf_test2_2_thread2(rtems_task_argument arg);

View File

@@ -23,7 +23,7 @@
#include "config.h" #include "config.h"
#endif #endif
#include <bdbuf_tests.h> #include "bdbuf_tests.h"
static rtems_task bdbuf_test3_1_thread1(rtems_task_argument arg); static rtems_task bdbuf_test3_1_thread1(rtems_task_argument arg);
static rtems_task bdbuf_test3_1_thread2(rtems_task_argument arg); static rtems_task bdbuf_test3_1_thread2(rtems_task_argument arg);

View File

@@ -24,7 +24,7 @@
#include "config.h" #include "config.h"
#endif #endif
#include <bdbuf_tests.h> #include "bdbuf_tests.h"
static rtems_task bdbuf_test3_2_thread1(rtems_task_argument arg); static rtems_task bdbuf_test3_2_thread1(rtems_task_argument arg);
static rtems_task bdbuf_test3_2_thread2(rtems_task_argument arg); static rtems_task bdbuf_test3_2_thread2(rtems_task_argument arg);

View File

@@ -29,7 +29,7 @@
#include "config.h" #include "config.h"
#endif #endif
#include <bdbuf_tests.h> #include "bdbuf_tests.h"
static rtems_task bdbuf_test3_3_thread1(rtems_task_argument arg); static rtems_task bdbuf_test3_3_thread1(rtems_task_argument arg);
static rtems_task bdbuf_test3_3_thread2(rtems_task_argument arg); static rtems_task bdbuf_test3_3_thread2(rtems_task_argument arg);

View File

@@ -25,7 +25,7 @@
#include "config.h" #include "config.h"
#endif #endif
#include <bdbuf_tests.h> #include "bdbuf_tests.h"
static rtems_task bdbuf_test4_1_thread1(rtems_task_argument arg); static rtems_task bdbuf_test4_1_thread1(rtems_task_argument arg);
static rtems_task bdbuf_test4_1_thread2(rtems_task_argument arg); static rtems_task bdbuf_test4_1_thread2(rtems_task_argument arg);

View File

@@ -26,7 +26,7 @@
#include "config.h" #include "config.h"
#endif #endif
#include <bdbuf_tests.h> #include "bdbuf_tests.h"
static rtems_task bdbuf_test4_2_thread1(rtems_task_argument arg); static rtems_task bdbuf_test4_2_thread1(rtems_task_argument arg);
static rtems_task bdbuf_test4_2_thread2(rtems_task_argument arg); static rtems_task bdbuf_test4_2_thread2(rtems_task_argument arg);

View File

@@ -24,7 +24,7 @@
#include "config.h" #include "config.h"
#endif #endif
#include <bdbuf_tests.h> #include "bdbuf_tests.h"
static rtems_task bdbuf_test4_3_thread1(rtems_task_argument arg); static rtems_task bdbuf_test4_3_thread1(rtems_task_argument arg);
static rtems_task bdbuf_test4_3_thread2(rtems_task_argument arg); static rtems_task bdbuf_test4_3_thread2(rtems_task_argument arg);