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
0c532d80
Commit
0c532d80
authored
Sep 28, 2009
by
Rusty Russell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More test fixes.
parent
ad35219d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
3 deletions
+9
-3
ccan/grab_file/test/run-grab.c
ccan/grab_file/test/run-grab.c
+2
-2
tools/ccanlint/compulsory_tests/has_tests.c
tools/ccanlint/compulsory_tests/has_tests.c
+1
-1
tools/ccanlint/tests/compile_tests.c
tools/ccanlint/tests/compile_tests.c
+4
-0
tools/ccanlint/tests/run_tests.c
tools/ccanlint/tests/run_tests.c
+2
-0
No files found.
ccan/grab_file/test/run-grab.c
View file @
0c532d80
...
...
@@ -18,14 +18,14 @@ 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
)
if
(
stat
(
"test/run-grab.c"
,
&
st
)
!=
0
)
err
(
1
,
"Could not stat self"
);
ok1
(
st
.
st_size
==
length
+
i
);
...
...
tools/ccanlint/compulsory_tests/has_tests.c
View file @
0c532d80
...
...
@@ -123,7 +123,7 @@ static void handle_no_tests(struct manifest *m, void *check_result)
}
struct
ccanlint
has_tests
=
{
.
name
=
"
No
tests"
,
.
name
=
"
Has
tests"
,
.
check
=
check_has_tests
,
.
describe
=
describe_has_tests
,
.
handle
=
handle_no_tests
,
...
...
tools/ccanlint/tests/compile_tests.c
View file @
0c532d80
...
...
@@ -39,6 +39,10 @@ static char *obj_list(const struct manifest *m, bool link_with_module)
if
(
link_with_module
)
list
=
talloc_asprintf_append
(
list
,
" ../%s.o"
,
m
->
basename
);
/* Other ccan modules. */
list_for_each
(
&
m
->
dep_objs
,
i
,
list
)
list
=
talloc_asprintf_append
(
list
,
" %s"
,
i
->
name
);
return
list
;
}
...
...
tools/ccanlint/tests/run_tests.c
View file @
0c532d80
...
...
@@ -77,6 +77,8 @@ static const char *describe_run_tests(struct manifest *m,
return
talloc_append_string
(
descrip
,
check_result
);
}
/* FIXME: Handle by offering to run under debugger... */
struct
ccanlint
run_tests
=
{
.
name
=
"run and api tests run successfully"
,
.
score
=
score_run_tests
,
...
...
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