Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libnux
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EBRAINS RI
Tech Hub
Apps
BrainScaleS
libnux
Commits
1c1592ad
Commit
1c1592ad
authored
6 years ago
by
Philipp Spilger
Browse files
Options
Downloads
Patches
Plain Diff
Fix bool test on use of _Bool instead of __bool as bool
Depends-On: 5615 Change-Id: Idf9e5a42695da2903eca16c5d024902b113d5a80
parent
a81ccc81
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/test_bool.c
+2
-2
2 additions, 2 deletions
test/test_bool.c
with
2 additions
and
2 deletions
test/test_bool.c
+
2
−
2
View file @
1c1592ad
...
...
@@ -13,8 +13,8 @@
void
test_size
()
{
libnux_testcase_begin
(
"size ==
4
B"
);
libnux_test_equal
(
sizeof
(
bool
),
4
);
libnux_testcase_begin
(
"size ==
1
B"
);
libnux_test_equal
(
sizeof
(
bool
),
1
);
libnux_testcase_end
();
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment