Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | leakfinder.pl: exceptions | Father Chrysostomos | 2012-12-15 | 1 | -3/+8 |
| | |||||
* | leakfinder.pl: More exceptions | Father Chrysostomos | 2012-12-12 | 1 | -0/+2 |
| | |||||
* | leakfinder.pl: Skip push/unshift after { or ( | Father Chrysostomos | 2012-12-08 | 1 | -6/+1 |
| | |||||
* | leakfinder.pl: Fix select skip | Father Chrysostomos | 2012-12-08 | 1 | -1/+1 |
| | | | | | It wasn’t skipping select without parentheses, which was the purpose of that (?:...) group. | ||||
* | leakfinder: More exceptions | Father Chrysostomos | 2012-11-17 | 1 | -1/+29 |
| | |||||
* | leakfinder.pl: More exceptions | Father Chrysostomos | 2012-11-15 | 1 | -6/+14 |
| | |||||
* | leakfinder.pl: Run evals four times | Father Chrysostomos | 2012-11-15 | 1 | -1/+1 |
| | | | | With three times we still get false positives | ||||
* | leakfinder.pl: More exceptions | Father Chrysostomos | 2012-11-15 | 1 | -0/+5 |
| | |||||
* | leakfinder.pl: Duh! | Father Chrysostomos | 2012-11-14 | 1 | -1/+1 |
| | | | | I hadn’t tested this before I committed it. It had a syntax error. | ||||
* | leakfinder.pl: more exceptions | Father Chrysostomos | 2012-11-13 | 1 | -0/+2 |
| | |||||
* | leakfinder.pl: More exceptions | Father Chrysostomos | 2012-11-13 | 1 | -0/+3 |
| | |||||
* | leakfinder.pl: More exceptions | Father Chrysostomos | 2012-11-13 | 1 | -0/+4 |
| | |||||
* | leakfinder.pl: Run code more times | Father Chrysostomos | 2012-11-13 | 1 | -1/+1 |
| | | | | | | Sometimes a piece of code will still create new SVs on the second or even the third iteration, but not after that. That doesn’t count as a leak. | ||||
* | leakfinder.pl: Many more exceptions | Father Chrysostomos | 2012-11-11 | 1 | -1/+55 |
| | |||||
* | leakfinder.pl: Yet mair exceptions | Father Chrysostomos | 2012-11-08 | 1 | -2/+3 |
| | |||||
* | leakfinder.pl: Clean up exceptions | Father Chrysostomos | 2012-11-06 | 1 | -14/+4 |
| | | | | | | | | | Remove two (exit and END) that were from preliminary versions of the script. Skip all lines beginning with push and unshift. Remove leading whitespace when looking up exceptions. | ||||
* | leakfinder.pl: Another exception | Father Chrysostomos | 2012-11-06 | 1 | -0/+1 |
| | |||||
* | leakfinder.pl: Mair exceptions | Father Chrysostomos | 2012-11-04 | 1 | -1/+9 |
| | |||||
* | leakfinder.pl: Show file names | Father Chrysostomos | 2012-11-04 | 1 | -0/+1 |
| | | | | | It can take a *very* long time to run, so give some indication that it is actually doing something. | ||||
* | leakfinder.pl: Use DD for output | Father Chrysostomos | 2012-11-04 | 1 | -4/+6 |
| | | | | | This solves the problem of binary code being dumped into the terminal. | ||||
* | leakfinder.pl | Father Chrysostomos | 2012-11-04 | 1 | -0/+57 |
I wrote this to look for memory leaks. Since it could be useful to re-run it at some future time, I might as well put it somewhere where it will not get lost. It still needs a bit of work. Currently, evaluating chunks of binary code can cause memory leaks. In those cases the binary code is dumped straight to the terminal, which is not helpful. |