Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
girara
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
6
Issues
6
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
pwmt
girara
Commits
226478f4
Commit
226478f4
authored
May 21, 2018
by
Sebastian Ramacher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix build
parent
b844692f
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
5 additions
and
12 deletions
+5
-12
tests/test_config.c
tests/test_config.c
+1
-1
tests/test_datastructures.c
tests/test_datastructures.c
+1
-1
tests/test_session.c
tests/test_session.c
+1
-1
tests/test_template.c
tests/test_template.c
+1
-1
tests/test_utils.c
tests/test_utils.c
+1
-1
tests/tests.h
tests/tests.h
+0
-7
No files found.
tests/test_config.c
View file @
226478f4
...
...
@@ -49,7 +49,7 @@ START_TEST(test_config_parse) {
girara_session_destroy
(
session
);
}
END_TEST
Suite
*
suite_config
(
void
)
static
Suite
*
suite_config
(
void
)
{
TCase
*
tcase
=
NULL
;
Suite
*
suite
=
suite_create
(
"Config"
);
...
...
tests/test_datastructures.c
View file @
226478f4
...
...
@@ -361,7 +361,7 @@ START_TEST(test_datastructures_list_prepend) {
girara_list_free
(
list
);
}
END_TEST
Suite
*
suite_datastructures
(
void
)
static
Suite
*
suite_datastructures
(
void
)
{
TCase
*
tcase
=
NULL
;
Suite
*
suite
=
suite_create
(
"Datastructures"
);
...
...
tests/test_session.c
View file @
226478f4
...
...
@@ -19,7 +19,7 @@ START_TEST(test_init) {
girara_session_destroy
(
session
);
}
END_TEST
Suite
*
suite_session
(
void
)
static
Suite
*
suite_session
(
void
)
{
TCase
*
tcase
=
NULL
;
Suite
*
suite
=
suite_create
(
"Session"
);
...
...
tests/test_template.c
View file @
226478f4
...
...
@@ -122,7 +122,7 @@ START_TEST(test_full_2) {
g_object_unref
(
obj
);
}
END_TEST
Suite
*
suite_template
(
void
)
static
Suite
*
suite_template
(
void
)
{
TCase
*
tcase
=
NULL
;
Suite
*
suite
=
suite_create
(
"Template"
);
...
...
tests/test_utils.c
View file @
226478f4
...
...
@@ -256,7 +256,7 @@ START_TEST(test_strings_replace_substrings_3) {
g_free
(
result
);
}
END_TEST
Suite
*
suite_utils
(
void
)
static
Suite
*
suite_utils
(
void
)
{
TCase
*
tcase
=
NULL
;
Suite
*
suite
=
suite_create
(
"Utils"
);
...
...
tests/tests.h
View file @
226478f4
...
...
@@ -3,13 +3,6 @@
#ifndef GIRARA_TESTS_H
#define GIRARA_TESTS_H
Suite
*
suite_utils
(
void
);
Suite
*
suite_datastructures
(
void
);
Suite
*
suite_settings
(
void
);
Suite
*
suite_session
(
void
);
Suite
*
suite_config
(
void
);
Suite
*
suite_template
(
void
);
void
setup
(
void
);
#endif
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