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
dc199bb0
Commit
dc199bb0
authored
Jan 17, 2011
by
Brad Hards
Committed by
Rusty Russell
Jan 17, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ccanlint: add test case for metadata summary line on a single separate line.
parent
23e46034
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
58 additions
and
0 deletions
+58
-0
tools/ccanlint/tests/info_summary_single_line.c
tools/ccanlint/tests/info_summary_single_line.c
+58
-0
No files found.
tools/ccanlint/tests/info_summary_single_line.c
0 → 100644
View file @
dc199bb0
#include <tools/ccanlint/ccanlint.h>
#include <tools/tools.h>
#include <stdio.h>
#include <ccan/talloc/talloc.h>
#include <ccan/str/str.h>
/* Summary line is form '<identifier> - ' (spaces for 'struct foo -') */
/* slightly modified from doc_extract-core.c */
static
unsigned
int
is_summary_line
(
const
char
*
line
)
{
unsigned
int
id_len
;
id_len
=
strspn
(
line
,
IDENT_CHARS
" *"
);
if
(
id_len
==
0
)
return
0
;
if
(
strspn
(
line
,
" "
)
==
id_len
)
return
0
;
if
(
!
strstarts
(
line
+
id_len
-
1
,
" - "
))
return
0
;
return
id_len
-
1
;
}
static
void
check_info_summary_single_line
(
struct
manifest
*
m
,
bool
keep
,
unsigned
int
*
timeleft
,
struct
score
*
score
)
{
int
i
=
0
;
get_ccan_line_info
(
m
->
info_file
);
score
->
total
=
1
;
for
(
i
=
0
;
i
<
m
->
info_file
->
num_lines
;
++
i
)
{
if
(
is_summary_line
(
m
->
info_file
->
lines
[
i
]))
{
if
(
strspn
(
m
->
info_file
->
lines
[
i
+
1
],
" *"
)
==
strlen
(
m
->
info_file
->
lines
[
i
+
1
]))
{
/* valid summary line */
score
->
error
=
NULL
;
score
->
pass
=
true
;
score
->
score
=
1
;
}
else
{
/* invalid summary line - line following summary line should be empty */
score
->
pass
=
false
;
score
->
score
=
0
;
score
->
error
=
"invalid summary line - not on a single line:"
;
score_file_error
(
score
,
m
->
info_file
,
i
+
1
,
"summary is not on a single line"
);
}
break
;
}
}
}
struct
ccanlint
info_summary_single_line
=
{
.
key
=
"info_summary_single_line"
,
.
name
=
"Module has a single line summary in _info"
,
.
check
=
check_info_summary_single_line
,
.
needs
=
"info_exists"
};
REGISTER_TEST
(
info_summary_single_line
);
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