forked from roc-streaming/roc-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: Skip metrics_measurements under valgrind
The test requires unreasonably large timeout when running on CI. This commit adds a way to detect if tests are running under valgrind, and uses TEST_SKIP() for the aforementioned test in this case. This commit also add valgrind suppressions file for false positives inside cpputest code.
- Loading branch information
Showing
6 changed files
with
44 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
cpputest_NormalTestTerminator_exitCurrentTest | ||
Memcheck:Param | ||
write(buf) | ||
... | ||
fun:_ZNK20NormalTestTerminator15exitCurrentTestEv | ||
} | ||
{ | ||
cpputest_PlatformSpecificSetJmpImplementation | ||
Memcheck:Addr8 | ||
... | ||
fun:PlatformSpecificSetJmpImplementation | ||
} | ||
{ | ||
cpputest_CommandLineTestRunner_dtor | ||
Memcheck:Free | ||
fun:_ZdlPvm | ||
fun:_ZN21CommandLineTestRunnerD1Ev | ||
} |