Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alberto Ruiz Garcia
Firmware
Commits
8d879909
Commit
8d879909
authored
5 years ago
by
Julian Oes
Committed by
Daniel Agar
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
lockstep_scheduler: convert test to gtest
parent
16240547
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
platforms/posix/src/lockstep_scheduler/test/src/lockstep_scheduler_test.cpp
+15
-17
15 additions, 17 deletions
...c/lockstep_scheduler/test/src/lockstep_scheduler_test.cpp
with
15 additions
and
17 deletions
platforms/posix/src/lockstep_scheduler/test/src/lockstep_scheduler_test.cpp
+
15
−
17
View file @
8d879909
#include
<lockstep_scheduler/lockstep_scheduler.h>
#include
<
cassert
>
#include
<
gtest/gtest.h
>
#include
<thread>
#include
<atomic>
#include
<random>
...
...
@@ -48,7 +48,7 @@ void test_absolute_time()
{
LockstepScheduler
ls
;
ls
.
set_absolute_time
(
some_time_us
);
assert
(
ls
.
get_absolute_time
()
==
some_time_us
);
EXPECT_EQ
(
ls
.
get_absolute_time
()
,
some_time_us
);
}
void
test_condition_timing_out
()
...
...
@@ -70,10 +70,10 @@ void test_condition_timing_out()
// Use a thread to wait for condition while we already have the lock.
// This ensures the synchronization happens in the right order.
TestThread
thread
([
&
ls
,
&
cond
,
&
lock
,
&
should_have_timed_out
]()
{
assert
(
ls
.
cond_timedwait
(
&
cond
,
&
lock
,
some_time_us
+
1000
)
==
ETIMEDOUT
);
assert
(
should_have_timed_out
);
EXPECT_EQ
(
ls
.
cond_timedwait
(
&
cond
,
&
lock
,
some_time_us
+
1000
)
,
ETIMEDOUT
);
EXPECT_TRUE
(
should_have_timed_out
);
// It should be re-locked afterwards, so we should be able to unlock it.
assert
(
pthread_mutex_unlock
(
&
lock
)
==
0
);
EXPECT_EQ
(
pthread_mutex_unlock
(
&
lock
)
,
0
);
});
ls
.
set_absolute_time
(
some_time_us
+
500
);
...
...
@@ -106,9 +106,9 @@ void test_locked_semaphore_getting_unlocked()
TestThread
thread
([
&
ls
,
&
cond
,
&
lock
]()
{
ls
.
set_absolute_time
(
some_time_us
+
500
);
assert
(
ls
.
cond_timedwait
(
&
cond
,
&
lock
,
some_time_us
+
1000
)
==
0
);
EXPECT_EQ
(
ls
.
cond_timedwait
(
&
cond
,
&
lock
,
some_time_us
+
1000
)
,
0
);
// It should be re-locked afterwards, so we should be able to unlock it.
assert
(
pthread_mutex_unlock
(
&
lock
)
==
0
);
EXPECT_EQ
(
pthread_mutex_unlock
(
&
lock
)
,
0
);
});
pthread_mutex_lock
(
&
lock
);
...
...
@@ -135,7 +135,7 @@ public:
~
TestCase
()
{
assert
(
_is_done
);
EXPECT_TRUE
(
_is_done
);
pthread_mutex_destroy
(
&
_lock
);
pthread_cond_destroy
(
&
_cond
);
}
...
...
@@ -168,13 +168,13 @@ public:
_is_done
=
true
;
// We can be sure that this triggers.
_thread
->
join
(
_ls
);
assert
(
_result
==
0
);
EXPECT_EQ
(
_result
,
0
);
}
else
if
(
timeout_reached
)
{
_is_done
=
true
;
_thread
->
join
(
_ls
);
assert
(
_result
==
ETIMEDOUT
);
EXPECT_EQ
(
_result
,
ETIMEDOUT
);
}
}
private
:
...
...
@@ -302,21 +302,19 @@ void test_usleep()
step
=
Step
::
BeforeUsleep
;
assert
(
ls
.
usleep_until
(
some_time_us
+
1000
)
==
0
);
assert
(
step
==
Step
::
UsleepTriggered
);
EXPECT_EQ
(
ls
.
usleep_until
(
some_time_us
+
1000
)
,
0
);
EXPECT_EQ
(
step
,
Step
::
UsleepTriggered
);
thread
.
join
(
ls
);
}
int
main
(
int
/*argc*/
,
char
**
/*argv*/
)
TEST
(
LockstepScheduler
,
All
)
{
for
(
unsigned
iteration
=
1
;
iteration
<=
100
00
;
++
iteration
)
{
std
::
cout
<<
"Test iteration: "
<<
iteration
<<
"
\n
"
;
for
(
unsigned
iteration
=
1
;
iteration
<=
100
;
++
iteration
)
{
//
std::cout << "Test iteration: " << iteration << "\n";
test_absolute_time
();
test_condition_timing_out
();
test_locked_semaphore_getting_unlocked
();
test_usleep
();
test_multiple_semaphores_waiting
();
}
return
0
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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