User story #160
Lint: Threads
0%
Description
Verify and implement coding standard using Flexelint.
Source code files modified¶
- Source/Core/L0Portability/Threads.h
- Source/Core/L0Portability/OperatingSystem/Linux/ThreadsOS.cpp
- Source/Core/L0Portability/OperatingSystem/Windows/ThreadsOS.h
- Source/Core/L0Portability/OperatingSystem/Windows/ThreadsOS.cpp
- Test/Core/L0Portability/ThreadsTest.h
- Test/Core/L0Portability/ThreadsTest.cpp
- Test/GTest/ThreadsGTest.cpp
Architecture & design review¶
Date of the review: 29/07/2015
Person who did the review: Ivan Herrero
Version of architecture & design document: N/A. As per the original MARTe implementation, this is a support function and does not require formal design in UML.
Result of review: N/A
List of non-conformities: N/A
Code and documentation review¶
Date of the review: 29/07/2015
Person who did the review: Ivan Herrero
Result of review: PASS (MISRA compliant)
List of non-conformities:
Threads::name declares that it returns a C style string (char8*) without specifying who is the responsible for the management of the memory used by this char array (it actually returns a pointer to the char array hosted by an instance of ThreadInformation calling its ThreadName method). Perhaps it should be created a copy of the char array by means of Memory::StringDup or changed the prototype putting the char array as an out parameter of the method.
Unit test review¶
Date of the review: 29/07/2015
Person who did the review: Ivan Herrero
Result of coverage tests review: PASS
Result of functional tests review: FAIL
Result of review: FAIL
List of non-conformities:
In this review, Threads tests fails at:
[ FAILED ] ThreadsGTest.TestPriority
[ FAILED ] ThreadsGTest.TestGetThreadInfoCopy
The reason why these tests fail, is that in Linux a regular user is not allowed to change the priority. This can be solved by either running the tests as the root user (not advisable), or by editing the file /etc/security/limits.conf
and adding the following lines (change aneto to your username):@aneto soft rtprio 100
@aneto hard rtprio 10
History
#1 Updated by Riccardo Vitelli almost 10 years ago
- Target version set to Backlog
#2 Updated by Riccardo Vitelli almost 10 years ago
- Target version changed from Backlog to 0.2
#3 Updated by Riccardo Vitelli almost 10 years ago
- Status changed from New to Code: Impl
#4 Updated by Riccardo Vitelli over 9 years ago
- Assignee set to André Neto
#5 Updated by André Neto over 9 years ago
- Status changed from Code: Impl to Arch: Impl
#6 Updated by André Neto over 9 years ago
- Status changed from Arch: Impl to Code: Impl
#7 Updated by André Neto over 9 years ago
- Assignee deleted (
André Neto)
#8 Updated by Riccardo Vitelli over 9 years ago
- Status changed from Code: Impl to Code: Rev
#9 Updated by Ivan Herrero over 9 years ago
- Assignee set to Ivan Herrero
#10 Updated by Ivan Herrero over 9 years ago
- Description updated (diff)
- Status changed from Code: Rev to Unit: Impl
- Assignee deleted (
Ivan Herrero)
Code review made on revision 1747fe9.
#11 Updated by Riccardo Vitelli over 9 years ago
- Status changed from Unit: Impl to Unit: Rev
#12 Updated by Ivan Herrero over 9 years ago
- Description updated (diff)
Unit test review made on revision 6196fef.
#13 Updated by André Neto over 9 years ago
- Description updated (diff)
#14 Updated by André Neto over 9 years ago
- Description updated (diff)
#15 Updated by André Neto over 9 years ago
- Description updated (diff)
#16 Updated by André Neto over 9 years ago
- Description updated (diff)
#17 Updated by Ivan Herrero over 9 years ago
- Target version changed from 0.2 to Backlog
#18 Updated by André Neto almost 8 years ago
- Status changed from Unit: Rev to Closed
- Target version deleted (
Backlog)
Lint of Threads #160, #161 and #162 is ready for review.