Do you think that running set of automatic tests based on valgrind's tool suite makes sense? Did you hear about or see such setup in action? What automatic (free from human intuition) actions could such setup perform?
相关问题
- Dependencies while implementing Mocking in Junit4
- How to unit test a reactive component where ngCont
- Access for global variables JavaScript unit testin
- Googletest Parametrized tests crash
- Is there any means by which I could evaluate the t
相关文章
- How to replace file-access references for a module
- How to mock methods return object with deleted cop
- What is a good way of cleaning up after a unit tes
-
EF6 DbSet
returns null in Moq - Profiling Django with PyCharm
- React testing library: Test attribute / prop
- React/JestJS/Enzyme: How to test for ref function?
- Why doesn't valgrind detect a memory leak in m
This would make sense if you were checking for memory problems / bad code as part of unit testing or final build testing. There may be two approaches:
Maybe these tools could automatically create bug items in your tracker (although it might fill up quickly).
Not seen anything myself, but as a valgrind user, it would be handy. If you create something cool, maybe launch it as an open-source project!
edit after a bit of googling I found http://www.redhat.com/f/summitfiles/presentation/June2/Developer%20Tools/Cox,Malcom_Automated%20Testing.pdf
Which seems to cover automated testing using DejaGNU and Valgrind as I suggested above
Good Luck!