Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Development/iptestadministrator #1740

Merged
merged 24 commits into from
Sep 9, 2024
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
3793120
[Tests/unit] : Do not depend on 'IPTestAdministrator' if not used
msieben Jun 20, 2024
1f58b65
Merge branch 'master' into development/iptestadministrator
msieben Jun 21, 2024
3eb94a9
Merge branch 'master' into development/iptestadministrator
msieben Jun 24, 2024
0674ec8
Merge branch 'master' into development/iptestadministrator
msieben Jun 24, 2024
dd920b9
Merge branch 'master' into development/iptestadministrator
MFransen69 Jun 25, 2024
c9156cb
Merge branch 'master' into development/iptestadministrator
msieben Jul 8, 2024
5e55df6
[Tests/unit/tests] : Cherry pick 'test_iptestmanager' from developmen…
msieben Jul 15, 2024
9579773
[Tests/unit / Tests/unit/tests] : Improve synchronization usage of 'I…
msieben Jul 15, 2024
8bc4c8a
[core/IPCChannel] : cherry-pick from 'development/ipcchannel_dangling…
msieben Jul 16, 2024
22e7e3b
Tests/unit/core] : align tests with '957977381dfa8137f1475131622390eb…
msieben Jul 16, 2024
346fb6e
[Tests/unit] : Improve synchronization with premature signalling
msieben Jul 22, 2024
3696efa
[Tests/unit] : Add test cases to 'Tests/unit/tests/test_iptestmanager…
msieben Jul 22, 2024
7c9a286
[Tests/unit/core] : align tests with '346fb6ec2a0da5058f7a581190e63c7…
msieben Jul 22, 2024
a7ef6b2
Merge branch 'master' into development/iptestadministrator
msieben Jul 24, 2024
3737343
[Tests/unit/core] : amend '7c9a286d1398de9f2b470b02bb58596120f0d8c9'
msieben Jul 25, 2024
9c470c7
[Tests/core/unit] : cherry pick from 'development/messageunit'
msieben Jul 26, 2024
be5e514
[Tests/unit/core] : Use 'IPTestAdministrator' for 'PopMessageShouldRe…
msieben Jul 26, 2024
a9f6728
[Tests/unit/IPTestAdministrator] : Try to prevent to leak shared memo…
msieben Aug 5, 2024
0bab1ba
Merge branch 'master' into development/iptestadministrator
msieben Aug 5, 2024
4c79de7
Revert "[core/IPCChannel] : cherry-pick from 'development/ipcchannel_…
msieben Aug 6, 2024
3505779
[Tests/unit/core] : disable 'test_ipc'
msieben Aug 6, 2024
6b1acbc
[Tests/unit/core] : Move 'test_message_dispatcher' to the approriate …
msieben Aug 7, 2024
51aee79
Merge branch 'master' into development/iptestadministrator
msieben Sep 9, 2024
d4e70f4
[Tests/unit/tests] : tag unused variable in 'IPTestsAdministrator'
msieben Sep 9, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Tests/unit/IPTestAdministrator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ uint32_t IPTestAdministrator::Signal(uint32_t expectedNextHandshakeValue, uint8_
break;
default : result = ::Thunder::Core::ERROR_NONE;
// Atomically replaces the current value by the expected value
bool oldHandshakeValue = _sharedData->handshakeValue.exchange(expectedNextHandshakeValue);
VARIABLE_IS_NOT_USED bool oldHandshakeValue = _sharedData->handshakeValue.exchange(expectedNextHandshakeValue);
}

return result;
Expand Down