matcatc / Test_Parser

parses and displays the output from test logs
http://matcatc.github.com/Test_Parser
GNU General Public License v3.0
1 stars 0 forks source link

rerun auto-expand: hashes #83

Closed matcatc closed 14 years ago

matcatc commented 14 years ago

Currently data is compared as a string, but we might want to use hashes, in an effort to make it more efficient. I've noticed that TestParser_unittest.py lags a little on reruns.

Might want to analyse to where the bottleneck is.

Might want to try comparing the run time (not sure how.)

matcatc commented 14 years ago

By using the time module, I was able to compare the runtimes w/ and w/o hashing. There was no noticeable difference. There's no reason to add it when the only change is more code and there is always the threat of collisions.