Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
ccan
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mirror
ccan
Commits
53edefb8
Commit
53edefb8
authored
May 16, 2008
by
Rusty Russell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix up most #include "tap.h" -> #include "tap/tap.h" in tests.
parent
38f39568
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
7 deletions
+7
-7
check_type/test/run.c
check_type/test/run.c
+1
-1
container_of/test/run.c
container_of/test/run.c
+1
-1
list/test/run.c
list/test/run.c
+1
-1
noerr/test/run.c
noerr/test/run.c
+1
-1
string/test/run.c
string/test/run.c
+1
-1
talloc/test/run.c
talloc/test/run.c
+1
-1
typesafe_cb/test/run.c
typesafe_cb/test/run.c
+1
-1
No files found.
check_type/test/run.c
View file @
53edefb8
#include "check_type/check_type.h"
#include "tap.h"
#include "tap
/tap
.h"
int
main
(
int
argc
,
char
*
argv
[])
{
...
...
container_of/test/run.c
View file @
53edefb8
#include "container_of/container_of.h"
#include "tap.h"
#include "tap
/tap
.h"
struct
foo
{
int
a
;
...
...
list/test/run.c
View file @
53edefb8
#include "list/list.h"
#include "tap.h"
#include "tap
/tap
.h"
#include "list/list.c"
struct
parent
{
...
...
noerr/test/run.c
View file @
53edefb8
#include "noerr/noerr.h"
#include "tap.h"
#include "tap
/tap
.h"
#include "noerr/noerr.c"
#include <sys/types.h>
#include <sys/stat.h>
...
...
string/test/run.c
View file @
53edefb8
#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]))
...
...
talloc/test/run.c
View file @
53edefb8
...
...
@@ -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", \
...
...
typesafe_cb/test/run.c
View file @
53edefb8
#include "typesafe_cb/typesafe_cb.h"
#include <string.h>
#include "tap.h"
#include "tap
/tap
.h"
static
char
dummy
=
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment