Tagged Questions

3
votes
4answers
58 views

What are some interesting, free, open-source Dynamic Analysis tools for Java?

I am looking for some interesting dynamic analysers to use and report on for a university assignment. The tools should be: Open-source (so I can learn from them) Free (both as in …
2
votes
4answers
175 views

Anyone using VeraCode for static analysis?

My company is looking at using VeraCode for some independent static analysis of our binaries. Anyone out there using them? I would also be interested to hear from anyone using th …
2
votes
5answers
207 views

Best tool for assisting writing complex SQL-queries?

Hello everyone, I often find myself spending a lot of time figuring out why certain SUM()-aggregates sum up wrongly in SQL-queries. This problem often occurs if I do not take care …
9
votes
5answers
283 views

Tools for finding Shared Mutable data bugs in Java

I have a large legacy system to maintain. The codebase uses threads all over the place and those threads share a lot of mutable data. I know, sounds bad. Anyway, don't answer "rewr …
2
votes
3answers
878 views

What is Dynamic Code Analysis?

What is Dynamic Code Analysis? How is it different from Static Code Analysis (ie, what can it catch that can't be caught in static)? I've heard of bounds checking and memory anal …