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
914fa0bf
Commit
914fa0bf
authored
Apr 07, 2009
by
Rusty Russell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix struct line spacing (opening bracked on same line is Linux standard)
parent
6b73d119
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
tools/run_tests.c
tools/run_tests.c
+3
-6
No files found.
tools/run_tests.c
View file @
914fa0bf
...
...
@@ -16,23 +16,20 @@ static struct test *tests = NULL;
static
struct
obj
*
objs
=
NULL
;
static
int
verbose
;
struct
test_type
{
struct
test_type
{
const
char
*
name
;
void
(
*
buildfn
)(
const
char
*
dir
,
struct
test_type
*
t
,
const
char
*
name
,
const
char
*
apiobj
);
void
(
*
runfn
)(
const
char
*
name
);
};
struct
test
{
struct
test
{
struct
test
*
next
;
struct
test_type
*
type
;
char
*
name
;
};
struct
obj
{
struct
obj
{
struct
obj
*
next
;
bool
generate
;
char
*
name
;
...
...
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